/* ============================================================
   EASEOUT.CH — style.css v4.0 — Complete Rebuild
   ============================================================ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #08090e;
  color: #e6edf3;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:         #08090e;
  --surface-1:  #0d0f17;
  --surface-2:  #13161f;
  --surface-3:  #1a1e2b;
  --border:     rgba(255,255,255,0.08);
  --border-h:   rgba(255,255,255,0.14);
  --blue:       #2f80ed;
  --blue-dim:   rgba(47,128,237,0.15);
  --blue-glow:  rgba(47,128,237,0.35);
  --cyan:       #56ccf2;
  --green:      #3fb950;
  --red-ch:     #DA291C;
  --text-1:     #f0f6fc;
  --text-2:     #b0bec5;
  --text-3:     #6e7b8b;
  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       16px;
  --r-xl:       20px;
  --r-2xl:      28px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --wrap:       1400px;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 60px;
}
section { position: relative; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text-1);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: #3d8ef0; transform: translateY(-1px); box-shadow: 0 8px 24px -4px rgba(47,128,237,0.5); }
.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-h);
}
.btn-outline:hover { background: var(--surface-2); color: var(--text-1); border-color: var(--border-h); }
.btn-lg { height: 52px; padding: 0 28px; font-size: 15px; }

/* ─── SCROLL PROGRESS ───────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ─── HEADER ────────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(8,9,14,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  height: 28px;
  padding: 0 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
}
.lang-btn:hover:not(.active) { color: var(--text-1); }

/* Nav trust badge */
.nav-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(63,185,80,0.07);
  border: 1px solid rgba(63,185,80,0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
}
.nav-badge i { font-size: 14px; flex-shrink: 0; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 0 0;
  position: relative;
  overflow: visible;
}

/* Background gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(47,128,237,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(86,204,242,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  padding: 0 40px;
}

/* Swiss badge */
.swiss-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(218,41,28,0.08);
  border: 1px solid rgba(218,41,28,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
}

/* Persona toggle */
.persona-toggle {
  position: relative;
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 0;
  margin-bottom: 40px;
}
.ptoggle-btn {
  position: relative;
  z-index: 1;
  height: 36px;
  padding: 0 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.25s;
}
.ptoggle-btn.active { color: var(--text-1); }
.ptoggle-track {
  position: absolute;
  top: 4px; left: 4px;
  height: 36px;
  background: var(--surface-3);
  border: 1px solid var(--border-h);
  border-radius: 100px;
  transition: transform 0.3s var(--ease), width 0.3s var(--ease);
  z-index: 0;
}

/* Hero headline */
.hero-headline {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text-1);
  margin-bottom: 24px;
}
.hero-headline .grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero-copy { animation: fadeUp 0.6s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 64px;
}

/* Hero mockup */
.mockup-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  perspective: 1600px;
}
.mockup-outer {
  border-radius: var(--r-2xl);
  box-shadow:
    0 0 0 1px rgba(47,128,237,0.4),
    0 0 0 4px rgba(47,128,237,0.08),
    0 40px 80px -20px rgba(0,0,0,0.9),
    0 0 160px -30px rgba(47,128,237,0.3);
  transform: rotateX(4deg);
  transform-origin: center bottom;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease);
}
.mockup-outer:hover {
  transform: rotateX(0deg);
  box-shadow:
    0 0 0 1px rgba(47,128,237,0.55),
    0 0 0 4px rgba(47,128,237,0.12),
    0 60px 120px -30px rgba(0,0,0,0.95),
    0 0 220px -30px rgba(47,128,237,0.35);
}
.mockup-clip {
  border-radius: var(--r-2xl);
  overflow: hidden;
  line-height: 0;
}
.mockup-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* ─── TRUST STRIP ───────────────────────────────────────────── */
.trust-strip {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.trust-item i { font-size: 16px; }

/* ─── STATS ─────────────────────────────────────────────────── */
.stats { padding: 80px 0; }
.stats-eyebrow { text-align: center; margin-bottom: 48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.25s;
}
.stat-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.stat-card:hover::before { opacity: 1; }
.stat-num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .unit {
  font-size: 24px;
  color: var(--blue);
  font-weight: 700;
}
.stat-lbl {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 10px;
  line-height: 1.4;
}
.stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--surface-3);
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 0 2px 2px 0;
}

/* ─── FEATURES ──────────────────────────────────── */
.features { padding: 80px 0; }
.features-header { margin-bottom: 64px; }

