/* global React */
/* sections-e.jsx — five conversion sections
1. ProgrammeTimeline — the 12-month journey
2. Testimonials — [TESTIMONIAL PLACEHOLDER] cards
3. BurnoutCheck — 90-second self-assessment
4. WhyPausa — explicit differentiators
5. FAQ — objection handling accordion
*/
const { useState: useSAState } = React;
/* ================================================================
1 · PROGRAMME TIMELINE
================================================================ */
const TL_PHASES = [
{
phase: "Phase 1",
label: "Baseline",
color: "oklch(51% 0.07 105)",
dotBg: "oklch(91% 0.06 88)",
steps: [
{ period: "~3 weeks before", tag: "Baseline", title: "Remote kit", icon: "lab",
img: "pausa/img/baseline-kit.png", imgSlot: true,
imgAlt: "The Pausa Baseline kit — ring, blood panel and more",
desc: "A wearable ring, an at-home clinical blood panel and optional add-ons — all delivered to your door. Sleep, HRV and recovery collected passively over two to three weeks; a focused panel (cardiovascular, metabolic, hormonal and inflammatory markers) posted back in prepaid packaging." },
{ period: "~3 weeks before", tag: "Baseline", title: "Measuring mental clarity and emotional resilience", icon: "doc",
img: "pausa/img/baseline-person.png", imgSlot: false,
imgAlt: "Leader reviewing personalised Pausa baseline results — biomarkers, HRV, sleep and mental clarity",
desc: "Validated questionnaires for stress, burnout and resilience, plus a 15-minute cognitive baseline. One welcome call to set you up. Your facilitator studies everything before you arrive." },
],
},
{
phase: "Phase 2",
label: "Pausa Reset",
color: "var(--moss)",
dotBg: "oklch(90% 0.06 128)",
steps: [
{ period: "Month 1", tag: "Pausa Reset", title: "3 days near Lisbon", icon: "leaf",
desc: "Fully offline. Your facilitator walks you through your Baseline results in person. Expert-facilitated workshops identify your drains and teach the Behaviour Model. Shared challenge and time in nature. You leave with a personalised roadmap of healthy routines — designed for your worst weeks, not your best." },
],
},
{
phase: "Phase 3",
label: "Pausa Circle",
color: "oklch(44% 0.09 175)",
dotBg: "oklch(89% 0.07 160)",
steps: [
{ period: "Months 2–3", tag: "Pausa Circle", title: "Monthly gatherings begin", icon: "habit",
desc: "Monthly 90-min expert-facilitated Circle sessions with your cohort. One focused weekly action built around your Baseline results. Topics: Sleep & recovery, Burnout & stress regulation, Mindfulness, Movement, Nutrition. Peer accountability from leaders under the same pressure." },
{ period: "Day 90", tag: "Recheck", title: "Day-90 recheck", icon: "chart",
desc: "A focused re-test at the end of the Integration phase: HRV, the cognitive battery and a small biomarker subset. A clear before/after — objective evidence that the work is real. Your roadmap is recalibrated for the months ahead." },
{ period: "Months 4–11", tag: "Pausa Circle", title: "Routines deepening", icon: "habit",
desc: "Habits from Integration compound. Monthly Circle sessions shift from building routines to refining them under real pressure. Offline shared experiences continue — time in nature, shared challenge, structured reflection." },
{ period: "Month 12", tag: "Report", title: "Full annual re-assessment", icon: "doc",
desc: "The complete baseline repeated. A full before/after across four dimensions of wellbeing — closing the loop and showing exactly how far you've come in twelve months." },
],
},
];
function TlIcon({ k }) {
const paths = {
lab: <>>,
leaf: <>>,
habit: <>>,
chart: <>>,
doc: <>>,
};
return (
);
}
function ProgrammeTimeline() {
return (
The 12-month journey
What actually happens, month by month.
No ambiguity. Here is exactly what you and your team do — and when. Total active time: approx. 8–10 days across the year.
);
}
/* ================================================================
2 · TESTIMONIALS [TESTIMONIAL PLACEHOLDER — replace with real quotes]
================================================================ */
const TESTIMONIALS = [
{
id: "t-igor-pavlov",
img: "pausa/img/testimonial-igor-pavlov.jpg",
quote: "Three days without a phone, in nature, with people under the same kind of pressure. By day two something had shifted — I wasn't performing any more. The breathwork sessions were the part I least expected to use. I still use them. Every week.",
name: "Igor Pavlov",
role: "VP of Operations · Evy | ex-BlaBlaCar",
result: "Pausa Reset — founding cohort",
linkedin: "https://www.linkedin.com/in/mrigorpavlov/",
},
{
id: "t-felix-baumann",
img: "pausa/img/testimonial-felix-baumann.jpg",
quote: "I came in running on empty and not quite aware of it. The behaviour model was genuinely mind-blowing — not because it was complicated, but because it was so obvious once you saw it.",
name: "Felix Baumann",
role: "CEO & CTO · Wohnen im Alter",
result: "Pausa Reset — founding cohort",
linkedin: "https://www.linkedin.com/in/felix-baumann-91649773/",
},
{
id: "t-igor-myrgorodskyi",
img: "pausa/img/testimonial-igor-myrgorodskyi.jpg",
quote: "I came in sceptical. I left with clarity on what to do next — not vaguely, but specifically. Being in nature, offline, made space for signals I'd been ignoring for months.",
name: "Igor Myrgorodskyi",
role: "VP Business Operations · adjoe",
result: "Pausa Reset — founding cohort",
linkedin: "https://www.linkedin.com/in/igor-myrgorodskyi-80201077/",
},
];
function LinkedInIcon() {
return (
);
}
function TestimonialCard({ t, i }) {
return (
{t.name}{t.role}
"{t.quote}"
{t.result}
);
}
function Testimonials() {
return (
From Pausa Reset
What leaders say after three days in nature.
{TESTIMONIALS.map((t, i) => (
))}
Pausa Reset founding cohort. All participants are now in Pausa Circle.
);
}
/* ================================================================
3 · BURNOUT SELF-CHECK
================================================================ */
const SA_QS = [
{ id: "q1", q: "How rested do you feel when you wake up?", lo: "Exhausted", hi: "Fully rested" },
{ id: "q2", q: "How often can you focus deeply for 2+ hours without interruption?", lo: "Rarely", hi: "Every day" },
{ id: "q3", q: "How is your physical energy by end of day?", lo: "Completely drained", hi: "Still energised" },
{ id: "q4", q: "How connected do you feel to what energises you in your work?", lo: "Disconnected", hi: "Fully connected" },
{ id: "q5", q: "How much of your time goes to strategic thinking vs. firefighting?", lo: "Almost none", hi: "Most of it" },
];
const SA_LEVELS = [
{ min: 21, label: "Low risk", tone: "good", desc: "Your baseline looks healthy. A Pausa check-up would confirm that with hard data — and build margin in before it shifts.", cta: "Book a call — see what your biomarkers say" },
{ min: 15, label: "Moderate risk", tone: "watch", desc: "Some depletion signals. This is the ideal window to act — before it compounds into something harder to reverse.", cta: "Book a call — this is exactly when Pausa works best" },
{ min: 9, label: "High risk", tone: "act", desc: "Clear signs of sustained depletion. Without an intervention this typically deepens over the next 6 months — it rarely self-corrects.", cta: "Book a call — we've helped leaders at this stage" },
{ min: 0, label: "Critical", tone: "crit", desc: "Burnout-level signals. A 30-minute conversation costs nothing and could change your next 12 months. Please don't wait.", cta: "Book a call now — this needs attention" },
];
function BurnoutCheck() {
const [ans, setAns] = useSAState({});
const [done, setDone] = useSAState(false);
const answered = Object.keys(ans).length;
const allDone = answered === SA_QS.length;
const score = allDone ? Object.values(ans).reduce((a, b) => a + b, 0) : 0;
const level = SA_LEVELS.find((l) => score >= l.min) || SA_LEVELS[SA_LEVELS.length - 1];
return (
90-second load check
Where are you right now?
Five questions. No email required. An honest read on your burnout risk today.
{!done ? (
<>
{SA_QS.map((q) => (
{q.q}
{q.lo}
{[1,2,3,4,5].map((v) => (
))}
{q.hi}
))}
{answered} of {SA_QS.length} answered
>
) : (
{level.label}{score} / 25
{level.desc}
)}
);
}
/* ================================================================
4 · WHY PAUSA — explicit differentiators
================================================================ */
const WHY_ITEMS = [
{
id: "risk",
num: "01",
title: "A performance risk — not a wellness perk",
body: "Pausa frames leadership strain as what it is: a risk to judgment, decision quality, team stability, and retention. Not a soft benefit. Not an HR checkbox. A performance protection system for the people your organisation depends on most.",
},
{
id: "teams",
num: "02",
title: "Built for teams, not just individuals",
body: "Most executive health programmes treat leaders in isolation. Pausa works with the team as a system — mapping how load, habits, and recovery operate across the group, and where collective risk is highest.",
},
{
id: "stack",
num: "03",
title: "The full stack: assess, reset, integrate",
body: "Competitors offer one piece — a offsite, a coach, or an app. Pausa combines all four: a full assessment, structured behaviour change, an immersive offsite near Lisbon, and 12 months of integration. Each element makes the others stick.",
},
{
id: "offsite",
num: "04",
title: "An offsite designed to interrupt load",
body: "Three days in nature, 30 minutes from Lisbon. Not a conference. Not a spa weekend. A carefully structured environment with shared challenge, time outdoors, and serious work together — where the nervous system can downshift and the year ahead gets designed, not just discussed.",
},
{
id: "community",
num: "05",
title: "Community that goes beyond a call",
body: "Pausa's peer community includes structured online touchpoints and offline shared experiences — outdoor challenges, trail runs, time in nature. Not a mastermind. Not a 'tribe.' A serious peer group with shared context, shared data, and shared pressure.",
},
];
function WhyPausa() {
return (
Why Pausa
What makes this different from everything else.
{WHY_ITEMS.map((item, i) => (
{item.num}
{item.title}
{item.body}
))}
);
}
/* ================================================================
5 · FAQ — objection handling accordion
================================================================ */
const FAQ_ITEMS = [
{
q: "What does the Baseline phase involve?",
a: "Before the retreat, each leader receives a home kit: a wearable ring worn for ~2 weeks for sleep, HRV and recovery data; an at-home finger-prick blood panel covering cardiovascular, metabolic, stress-hormone and inflammatory markers, processed by our accredited clinical partners; and optional add-ons. Two short online steps follow — validated questionnaires for stress, burnout and resilience, and a 15-minute cognitive baseline covering reaction time, working memory and focus. A single welcome call is the only live commitment. Your facilitator studies the full picture before you arrive at the Reset, so the days together start from insight rather than from scratch.",
},
{
q: "Is this a medical service?",
a: "No. Pausa is a performance wellbeing programme, not a medical service. Our biomarker testing is run by an accredited clinical laboratory partner — results are reviewed by a clinician who flags anything requiring medical attention and refers you if needed. Pausa is not a substitute for medical care.",
},
{
q: "Is this therapy?",
a: "No. Pausa is not therapy and it's not coaching. It's a structured performance system: objective data, behaviour design, and a peer community. We work with how your body and mind are actually functioning under pressure — not with your personal history or psychology. For leaders who want therapeutic support, our partner Pillow can help.",
},
{
q: "How much time does it take?",
a: "Approximately 8–10 days of active time across the year. This breaks down as: 3 days for the offsite in month 1; roughly 90 minutes per month for Circle sessions; and one focused action per week (most take under 15 minutes). The programme is designed around your real schedule, not an idealised one.",
},
{
q: "What happens with our data?",
a: "Your health data is yours. Biomarker results are encrypted end-to-end, hosted on health-data-compliant servers in Europe, and access-controlled at all times. Your organisation never sees individual results — only anonymised team-level aggregates, if you choose to share them. We are fully GDPR compliant and ISO 27001 aligned.",
},
{
q: "Why not just coaching or gym benefits?",
a: "Coaching works on behaviour and mindset but has no physiological data — a coach can't see your cortisol levels or sleep debt. Gym benefits address physical fitness but not leadership load, decision quality, or burnout risk. Pausa combines both layers: objective data on how your body is coping, and practical tools for changing how you operate. Neither alone does what both together do.",
},
{
q: "Is this just another offsite?",
a: "No. The offsite is one part of a 12-month programme — not the whole thing. One-off offsites create temporary inspiration that fades within weeks when real pressure returns. Pausa's model is: diagnose first, reset in person, then integrate changes over 12 months with data, community, and weekly actions. The offsite interrupts chronic load and builds trust — it doesn't try to do everything.",
},
];
function FAQ() {
const [open, setOpen] = React.useState(null);
return (