/* ============================================================
   transparenzregisterportal.ch — fresh & modern light theme
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #FAFAFC;
  --bg-soft:   #F4F4F9;
  --bg-card:   #FFFFFF;
  --line:      #E8E8F0;
  --line-2:    #EFEFF5;

  /* Text */
  --ink:       #0E0F2C;
  --ink-soft:  #2E3050;
  --muted:     #6B6E8A;

  /* Brand — fresh violet */
  --accent:    #6C5CE7;
  --accent-2:  #8B5CF6;
  --accent-3:  #C026D3;
  --accent-soft: #EFEAFE;

  /* Gradient */
  --grad: linear-gradient(135deg, #6C5CE7 0%, #A855F7 50%, #EC4899 100%);
  --grad-soft: linear-gradient(135deg, rgba(108,92,231,.08), rgba(236,72,153,.05));

  /* Shape */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14,15,44,.04), 0 2px 6px rgba(14,15,44,.04);
  --shadow-md: 0 6px 24px rgba(14,15,44,.06), 0 2px 6px rgba(14,15,44,.04);
  --shadow-lg: 0 24px 60px rgba(108,92,231,.12), 0 6px 16px rgba(14,15,44,.05);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
svg { display: inline-block; width: 1em; height: 1em; max-width: 100%; flex-shrink: 0; }
svg:not([fill]) { fill: currentColor; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0 0 0.55em;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 4.4vw + 0.8rem, 4.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 1.6vw + 1rem, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
p  { margin: 0 0 1em; }
.muted { color: var(--muted); }
.link { color: var(--accent); font-weight: 500; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 18px;
}
.grad {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* prevent gradient clipping from cropping italic/curved glyphs (e.g. last 'r') */
  padding-right: 0.06em;
  margin-right: -0.06em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Pill ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(108,92,231,.08);
  color: var(--accent);
  border: 1px solid rgba(108,92,231,.15);
  border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  margin-bottom: 32px;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(108,92,231,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108,92,231,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(108,92,231,0); }
  100% { box-shadow: 0 0 0 0 rgba(108,92,231,0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .94rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #1A1B3E; box-shadow: 0 10px 26px rgba(14,15,44,.18); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-card); border-color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--accent-soft); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,252,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav { display: flex; align-items: center; gap: 24px; padding: 16px 24px; }
.nav__menu { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav__menu a {
  font-size: .92rem; color: var(--ink-soft); font-weight: 500;
  transition: color .2s;
}
.nav__menu a:hover { color: var(--accent); }
.nav__cta { display: flex; gap: 8px; }
.nav__cta-mobile { display: none; }

/* ---------- Logo with extending underline ---------- */
.logo {
  display: inline-flex; flex-direction: column;
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  user-select: none;
  position: relative;
}
.logo__text { display: inline-block; }
.logo__suffix { color: var(--muted); font-weight: 500; margin-left: 1px; }
.logo__underline {
  position: relative;
  display: block;
  height: 2.5px; width: 18px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 4px;
  transition: width .55s cubic-bezier(.2,.8,.2,1), background .3s;
}
.logo:hover .logo__underline { width: 60px; }
.logo.is-extended .logo__underline {
  width: 110%;
  background: var(--grad);
  transition: width .8s cubic-bezier(.2,.8,.2,1), background .3s;
}

.logo--footer { color: #fff; }
.logo--footer .logo__suffix { color: rgba(255,255,255,.55); }

/* ---------- Burger ---------- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 8px;
  transition: background .2s;
}
.nav__burger:hover { background: var(--bg-soft); }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(108,92,231,.16), transparent 70%),
    radial-gradient(540px 320px at 10% 30%, rgba(236,72,153,.10), transparent 70%),
    radial-gradient(800px 500px at 50% 100%, rgba(168,85,247,.08), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; }
.hero__title { margin: 0 auto 28px; max-width: 16ch; }
.hero__lede {
  margin: 0 auto 36px;
  max-width: 60ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.hero__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__pills {
  display: flex; gap: 16px 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
  font-size: .9rem; color: var(--muted);
}
.hero__pills li { display: inline-flex; align-items: center; gap: 6px; }
.hero__pills svg { width: 16px; height: 16px; fill: var(--accent); }

/* Hero panel */
.panel {
  margin: 0 auto; max-width: 920px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
}
.panel__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.panel__chrome > span { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.panel__chrome > span:nth-child(1) { background: #FF6058; }
.panel__chrome > span:nth-child(2) { background: #FFC02E; }
.panel__chrome > span:nth-child(3) { background: #28C942; }
.panel__chrome em {
  margin-left: auto; font-style: normal;
  font-family: ui-monospace, "SF Mono", monospace; font-size: .78rem;
}
.panel__body { padding: 26px; }
.panel__stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.panel__stats > div { text-align: center; }
.panel__stat { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.panel__stats small { color: var(--muted); font-size: .82rem; }

.panel__rows { display: flex; flex-direction: column; gap: 10px; }
.panel__row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: #fff;
  transition: all .3s;
}
.panel__row > div { flex: 1; }
.panel__row strong { display: block; font-size: .95rem; }
.panel__row small { color: var(--muted); font-size: .82rem; }
.panel__row.is-active { border-color: var(--accent); background: var(--accent-soft); }

.tag {
  font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
}
.tag--ok { background: #DEFCEC; color: #047857; }
.tag--pending { background: var(--accent-soft); color: var(--accent); }

/* ---------- Why-Section (Hero) ---------- */
.why__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 0 8px;
}
.why__head .eyebrow { margin-bottom: 14px; }
.why__head h2 {
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  white-space: nowrap;
}
.why__head p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 980px) {
  .why__head h2 { white-space: normal; font-size: clamp(1.5rem, 4.5vw, 2rem); }
}
.why {
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.why__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .3s;
}
/* Decorative gradient blob behind icon */
.why__card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--grad);
  opacity: 0;
  filter: blur(40px);
  z-index: -1;
  transition: opacity .5s;
}
/* Gradient bottom border (reveals on hover) */
.why__card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.why__card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(108,92,231,.18), 0 8px 18px rgba(14,15,44,.06);
}
.why__card:hover::before { opacity: .14; }
.why__card:hover::after { transform: scaleX(1); }
.why__card:hover .why__icon { transform: scale(1.05) rotate(-3deg); }
.why__card:hover .why__icon::before { opacity: 1; }

.why__num {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 22px;
}
.why__icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.why__icon::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 16px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}
.why__icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  position: relative;
  z-index: 1;
  transition: color .4s;
}
.why__card:hover .why__icon { color: #fff; }

.why h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.why p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}
.why p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 960px) {
  .why { grid-template-columns: 1fr; gap: 14px; }
  .why__card { padding: 28px 24px 24px; }
}

/* ---------- Family cloud ---------- */
.cloud { padding: 40px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.cloud__lead {
  text-align: center; color: var(--muted);
  font-size: .8rem; margin-bottom: 18px;
  letter-spacing: .14em; text-transform: uppercase;
}
.cloud__list { display: flex; flex-wrap: wrap; gap: 24px 48px; justify-content: center; align-items: center; }
.cloud__list li {
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink-soft); opacity: .45;
  transition: opacity .3s, color .3s;
}
.cloud__list li:hover { opacity: 1; }
.cloud__list a {
  color: inherit;
  transition: color .25s;
}
.cloud__list li:hover a { color: var(--accent); }
.cloud__list li.current { opacity: 1; color: var(--accent); }
.cloud__list li.current::after {
  content: ""; display: block; height: 2px; width: 100%;
  background: var(--grad); margin-top: 4px; border-radius: 2px;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--soft { background: var(--bg-soft); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__head h2 { margin-bottom: 16px; }
.section__lead { color: var(--muted); font-size: 1.05rem; }

.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }

/* ---------- Facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto; }
.fact {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  transition: all .3s;
}
.fact:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.fact__num {
  display: block;
  font-size: 1.9rem; font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.fact__label { font-weight: 600; margin: 0 0 6px; font-size: .95rem; }
.fact__text { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature__icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.steps--four {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  gap: 28px;
}
.step {
  text-align: center;
  padding: 8px;
}
.step__num {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  margin: 0 auto 20px;
  font-size: 1.5rem; font-weight: 800;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(108,92,231,.3);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); margin: 0; font-size: .94rem; line-height: 1.55; }
.step p strong { color: var(--ink); font-weight: 600; }

.ablauf__cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  max-width: 1000px; margin: 56px auto 0;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.ablauf__cta > div { display: flex; flex-direction: column; gap: 2px; }
.ablauf__cta strong { font-size: 1rem; color: var(--ink); }
.ablauf__cta span { color: var(--muted); font-size: .92rem; }

/* ---------- Audiences ---------- */
.audiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audiences--two { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; gap: 24px; }
.audience {
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  transition: all .35s;
  display: flex; flex-direction: column;
}
.audience:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.audience__list {
  display: flex; flex-direction: column; gap: 8px;
  margin: 4px 0 22px;
}
.audience__list li {
  position: relative; padding-left: 24px;
  color: var(--ink-soft); font-size: .94rem;
  line-height: 1.5;
}
.audience__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.audience__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
}
.audience__icon::before {
  content: ""; width: 26px; height: 26px;
  background: var(--grad);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.audience__icon[data-icon="user"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
}
.audience__icon[data-icon="partner"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 18l6-6-6-6"/><path d="M8 6l-6 6 6 6"/><path d="M14 4l-4 16"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 18l6-6-6-6"/><path d="M8 6l-6 6 6 6"/><path d="M14 4l-4 16"/></svg>');
}
.audience h3 { margin-bottom: 10px; font-size: 1.25rem; }
.audience p { color: var(--muted); margin: 0 0 16px; font-size: .95rem; line-height: 1.6; }
.audience .link { margin-top: auto; align-self: flex-start; }

/* ---------- Stats ---------- */
.stats { padding: 80px 0; background: var(--bg); }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: center;
}
.stats__num {
  display: block;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 16px;
}
.stats p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 820px; margin: 0 auto;
  counter-reset: ti;
}
.timeline li {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
}
.timeline li:last-child { border-bottom: none; }
.timeline__marker {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.02em;
}
.timeline h3 { margin-bottom: 6px; }
.timeline p { color: var(--muted); margin: 0; }

/* ---------- Chat ---------- */
.chat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  min-height: 480px;
}
.chat__head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.chat__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
  letter-spacing: -0.02em;
}
.chat__head strong { display: block; font-size: .98rem; }
.chat__head small { color: var(--muted); font-size: .82rem; display: inline-flex; align-items: center; gap: 6px; }
.chat__head .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; }