/* Bento grid: 3 columns, 2 rows
   [Card1 large] [Card2]
   [Card1 large] [Card3][Card4]
*/
.feat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.feat-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-2xl);
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(47,128,237,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feat-card:hover {
  border-color: rgba(47,128,237,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
}
.feat-card:hover::before { opacity: 1; }

/* Card 1: spans left column, both rows */
.feat-card.hero-card {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(145deg, var(--surface-1), rgba(47,128,237,0.04));
  gap: 16px;
}
/* Card 2: top right */
.feat-card.cal-card {
  grid-column: 2 / 4;
  grid-row: 1;
}
/* Cards 3+4: bottom right */
.feat-card.sm-card {
  grid-column: auto;
  grid-row: 2;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 4px;
}
.feat-num { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 0.1em; }
.feat-title { font-size: 18px; font-weight: 700; color: var(--text-1); line-height: 1.3; }
.feat-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.feat-metric {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.feat-metric-val { font-size: 32px; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.feat-metric-lbl { font-size: 13px; color: var(--text-3); }

/* Feature visual (request list) */
.req-list { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.req-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
}
.req-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.req-name { font-size: 13px; font-weight: 500; color: var(--text-1); flex: 1; min-width: 0; }
.req-type { font-size: 11px; color: var(--text-3); }
.req-badge {
  font-size: 10px; font-weight: 600; padding: 2px 8px;
  border-radius: 100px; flex-shrink: 0;
}
.badge-green { background: rgba(63,185,80,0.15); color: var(--green); }
.badge-blue  { background: var(--blue-dim); color: var(--blue); }
.badge-amber { background: rgba(210,153,34,0.15); color: #d2993a; }

/* Mini calendar */
.cal-mini { margin-top: 16px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13px; color: var(--text-2); }
.cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.cal-day-lbl { text-align: center; font-size: 10px; font-weight: 600; color: var(--text-3); padding-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-cell { height: 32px; border-radius: 6px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; }
.cal-cell.off { background: var(--blue-dim); color: var(--blue); }
.cal-cell.sick { background: rgba(218,41,28,0.15); color: #ef5350; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { padding: 120px 0; background: var(--surface-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-header .section-sub { margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.testi-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.testi-card.featured {
  border-color: rgba(47,128,237,0.35);
  background: linear-gradient(145deg, var(--bg), rgba(47,128,237,0.04));
  box-shadow: 0 0 0 1px rgba(47,128,237,0.12), 0 20px 40px -12px rgba(0,0,0,0.4);
}
.testi-stars { color: #f5c518; font-size: 15px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; line-height: 1.7; color: var(--text-2); font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--text-1); }
.testi-role { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ─── COMPLIANCE ────────────────────────────────────────────── */
.compliance { padding: 120px 0; }
.compliance-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start; }
.compliance-text .section-sub { margin: 0; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.comp-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.25s;
}
.comp-card:hover { border-color: var(--border-h); }
.comp-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--blue-dim); display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px; flex-shrink: 0;
}
.comp-title { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.comp-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; }

/* ─── ROI CALCULATOR ────────────────────────────────────────── */
.roi { padding: 120px 0; background: var(--surface-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.roi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.roi-controls { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.slider-group { display: flex; flex-direction: column; gap: 10px; }
.slider-meta { display: flex; justify-content: space-between; align-items: center; }
.slider-lbl { font-size: 14px; color: var(--text-2); }
.slider-val { font-size: 14px; font-weight: 600; color: var(--text-1); }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: var(--surface-3); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(47,128,237,0.25);
  cursor: pointer; transition: box-shadow 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(47,128,237,0.3); }
.roi-note { font-size: 12px; color: var(--text-3); line-height: 1.5; }

.roi-output {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px;
  position: sticky;
  top: 88px;
}
.roi-output-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 28px; }
.roi-stats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.roi-stat-lbl { font-size: 13px; color: var(--text-2); margin-bottom: 4px; }
.roi-stat-val { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--text-1); display: flex; align-items: baseline; gap: 6px; }
.roi-stat-unit { font-size: 18px; color: var(--text-3); font-weight: 500; }
.roi-stat-val.accent { color: var(--green); }
.roi-divider { height: 1px; background: var(--border); }
.roi-cta { width: 100%; justify-content: center; margin-top: 24px; }

/* ─── INTEGRATION ───────────────────────────────────────────── */
.integration { padding: 80px 0; }
.int-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.int-checks { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.int-check {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text-2);
}
.int-check:last-child { border-bottom: none; }
.int-check i { color: var(--green); font-size: 20px; flex-shrink: 0; }
.int-visual {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.int-app {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px 24px;
  width: 100%;
  font-size: 15px; font-weight: 600; color: var(--text-1);
}
.int-app-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.int-connector {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 0;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-3);
}
.int-line { width: 1px; height: 24px; background: linear-gradient(to bottom, var(--border), var(--blue-glow), var(--border)); }
.int-link-btn { margin-top: 32px; }

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.final-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(47,128,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 28px;
  font-size: 14px; color: var(--text-2);
  position: relative; z-index: 1;
}
.cta-avatars { display: flex; }
.cta-av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-right: -8px; flex-shrink: 0;
}
.cta-avatars .cta-av:last-child { margin-right: 0; }
.cta-heading {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-sub {
  font-size: 17px; color: var(--text-2);
  max-width: 480px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note { margin-top: 20px; font-size: 12px; color: var(--text-3); position: relative; z-index: 1; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-left { display: flex; flex-direction: column; gap: 10px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text-1); }
.footer-swiss { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-3); }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-2); }

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */

/* ── 1200px: Slightly narrower screens ── */
@media (max-width: 1200px) {
  .wrap { padding: 0 48px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card.span2 { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .roi-layout { gap: 60px; }
  .int-layout { gap: 60px; }
}
@media (max-width: 1024px) {
  .wrap { padding: 0 40px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-card.hero-card { grid-column: 1 / 3; grid-row: auto; }
  .feat-card.cal-card { grid-column: 1 / 3; grid-row: auto; }
  .feat-card.sm-card { grid-column: auto; grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .compliance-layout { grid-template-columns: 1fr; gap: 48px; }
  .roi-layout { grid-template-columns: 1fr; gap: 48px; }
  .roi-output { position: static; }
  .int-layout { grid-template-columns: 1fr; gap: 48px; }
  /* Video & Workflow */
  .video-wrapper { max-width: 100%; }
  .workflow-steps { max-width: 100%; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .hero { padding: 100px 0 0; min-height: auto; }
  .hero-headline { font-size: clamp(32px, 9vw, 52px); line-height: 1.05; }
  .hero-sub { font-size: 16px; max-width: 100%; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-note { font-size: 12px; margin-bottom: 24px; }

  /* Absence chips */
  .absence-chips { margin-top: 1.5rem; margin-bottom: 2rem; }
  .absence-chips-row { gap: 0.4rem; }
  .absence-chip { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .nav-badge { display: none; }
  .btn-primary { font-size: 13px; height: 38px; padding: 0 14px; }

  .swiss-badge { font-size: 12px; }
  .persona-toggle { max-width: 100%; }
  .ptoggle-btn { flex: 1; text-align: center; font-size: 12px; padding: 0 10px; }

  .trust-inner { flex-direction: column; gap: 12px; text-align: center; }
  .trust-items { justify-content: center; gap: 14px; flex-wrap: wrap; }

  /* Stats — 2 columns, card-based */
  .stats { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 20px 16px 24px; border-radius: var(--r-lg); }
  .stat-num { font-size: 36px; }
  .stat-num .unit { font-size: 16px; }
  .stat-lbl { font-size: 11px; margin-top: 6px; }

  .features { padding: 64px 0; }
  .features-header { margin-bottom: 36px; }
  .feat-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat-card.hero-card,
  .feat-card.cal-card,
  .feat-card.sm-card { grid-column: auto; grid-row: auto; }
  .cal-wrap { grid-template-columns: 1fr; gap: 12px; }

  /* Video */
  .video-section { padding: 48px 0; }
  .video-wrapper { max-width: 100%; }

  /* Workflow */
  .workflow-section { padding: 48px 0; }
  .workflow-header { margin-bottom: 2rem; }
  .workflow-steps { max-width: 100%; }
  .workflow-step {
    grid-template-columns: 36px 44px 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .wf-num { font-size: 1.6rem; }
  .wf-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 12px; }
  .wf-title { font-size: 1rem; }
  .wf-desc { font-size: 0.82rem; }

  .testimonials { padding: 64px 0; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 28px 22px; }

  .compliance { padding: 64px 0; }
  .compliance-layout { grid-template-columns: 1fr; gap: 36px; }
  .comp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .comp-card { padding: 16px 14px; }
  .comp-icon { width: 32px; height: 32px; font-size: 16px; }

  .roi { padding: 64px 0; }
  .roi-layout { grid-template-columns: 1fr; gap: 36px; }
  .roi-output { position: static; padding: 24px 22px; }
  .roi-stat-val { font-size: 30px; }
  .roi-stat-unit { font-size: 15px; }

  .integration { padding: 64px 0; }
  .int-layout { grid-template-columns: 1fr; gap: 36px; }
  .int-visual { max-width: 100%; }
  .int-app { padding: 14px 18px; }

  .final-cta { padding: 72px 0; }
  .cta-heading { font-size: clamp(28px, 8vw, 44px); }
  .cta-sub { font-size: 16px; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-btns .btn { justify-content: center; }
  .cta-social-proof { flex-wrap: wrap; justify-content: center; gap: 8px; }

  .section-heading { font-size: clamp(26px, 7vw, 38px); }
  .section-sub { font-size: 15px; max-width: 100%; }
  .eyebrow { font-size: 10px; }

  footer { padding: 40px 0; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-right { align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 14px; }

  .btn-lg { height: 48px; padding: 0 20px; font-size: 14px; }
  .mockup-outer { transform: none; }
}

/* ── 480px: Small mobile ── */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero-inner { padding: 0 16px; }
  .hero { padding: 80px 0 0; }
  .hero-headline { font-size: clamp(26px, 9vw, 38px); }
  .hero-sub { font-size: 15px; }
  .swiss-badge { font-size: 11px; padding: 5px 12px; }

  /* Stats — single column on tiny screens */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card { padding: 16px 14px 20px; }
  .stat-num { font-size: 30px; }
  .stat-num .unit { font-size: 14px; }
  .stat-lbl { font-size: 10px; margin-top: 4px; }

  /* Absence chips: wrap tightly */
  .absence-chip { font-size: 0.68rem; padding: 0.25rem 0.6rem; }
  .absence-chip-label { font-size: 0.65rem; }

  /* Workflow: compact */
  .workflow-step {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.75rem;
    padding: 1rem;
  }
  .wf-num { font-size: 1.4rem; }
  .wf-icon { width: 36px; height: 36px; font-size: 1rem; }

  .comp-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 24px 18px; }
  .testi-quote { font-size: 14px; }
  .feat-card { padding: 24px 18px; }
  .feat-title { font-size: 16px; }
  .roi-output { padding: 20px 16px; }
  .roi-stat-val { font-size: 26px; }
  .mockup-outer { border-radius: 12px; }
  .mockup-clip { border-radius: 12px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .cta-heading { font-size: clamp(24px, 9vw, 36px); }
}

/* ─── VIDEO DEMO SECTION ────────────────────────────────────── */
.video-section {
  padding: 5rem 0;
  background: var(--surface-2);
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.yt-facade {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
  aspect-ratio: 16/9;
}

.yt-facade:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 96px rgba(0,0,0,0.6);
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.yt-facade:hover .yt-thumb {
  opacity: 0.7;
}

.yt-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.yt-facade:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.yt-play-btn svg {
  width: 80px;
  height: auto;
}

.yt-play-bg {
  fill: #ff0000;
  opacity: 0.95;
}

.yt-play-arrow {
  fill: #fff;
}

.yt-gdpr-note {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  padding: 0 1rem;
  pointer-events: none;
}

.yt-frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.yt-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .video-section { padding: 4rem 0; }
  .yt-play-btn svg { width: 60px; }
}

/* ─── ABSENCE TYPE CHIPS ──────────────────────────────────── */
.absence-chips {
  margin-top: 2rem;
  text-align: center;
}
.absence-chip-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.absence-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.absence-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid transparent;
}
.chip-vacation  { background: rgba(59,130,246,0.12); color:#60a5fa; border-color:rgba(59,130,246,0.25); }
.chip-sick      { background: rgba(239,68,68,0.12);  color:#f87171; border-color:rgba(239,68,68,0.25); }
.chip-comp      { background: rgba(168,85,247,0.12); color:#c084fc; border-color:rgba(168,85,247,0.25); }
.chip-training  { background: rgba(34,197,94,0.12);  color:#4ade80; border-color:rgba(34,197,94,0.25); }
.chip-holiday   { background: rgba(251,191,36,0.12); color:#fbbf24; border-color:rgba(251,191,36,0.25); }

/* ─── WORKFLOW SECTION ────────────────────────────────────── */
.workflow-section {
  padding: 5rem 0;
  background: var(--bg);
}
.workflow-header {
  text-align: center;
  margin-bottom: 4rem;
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.workflow-step {
  display: grid;
  grid-template-columns: 56px 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.workflow-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.wf-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}
.wf-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #60a5fa;
  flex-shrink: 0;
}
.wf-icon-notify {
  background: rgba(168,85,247,0.15);
  color: #c084fc;
}
.wf-icon-approve {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}
.wf-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 0.5rem;
}
.wf-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.wf-types {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.wf-type {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.wf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  background: rgba(47,128,237,0.12);
  border: 1px solid rgba(47,128,237,0.25);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #60a5fa;
}
.wf-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.wf-action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}
.wf-action.approve {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.wf-action.decline {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}
.workflow-arrow {
  font-size: 1.5rem;
  color: var(--border);
  padding: 0.5rem 0;
  text-align: center;
  width: 100%;
}
.workflow-cta {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .workflow-step {
    grid-template-columns: 40px 48px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .wf-num { font-size: 1.8rem; }
  .wf-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}