.chat__body { flex: 1; padding: 22px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; max-height: 380px; }
.msg { max-width: 80%; padding: 12px 16px; border-radius: 16px; font-size: .94rem; line-height: 1.5; }
.msg--bot { align-self: flex-start; background: var(--bg-soft); border-bottom-left-radius: 4px; }
.msg--user { align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 4px; }
.msg--bot strong { color: var(--accent); }
.msg__typing { display: inline-flex; gap: 4px; }
.msg__typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: typing 1.2s infinite; }
.msg__typing span:nth-child(2) { animation-delay: .15s; }
.msg__typing span:nth-child(3) { animation-delay: .30s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat__input {
  display: flex; gap: 10px; padding: 14px 16px;
  border-top: 1px solid var(--line); background: #fff;
}
.chat__input input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 18px; font-family: var(--font); font-size: .95rem;
  background: var(--bg-soft); color: var(--ink); outline: none;
  transition: border-color .2s, background .2s;
}
.chat__input input:focus { border-color: var(--accent); background: #fff; }
.chat__input button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  transition: transform .25s;
}
.chat__input button:hover { transform: rotate(-15deg) scale(1.05); }
.chat__input svg { width: 20px; height: 20px; }

.checklist { display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; }
.checklist li { padding-left: 30px; position: relative; color: var(--ink-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Prices ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.prices--two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.price {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.price h3 { margin: 0; }
.price__amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; margin: 0; line-height: 1; }
.price__amount small { font-size: .9rem; font-weight: 500; color: var(--muted); margin-left: 4px; }
.price__sub { color: var(--muted); font-size: .9rem; margin: -8px 0 4px; line-height: 1.5; }
.price--highlight .price__sub { color: rgba(255,255,255,.6); }
.price ul { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price ul li { padding-left: 24px; position: relative; color: var(--ink-soft); font-size: .94rem; }
.price ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.price--highlight {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price--highlight h3, .price--highlight .price__amount { color: #fff; }
.price--highlight ul li { color: rgba(255,255,255,.85); }
.price--highlight .price__amount small { color: rgba(255,255,255,.55); }
.price--highlight .btn--primary { background: #fff; color: var(--ink); }
.price--highlight .btn--primary:hover { background: var(--accent-soft); }
.price__badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--grad); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all .3s;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: #F59E0B; letter-spacing: 4px; font-size: 1rem; margin-bottom: 14px; }
.testimonial p { color: var(--ink-soft); font-size: 1rem; margin: 0 0 22px; line-height: 1.55; }
.testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial strong { font-size: .95rem; }
.testimonial small { color: var(--muted); font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 600; cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem; color: var(--accent); font-weight: 300;
  transition: transform .25s;
  margin-left: 16px;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 14px 0 0; color: var(--muted); font-size: .94rem; }

/* ---------- Kontakt ---------- */
.contact {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 90% 20%, rgba(108,92,231,.14), transparent 70%),
    radial-gradient(540px 320px at 0% 100%, rgba(236,72,153,.08), transparent 70%);
  pointer-events: none;
}
.contact__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px;
  align-items: start;
}
.contact__copy h2 { margin-bottom: 16px; }
.contact__copy .lede { margin-bottom: 32px; }
.contact__info {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
  margin-top: 8px;
}
.contact__info li {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink-soft); font-size: .95rem;
}
.contact__info svg { color: var(--accent); flex-shrink: 0; }
.contact__info a { color: var(--ink-soft); transition: color .2s; }
.contact__info a:hover { color: var(--accent); }

/* ---------- Form ---------- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form__hp { position: absolute; left: -9999px; top: -9999px; }
.contact-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-size: .82rem; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.field > span em {
  font-style: normal; color: var(--accent); font-weight: 700;
  margin-left: 2px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: var(--font);
  /* 16px on mobile to prevent iOS auto-zoom on focus */
  font-size: 16px;
}
@media (min-width: 768px) {
  .field input,
  .field select,
  .field textarea { font-size: .95rem; }
}
.field textarea {
  resize: vertical; min-height: 110px;
  line-height: 1.55;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%236B6E8A" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108,92,231,.12);
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 8px;
}
.contact-form__submit svg { transition: transform .25s; }
.contact-form__submit:hover svg { transform: translateX(3px); }

.contact-form__note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.contact-form__note a { color: var(--accent); }
.contact-form__note a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contact-form__success {
  display: none;
  align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: #DEFCEC;
  color: #047857;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  margin-top: 8px;
}
.contact-form__success strong { display: block; margin-bottom: 2px; color: #064E3B; }
.contact-form__success span { font-size: .9rem; line-height: 1.5; color: #047857; }
.contact-form.is-sent .contact-form__success { display: flex; }
.contact-form.is-sent .field,
.contact-form.is-sent .contact-form__row,
.contact-form.is-sent .contact-form__submit,
.contact-form.is-sent .contact-form__note { display: none; }

@media (max-width: 960px) {
  .contact { padding: 64px 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 22px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
}
.site-footer h4 { color: #fff; }
.site-footer a { color: rgba(255,255,255,.7); transition: color .2s; }
.site-footer a:hover { color: var(--accent-2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__grid ul { display: flex; flex-direction: column; gap: 8px; }
.footer__grid p { font-size: .92rem; color: rgba(255,255,255,.55); margin: 16px 0 0; max-width: 36ch; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(255,255,255,.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .steps--four { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 960px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-card); padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(14,15,44,.08);
  }
  .nav__menu.is-open .nav__cta-mobile {
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .audiences, .audiences--two, .prices, .testimonials, .steps, .stats__grid { grid-template-columns: 1fr; }
  .price--highlight { transform: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 48px; }
  .hero__pills { gap: 8px 14px; font-size: .82rem; }
  .hero__pills svg { width: 14px; height: 14px; }
  .contact__grid { gap: 40px; }
  .why { gap: 14px; }
  .cloud { padding: 28px 0; }
  .cloud__list { gap: 16px 28px; }
  .cloud__list li { font-size: .95rem; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__lede { font-size: 1rem; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; }
  .hero__ctas .btn--lg { padding: 13px 20px; font-size: .95rem; }
  .pill { font-size: .76rem; padding: 7px 14px; }
  .section__head { margin-bottom: 40px; }
  .section { padding: 56px 0; }
  .price { padding: 28px 22px; }
  .price__amount { font-size: 2rem; }
  .audience { padding: 28px 22px; }
  .feature { padding: 22px 18px; }
  .fact { padding: 22px 18px; }
  .timeline li { padding: 22px 0; }
  .timeline__marker { width: 44px; height: 44px; font-size: .92rem; }
  .panel__body { padding: 18px; }
  .ablauf__cta { padding: 18px 20px; }
  .stats { padding: 56px 0; }
  .footer__grid { gap: 28px; margin-bottom: 32px; }
  .why__num { font-size: .68rem; padding: 5px 10px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; gap: 14px; }
  .panel__stats { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .steps--four { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem) !important; }
  .hero { padding: 32px 0 40px; }
  .section { padding: 48px 0; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ---------- Legal pages ---------- */
.page-legal {
  position: relative;
  padding: 80px 0 100px;
}
.page-legal::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(108,92,231,.10), transparent 70%),
    radial-gradient(540px 320px at 10% 0%, rgba(236,72,153,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-legal > .container { position: relative; z-index: 1; }
.page-legal__head {
  max-width: 760px; margin: 0 auto 56px;
  text-align: left;
}
.page-legal__head .pill { margin-bottom: 24px; }
.page-legal__head h1 {
  font-size: clamp(1.9rem, 3vw + 1rem, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  word-wrap: break-word;
  hyphens: auto;
}
.page-legal__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.prose {
  max-width: 760px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  box-shadow: var(--shadow-sm);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.prose h2 {
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 44px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); font-size: .98rem; line-height: 1.7; }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.prose ul li, .prose ol li { padding-left: 4px; margin-bottom: 6px; }
.prose ol { list-style: decimal; }
.prose a { color: var(--accent); }
.prose a:hover { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--line-2); margin: 36px 0; }
.prose .meta {
  display: inline-block;
  margin-top: 32px;
  font-size: .85rem; color: var(--muted);
  font-style: italic;
}
.prose address { font-style: normal; line-height: 1.7; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9rem; color: var(--muted); font-weight: 500;
  margin-bottom: 24px;
  transition: color .2s;
}
.back-link:hover { color: var(--accent); }

@media (max-width: 720px) {
  .prose { padding: 28px 20px; }
  .page-legal { padding: 40px 0 56px; }
  .page-legal__head { margin-bottom: 36px; }
  .prose h2 { font-size: 1.2rem; margin-top: 32px; padding-top: 20px; }
  .prose h3 { font-size: 1rem; }
  .prose p, .prose li { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 100;
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(14,15,44,.18), 0 6px 16px rgba(14,15,44,.08);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner__inner {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  padding: 18px 22px;
}
.cookie-banner__copy { flex: 1 1 320px; min-width: 0; }
.cookie-banner__copy strong {
  display: block; font-size: .98rem; margin-bottom: 4px; color: var(--ink);
}
.cookie-banner__copy p {
  margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5;
}
.cookie-banner__copy a { color: var(--accent); }
.cookie-banner__copy a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions {
  display: flex; gap: 16px; flex-shrink: 0; align-items: center;
}
.cookie-banner__decline {
  background: none;
  border: none;
  padding: 8px 4px;
  color: var(--muted);
  font: inherit;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107,110,138,.4);
  transition: color .2s, text-decoration-color .2s;
  white-space: nowrap;
}
.cookie-banner__decline:hover {
  color: var(--ink-soft);
  text-decoration-color: currentColor;
}
.cookie-banner__accept {
  background: var(--grad);
  color: #fff;
  padding: 12px 22px;
  font-size: .94rem;
  box-shadow: 0 8px 22px rgba(108,92,231,.28);
}
.cookie-banner__accept:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(108,92,231,.36);
}

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__inner { padding: 16px 18px; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: space-between; }
  .cookie-banner__accept { flex: 1; }
}
