/* =========================================================
   flink.coop – Design System (static rebuild, Sept 2026)
   Typeface: Switzer (as on the current Webflow site)
   Palette: warm neutrals of the current site + accent rgb(207,87,93)
   ========================================================= */

:root {
  /* surfaces */
  --bg: #f6f6f3;
  --bg-2: #edede8;
  --bg-3: #e3e3dc;
  --surface: #ffffff;
  --ink: #1b211e;
  --ink-2: #3a3f3c;
  --muted: #6b716e;
  --line: rgba(27, 33, 30, 0.10);
  --line-strong: rgba(27, 33, 30, 0.18);

  /* brand */
  --accent: #cf575d;
  --accent-ink: #b0434a;
  --accent-tint: #fbebec;
  --accent-soft: #f2c6c8;
  --accent-deep: #6e2229;

  --warm: #d98a2b;
  --warm-tint: #fbf0dd;
  --green: #0d6759;
  --green-tint: #dfefe9;
  --coral: #7a5c8e;
  --coral-tint: #efe8f3;

  /* type */
  --font: "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --fs-small: 0.875rem;
  --fs-body: 1.0625rem;
  --fs-lead: 1.25rem;
  --fs-h5: 1.125rem;
  --fs-h4: 1.375rem;
  --fs-h3: 1.75rem;
  --fs-h2: clamp(2rem, 3.6vw, 2.9rem);
  --fs-h1: clamp(2.5rem, 5.2vw, 4.2rem);
  --fs-display: clamp(2.75rem, 6vw, 5rem);

  /* spacing */
  --gap-1: 6px;  --gap-2: 12px; --gap-3: 18px; --gap-4: 24px;
  --gap-5: 36px; --gap-6: 48px; --gap-7: 72px; --gap-8: 96px; --gap-9: 144px;
  --section: clamp(64px, 9vw, 128px);
  --section-sm: clamp(40px, 6vw, 84px);

  /* shape */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --shadow-sm: 0 1px 2px rgba(27,33,30,.06), 0 2px 8px rgba(27,33,30,.05);
  --shadow-md: 0 8px 30px rgba(27,33,30,.10);
  --shadow-lg: 0 24px 60px rgba(27,33,30,.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: var(--fs-h1); letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: var(--fs-h4); line-height: 1.3; }
h5 { font-size: var(--fs-h5); line-height: 1.35; }
strong, b { font-weight: 600; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--accent-soft); color: var(--accent-deep); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 820px; }
.container--wide { max-width: 1320px; }
.section { padding-top: var(--section); padding-bottom: var(--section); }
.section--sm { padding-top: var(--section-sm); padding-bottom: var(--section-sm); }
.section--tight { padding-top: var(--gap-7); padding-bottom: var(--gap-7); }
.section--white { background: var(--surface); }
.section--tint { background: var(--bg-2); }
.section--accent { background: var(--accent-tint); }
.section--dark { background: var(--ink); color: #eef0ee; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .muted { color: rgba(255,255,255,.66); }

.grid { display: grid; gap: var(--gap-4); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.split--60 { grid-template-columns: 1.15fr 1fr; }
.split--40 { grid-template-columns: 1fr 1.15fr; }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .split--60, .split--40 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: var(--gap-3); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: var(--gap-1); } .mt-2 { margin-top: var(--gap-2); } .mt-3 { margin-top: var(--gap-3); }
.mt-4 { margin-top: var(--gap-4); } .mt-5 { margin-top: var(--gap-5); } .mt-6 { margin-top: var(--gap-6); } .mt-7 { margin-top: var(--gap-7); }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: var(--gap-2); } .mb-4 { margin-bottom: var(--gap-4); } .mb-6 { margin-bottom: var(--gap-6); }
.maxw-sm { max-width: 560px; } .maxw-md { max-width: 720px; } .maxw-lg { max-width: 860px; }

/* ---------- typography helpers ---------- */
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-2); }
.small { font-size: var(--fs-small); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--gap-3);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--warm { color: var(--warm); }
.eyebrow--green { color: var(--green); }
.section-head { max-width: 720px; margin-bottom: var(--gap-6); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { font-size: var(--fs-lead); color: var(--ink-2); margin-bottom: 0; }
.hl { color: var(--accent); }
.script { font-family: var(--font); font-style: italic; font-weight: 400; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: var(--r-pill);
  font-weight: 500; font-size: 1rem; line-height: 1; white-space: nowrap;
  border: 1px solid transparent; transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-ink); box-shadow: 0 10px 30px rgba(207,87,93,.28); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--secondary:hover { background: var(--surface); border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg-2); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); }
.btn--sm { height: 42px; padding: 0 18px; font-size: .9375rem; }
.btn--lg { height: 58px; padding: 0 32px; font-size: 1.0625rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--gap-2); align-items: center; }
.link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--accent);
  border-bottom: 1px solid transparent; transition: border-color .2s, gap .2s;
}
.link:hover { border-color: currentColor; gap: 10px; }
.link svg { width: 16px; height: 16px; }

/* ---------- navigation ---------- */
.nav-wrap { position: sticky; top: 0; z-index: 50; padding: 12px var(--gutter) 0; pointer-events: none; }
.nav {
  pointer-events: auto;
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: var(--gap-4);
  height: 64px; padding: 0 10px 0 22px; border-radius: var(--r-pill);
  background: rgba(246,246,243,.82); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(27,33,30,.08); box-shadow: 0 6px 24px rgba(27,33,30,.06);
  transition: box-shadow .3s, background .3s;
}
.nav.is-scrolled { box-shadow: 0 10px 34px rgba(27,33,30,.12); background: rgba(246,246,243,.92); }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 68px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-flex; align-items: center; height: 40px; padding: 0 14px; border-radius: var(--r-pill);
  font-size: .9375rem; font-weight: 500; color: var(--ink-2); transition: background .2s, color .2s;
}
.nav__links a:hover { background: rgba(27,33,30,.06); color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); background: rgba(27,33,30,.07); }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 3px 0; border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-mobile {
  display: none; position: fixed; inset: 88px var(--gutter) auto; z-index: 49;
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 12px;
}
.nav-mobile a { display: block; padding: 14px 16px; border-radius: var(--r-md); font-weight: 500; font-size: 1.0625rem; }
.nav-mobile a:hover { background: var(--bg); }
.nav-mobile .btn { width: 100%; margin-top: 8px; }
body.nav-open .nav-mobile { display: block; }
body.nav-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn--secondary { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 8vw, 110px); padding-bottom: clamp(48px, 7vw, 96px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: var(--gap-4); max-width: 13ch; }
.hero .lead { max-width: 520px; margin-bottom: var(--gap-5); }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: var(--gap-5); color: var(--muted); font-size: var(--fs-small); }
.hero__proof .avatars { display: flex; }
.hero__proof .avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; background-size: cover; background-position: center; }
.hero__proof .avatars span:first-child { margin-left: 0; }
.hero__visual { position: relative; }
.hero__photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/4.6; box-shadow: var(--shadow-lg); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__phone {
  position: absolute; left: -8%; bottom: -6%; width: 44%; max-width: 250px;
  border-radius: 34px; box-shadow: var(--shadow-lg); overflow: hidden; background: #111; padding: 8px;
}
.hero__phone img { border-radius: 26px; }
.float-card {
  position: absolute; background: var(--surface); border-radius: var(--r-md); padding: 12px 14px;
  box-shadow: var(--shadow-md); display: flex; gap: 10px; align-items: center; font-size: .875rem; line-height: 1.3;
  animation: float 6s ease-in-out infinite;
}
.float-card strong { display: block; font-weight: 600; }
.float-card .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-card--tr { top: 8%; right: -6%; animation-delay: -2s; }
.float-card--mr { top: 48%; right: -10%; animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .hero__visual { margin-top: var(--gap-4); }
  .hero__phone { left: 4%; bottom: -4%; width: 38%; }
  .float-card--tr { right: 4%; } .float-card--mr { right: 2%; }
}
@media (max-width: 600px) {
  .hero__photo { aspect-ratio: 4/4.2; }
  .float-card--mr { display: none; }
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--surface); padding: 28px 26px; }
.stat__num { font-size: clamp(2rem, 3.4vw, 2.75rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: var(--ink); margin-bottom: 8px; }
.stat__num .unit { font-size: .6em; color: var(--accent); margin-left: 2px; }
.stat__label { color: var(--muted); font-size: .9375rem; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat { min-width: 0; overflow-wrap: anywhere; hyphens: auto; }

/* ---------- logos ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo-wall__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  height: 92px; display: grid; place-items: center; padding: 18px 22px; transition: border-color .2s, transform .2s var(--ease);
}
.logo-wall__item:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.logo-wall__item img { max-height: 52px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1) contrast(1.15); opacity: .9; transition: filter .25s, opacity .25s; }
.logo-wall__item:hover img { filter: none; opacity: 1; }
.logo-wall__item--text { font-weight: 600; font-size: .9375rem; color: var(--ink-2); text-align: center; line-height: 1.25; }
@media (max-width: 960px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } .logo-wall__item { height: 80px; } }

.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 12px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .logo-wall__item { width: 190px; height: 84px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; } .float-card { animation: none; } }

/* ---------- cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h4, .card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card--tint { background: var(--bg-2); border-color: transparent; }
.card--accent { background: var(--accent-tint); border-color: transparent; }
.card--dark { background: var(--ink); color: #dfe3df; border-color: transparent; }
.card--dark h3, .card--dark h4 { color: #fff; }
.icon-box { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent); margin-bottom: 20px; }
.icon-box svg { width: 24px; height: 24px; }
.icon-box--warm { background: var(--warm-tint); color: var(--warm); }
.icon-box--green { background: var(--green-tint); color: var(--green); }
.icon-box--coral { background: var(--coral-tint); color: var(--coral); }
.icon-box--dark { background: rgba(255,255,255,.1); color: #fff; }

/* problem / solution */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-4); }
.compare__col { border-radius: var(--r-lg); padding: 34px; }
.compare__col--before { background: var(--bg-2); }
.compare__col--after { background: var(--ink); color: #e7eae7; }
.compare__col--after h4 { color: #fff; }
.compare ul { list-style: none; padding: 0; margin: 0; }
.compare li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.compare__col--after li { border-color: rgba(255,255,255,.12); }
.compare li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.compare__col--before li svg { color: var(--muted); }
.compare__col--after li svg { color: #7fd1a5; }
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

/* ---------- tabs (personas) ---------- */
.tabs { --tabs-dur: 7000ms; }
.tabs__list { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-2); border-radius: var(--r-pill); margin-bottom: var(--gap-5); }
.tabs__btn { position: relative; overflow: hidden; height: 44px; padding: 0 20px; border-radius: var(--r-pill); border: 0; background: transparent; font-weight: 500; color: var(--ink-2); transition: background .2s, color .2s, box-shadow .2s; }
.tabs__btn[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.tabs__label { position: relative; z-index: 1; }
/* progress bar of the autoplay, only in the active tab and only while it is really running */
.tabs__bar { position: absolute; left: 14px; right: 14px; bottom: 5px; height: 3px; border-radius: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; opacity: 0; }
.tabs.is-playing .tabs__btn[aria-selected="true"] .tabs__bar { opacity: 1; animation: tabs-progress var(--tabs-dur) linear forwards; }
.tabs.is-held .tabs__btn[aria-selected="true"] .tabs__bar { animation-play-state: paused; }
@keyframes tabs-progress { to { transform: scaleX(1); } }
/* all panels share one grid cell, so the section keeps the height of the tallest panel and nothing jumps */
.tabs__panels { display: grid; }
.tabs__panel { grid-area: 1 / 1; display: grid; align-content: center; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility 0s linear .2s; }
.tabs__panel.is-active { opacity: 1; visibility: visible; transition: opacity .35s ease .2s, visibility 0s; }
@media (prefers-reduced-motion: no-preference) {
  .tabs__panel .persona > * { transform: translateY(10px); transition: transform .5s var(--ease); }
  .tabs__panel.is-active .persona > * { transform: none; }
  .tabs__panel.is-active .persona > *:nth-child(2) { transition-delay: .08s; }
}
@media (max-width: 600px) {
  .tabs__list { display: flex; width: 100%; }
  .tabs__btn { flex: 1; min-width: 0; height: auto; min-height: 44px; padding: 6px 4px 11px; font-size: .8rem; line-height: 1.2; white-space: normal; }
  .tabs__label { display: block; }
  .tabs__bar { left: 8px; right: 8px; bottom: 4px; }
}

.persona { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.persona__img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/4; }
.persona__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; padding: 0; margin: var(--gap-4) 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9875rem; color: var(--ink-2); }
.feature-list li svg { width: 18px; height: 18px; flex: none; color: var(--accent); margin-top: 3px; }
@media (max-width: 900px) { .persona { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .feature-list { grid-template-columns: 1fr; } }

/* ---------- feature grid with icon tiles ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: transform .25s var(--ease), box-shadow .25s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature h4 { font-size: 1.125rem; margin: 0 0 6px; }
.feature p { color: var(--muted); font-size: .9375rem; margin: 0; }
.feature .icon-box { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px; }
.feature .icon-box svg { width: 22px; height: 22px; }
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento > * { border-radius: var(--r-lg); overflow: hidden; }
.b-6 { grid-column: span 6; } .b-4 { grid-column: span 4; } .b-8 { grid-column: span 8; } .b-12 { grid-column: span 12; }
.bento__img { position: relative; min-height: 320px; }
.bento__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__img .caption { position: absolute; left: 20px; bottom: 20px; right: 20px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); padding: 14px 16px; border-radius: var(--r-md); font-size: .9375rem; }
.bento__img .caption strong { display: block; }
@media (max-width: 900px) { .b-6, .b-4, .b-8 { grid-column: span 12; } }

/* ---------- device mock ---------- */
.device { position: relative; }
.device--browser { border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; }
.device--browser .bar { height: 36px; display: flex; align-items: center; gap: 6px; padding: 0 14px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.device--browser .bar i { width: 10px; height: 10px; border-radius: 50%; background: #d7d7d0; }

/* ---------- testimonial ---------- */
.quote { position: relative; background: var(--surface); border-radius: var(--r-xl); padding: clamp(28px, 5vw, 56px); border: 1px solid var(--line); }
.quote blockquote { margin: 0; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.35; letter-spacing: -0.01em; font-weight: 400; }
.quote blockquote::before { content: "\201C"; display: block; font-size: 5rem; line-height: .6; color: var(--accent); margin-bottom: 18px; font-weight: 500; }
.quote__author { display: flex; align-items: center; gap: 14px; margin-top: var(--gap-5); }
.quote__author img, .quote__author .avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--accent-tint); display: grid; place-items: center; color: var(--accent); font-weight: 600; }
.quote__author strong { display: block; }
.quote__author span { color: var(--muted); font-size: .9375rem; }
.quote--dark { background: var(--ink); color: #eef0ee; border-color: transparent; }
.quote--dark span { color: rgba(255,255,255,.6); }
.quote--dark blockquote::before { color: #f0a5a9; }
.quote--sm blockquote { font-size: 1.125rem; }
.quote--sm blockquote::before { font-size: 3rem; margin-bottom: 10px; }
.quote--sm .quote__author { margin-top: var(--gap-4); }

/* ---------- steps / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px 24px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: inline-block; font-size: .8125rem; font-weight: 600; letter-spacing: .06em; color: var(--accent); background: var(--accent-tint); padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 16px; }
.step h4 { font-size: 1.125rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9375rem; margin: 0; }
.step__meta { margin-top: 14px; font-size: .8125rem; color: var(--ink-2); font-weight: 500; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 76px; top: 8px; bottom: 8px; width: 1px; background: var(--line-strong); }
.timeline li { display: grid; grid-template-columns: 56px 1fr; gap: 40px; padding: 18px 0; position: relative; }
.timeline li::after { content: ""; position: absolute; left: 71px; top: 30px; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); }
.timeline .year { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.timeline p { margin: 0; color: var(--ink-2); }
.timeline strong { display: block; color: var(--ink); margin-bottom: 4px; }
@media (max-width: 560px) { .timeline::before { left: 8px; } .timeline li { grid-template-columns: 1fr; gap: 6px; padding-left: 32px; } .timeline li::after { left: 3px; top: 26px; } }

/* ---------- accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line-strong); }
.accordion__item { border-bottom: 1px solid var(--line-strong); }
.accordion__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; background: none; border: 0; text-align: left; font-size: 1.125rem; font-weight: 500; color: var(--ink); }
.accordion__btn .plus { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; flex: none; transition: transform .25s var(--ease), background .2s; }
.accordion__btn .plus::before, .accordion__btn .plus::after { content: ""; position: absolute; width: 12px; height: 1.5px; background: currentColor; }
.accordion__btn .plus::after { transform: rotate(90deg); }
.accordion__btn .plus { position: relative; }
.accordion__btn[aria-expanded="true"] .plus { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.accordion__panel > div { overflow: hidden; }
.accordion__panel.is-open { grid-template-rows: 1fr; }
.accordion__panel p, .accordion__panel ul { color: var(--ink-2); max-width: 70ch; }
.accordion__panel > div > *:first-child { margin-top: 0; }
.accordion__panel > div > *:last-child { margin-bottom: 26px; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 80px);
  background: var(--ink); color: #eef0ee; text-align: center;
}
.cta::before { content: ""; position: absolute; inset: -40% -20% auto; height: 120%; background: radial-gradient(60% 60% at 50% 0%, rgba(207,87,93,.55), transparent 70%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { color: #fff; max-width: 24ch; margin: 0 auto var(--gap-3); }
.cta p { color: rgba(255,255,255,.72); max-width: 60ch; margin: 0 auto var(--gap-5); font-size: var(--fs-lead); }
.cta .btn-row { justify-content: center; }
.cta--light { background: var(--accent-tint); color: var(--ink); }
.cta--light::before { background: radial-gradient(60% 60% at 50% 0%, rgba(207,87,93,.18), transparent 70%); }
.cta--light h2 { color: var(--ink); }
.cta--light p { color: var(--ink-2); }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: 6px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; height: 50px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { height: auto; min-height: 140px; padding: 14px 16px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(207,87,93,.14); }
.field--check { display: flex; align-items: flex-start; gap: 10px; font-size: .9375rem; color: var(--ink-2); }
.field--check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.form__note { font-size: .8125rem; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { position: relative; display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 12px; cursor: pointer; background: var(--surface); transition: border-color .2s, background .2s; }
.choice:hover { border-color: var(--ink); }
.choice input { position: absolute; opacity: 0; }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.choice strong { display: block; font-size: .9375rem; }
.choice span { font-size: .8125rem; color: var(--muted); }
@media (max-width: 600px) { .form__row, .choice-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: var(--gap-8) 0 var(--gap-5); margin-top: var(--section); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--gap-6); }
.footer h5 { color: #fff; font-size: .875rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li + li { margin-top: 10px; }
.footer a:hover { color: #fff; }
.footer__logo img { height: 68px; width: auto; filter: invert(1) brightness(2); margin: -8px 0 10px -15px; }
.footer__claim { max-width: 38ch; font-size: var(--fs-small); line-height: 1.55; color: rgba(255,255,255,.6); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: var(--gap-7); padding-top: var(--gap-4); border-top: 1px solid rgba(255,255,255,.12); font-size: .875rem; }
.footer__stores { display: flex; gap: 10px; margin-top: 16px; }
.footer__stores img { height: 40px; }
.footer__panter { display: inline-flex; align-items: center; gap: 10px; }
.footer__panter img { height: 16px; filter: invert(1) brightness(2); opacity: .85; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- page header (subpages) ---------- */
.page-head { padding-top: clamp(40px, 7vw, 96px); padding-bottom: clamp(32px, 5vw, 64px); }
.page-head h1 { max-width: 16ch; margin-bottom: var(--gap-3); }
.page-head .lead { max-width: 640px; margin-bottom: 0; }
.page-head--center { text-align: center; }
.page-head--center h1, .page-head--center .lead { margin-left: auto; margin-right: auto; }
.page-head__img { margin-top: var(--gap-6); border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 21/9; }
.page-head__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- misc ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 14px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-size: .8125rem; font-weight: 500; color: var(--ink-2); }
.pill--accent { background: var(--accent-tint); border-color: transparent; color: var(--accent-ink); }
.pill--warm { background: var(--warm-tint); border-color: transparent; color: #9a5d12; }
.pill--green { background: var(--green-tint); border-color: transparent; color: var(--green); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.img-round { border-radius: var(--r-xl); overflow: hidden; }
.img-round img { width: 100%; height: 100%; object-fit: cover; }
.ratio-4-3 { aspect-ratio: 4/3; } .ratio-3-4 { aspect-ratio: 3/4; } .ratio-16-9 { aspect-ratio: 16/9; } .ratio-1-1 { aspect-ratio: 1/1; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.check-list li svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 3px; }
.kicker-num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.03em; line-height: 1; color: var(--accent); }

.table { width: 100%; border-collapse: collapse; font-size: .9875rem; }
.table th, .table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-weight: 600; font-size: .8125rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.table-wrap { overflow-x: auto; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* prose (legal pages) */
.prose { max-width: 760px; }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--gap-6); }
.prose h3 { font-size: var(--fs-h4); margin-top: var(--gap-5); }
.prose p, .prose li { color: var(--ink-2); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- app mock (pure HTML phone UI) ---------- */

/* ---------- numbered flow (dark) ---------- */
.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.flow li { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 18px 20px; }
.flow__n { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .9375rem; }
.flow strong { display: block; color: #fff; margin-bottom: 2px; }
.flow div { color: rgba(255,255,255,.72); font-size: .9875rem; }

/* ---------- feature rows (product page) ---------- */
.feat-row { display: flex; gap: 18px; align-items: flex-start; }
.feat-row .icon-box { flex: none; width: 44px; height: 44px; border-radius: 12px; margin: 0; }
.feat-row .icon-box svg { width: 22px; height: 22px; }
.feat-row h5 { margin-bottom: 4px; }
.feat-row p { color: var(--muted); margin: 0; font-size: .9875rem; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.pricing__calc { background: var(--ink); color: #eef0ee; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); }
.pricing__calc h3 { color: #fff; }
.pricing__calc .eyebrow { color: #f0a5a9; }
.pricing__input { margin: var(--gap-4) 0; }
.pricing__input input[type=range] { width: 100%; accent-color: var(--accent); height: 6px; }
.pricing__units { margin-top: 12px; display: flex; align-items: center; gap: 10px; font-size: 1.0625rem; }
.pricing__units input { width: 110px; height: 44px; padding: 0 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 1.125rem; font-weight: 500; }
.pricing__result { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: var(--gap-5); padding-top: var(--gap-4); border-top: 1px solid rgba(255,255,255,.12); }
.pricing__label { display: block; font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.pricing__num { font-size: clamp(2rem, 3.6vw, 2.75rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.05; color: #fff; }
.pricing__num--sm { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.pricing__side { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 3.5vw, 40px); }
.pricing__side h4 { font-size: 1.0625rem; margin-bottom: 10px; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .pricing__result { grid-template-columns: 1fr; } }

/* ---------- mobile refinements ---------- */
.nav__burger { flex-direction: column; }
@media (max-width: 960px) {
  .hero__visual { margin-top: var(--gap-6); }
  .hero__phone { width: 42%; bottom: -3%; }
}
@media (max-width: 600px) {
  .hero__visual { margin-top: var(--gap-7); }
  .hero__phone { width: 46%; left: 2%; bottom: -2%; padding: 6px; border-radius: 26px; }
  .stat { padding: 22px 18px; }
  .stat__num { font-size: 1.75rem; }
  .stats { border-radius: var(--r-md); }
}

/* =========================================================
   Value proposition: three pillars (all selectors .vp-)
   ========================================================= */
.vp-head { max-width: 980px; }
.vp-head h2 { text-wrap: balance; }
.vp-nb { display: inline-block; }
@media (min-width: 1100px) { .vp-nb { white-space: nowrap; } }
.vp-nw { white-space: nowrap; }
.vp-gloss { display: block; color: var(--muted); margin-top: .15em; }
.vp-head p { max-width: 660px; margin-left: auto; margin-right: auto; text-wrap: pretty; }
.vp-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.vp-grid > li { display: flex; min-width: 0; }

.vp-card { --vp-c: var(--accent); --vp-t: var(--accent-tint); display: flex; flex-direction: column; width: 100%; padding: 28px 28px 26px; }
.vp-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
.vp-card--green { --vp-c: var(--green); --vp-t: var(--green-tint); }
.vp-card--warm { --vp-c: var(--warm); --vp-t: var(--warm-tint); }
.vp-card--accent { --vp-c: var(--accent); --vp-t: var(--accent-tint); }

.vp-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.vp-card__top h3 { font-size: 1.5rem; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
.vp-card__top h3 span { display: block; }
.vp-num { height: 28px; padding: 0 11px; font-variant-numeric: tabular-nums; letter-spacing: .04em; flex: none; background: var(--vp-t); border-color: transparent; color: var(--ink); }

/* illustrations: ink outlines, white paper, one pillar colour as accent */
.vp-art { margin: 8px -8px 14px; color: var(--ink); }
.vp-svg { width: 100%; height: auto; overflow: visible; display: block; }
.vp-svg .vp-disc { fill: var(--vp-t); stroke: none; }
.vp-svg .vp-paper { fill: var(--surface); }
.vp-svg .vp-tint { fill: var(--vp-t); }
.vp-svg .vp-solid { fill: var(--vp-c); stroke: none; }
.vp-svg .vp-halo { fill: var(--vp-c); stroke: var(--surface); stroke-width: 3.5; }
.vp-svg .vp-halo--tint { stroke: var(--vp-t); }
.vp-svg .vp-white { stroke: var(--surface); }
.vp-svg .vp-whitefill { fill: var(--surface); stroke: none; }
.vp-svg .vp-track { stroke: var(--surface); stroke-width: 3.2; opacity: .35; }
.vp-svg .vp-faint { opacity: .38; }
.vp-svg .vp-dash { stroke: var(--vp-c); stroke-dasharray: 1.5 7; opacity: .7; }
.vp-svg .vp-spin { stroke: var(--vp-c); stroke-width: 2.2; }

.vp-card__claim { margin: 0 0 8px; font-size: 1.125rem; line-height: 1.35; color: var(--ink); text-wrap: balance; }
.vp-card__claim strong { font-weight: 600; }
.vp-card__out { color: var(--ink-2); margin: 0 0 20px; text-wrap: pretty; }
.vp-card__ex { margin: auto 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: .9375rem; line-height: 1.5; color: var(--ink-2); }
.vp-card__ex b { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.vp-card__ex b::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--vp-c); }

/* closing strip: self-service around the clock */
.vp-close { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; margin-top: 16px; padding: clamp(24px, 3.2vw, 36px); border-radius: var(--r-lg); background: var(--bg-2); }
.vp-close h3 { font-size: var(--fs-h4); margin: 0 0 8px; }
.vp-close p { margin: 0; color: var(--ink-2); text-wrap: pretty; }
.vp-close strong { color: var(--ink); }
.vp-close__link { margin-top: 14px !important; }
.vp-close__pills { list-style: none; margin: 18px 0 0; padding: 0; }
.vp-day { font-size: .8125rem; color: var(--muted); }
.vp-day__row { display: grid; grid-template-columns: 9.5em minmax(0, 1fr); align-items: center; gap: 12px; margin-bottom: 10px; }
.vp-day__row--flink span { color: var(--ink); font-weight: 600; }
.vp-day__track { display: block; position: relative; height: 8px; border-radius: 99px; background: rgba(27, 33, 30, .09); }
.vp-day__track b { position: absolute; top: 0; bottom: 0; border-radius: 99px; }
.vp-day__office { left: 33%; width: 38%; background: var(--muted); opacity: .75; }
.vp-day__full { left: 0; right: 0; background: var(--accent); }
.vp-day__axis { display: flex; justify-content: space-between; margin-left: calc(9.5em + 12px); font-variant-numeric: tabular-nums; }

/* one quiet motion per illustration, only once visible and only if motion is welcome */
@media (prefers-reduced-motion: no-preference) {
  .reveal.is-visible .vp-spin { transform-origin: 0 0; animation: vp-rotate 18s linear infinite; }
  .reveal.is-visible .vp-orbit { transform-origin: 0 0; animation: vp-rotate 32s linear infinite; }
  .reveal.is-visible .vp-pulse { transform-origin: 0 0; animation: vp-breathe 3.8s ease-in-out infinite; }
}
@keyframes vp-rotate { to { transform: rotate(360deg); } }
@keyframes vp-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* tablet: one card per row, illustration beside the text */
@media (max-width: 960px) {
  .vp-grid { grid-template-columns: 1fr; }
  .vp-card { display: grid; grid-template-columns: clamp(220px, 34vw, 280px) minmax(0, 1fr); grid-template-areas: "art top" "art claim" "art out" "art ex"; grid-template-rows: auto auto auto 1fr; column-gap: 32px; align-items: start; padding: 26px 30px 26px 22px; }
  .vp-card__top { grid-area: top; padding-top: 6px; }
  .vp-art { grid-area: art; margin: 0; align-self: center; }
  .vp-card__claim { grid-area: claim; margin: 14px 0 6px; }
  .vp-card__out { grid-area: out; margin: 0 0 18px; }
  .vp-card__ex { grid-area: ex; margin: 0; }
  .vp-close { grid-template-columns: 1fr; }
}
/* mobile: stacked again */
@media (max-width: 640px) {
  .vp-card { display: flex; align-items: stretch; padding: 24px 22px 22px; }
  .vp-card__top { padding-top: 0; }
  .vp-art { margin: 8px auto 12px; align-self: center; width: 100%; max-width: 320px; }
  .vp-card__claim { margin: 0 0 8px; }
  .vp-nb { display: inline; }
  .vp-day__row { grid-template-columns: 1fr; gap: 6px; }
  .vp-day__axis { margin-left: 0; }
}
.vp-gloss { font-size: .82em; }
@media (min-width: 961px) { .vp-card__claim { min-height: 2.7em; } }

/* testimonials on the homepage */
.quotes-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 16px; }
.quotes-grid__side { display: grid; gap: 16px; min-width: 0; }
@media (max-width: 900px) { .quotes-grid { grid-template-columns: minmax(0, 1fr); } }

/* robustness: grid children may shrink, long German compounds may hyphenate on small screens */
.split > *, .grid > *, .persona > *, .hero__grid > *, .compare > *, .pricing > *, .footer__grid > * { min-width: 0; }
@media (max-width: 600px) {
  h1, h2, h3, h4 { overflow-wrap: break-word; hyphens: auto; }
  .lead { overflow-wrap: break-word; }
}
@media (max-width: 380px) { .tabs__list { max-width: 100%; } }

/* =========================================================
   USP: von, mit und für Genossenschaften (.vmf-)
   ========================================================= */
.vmf { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.vmf__head { position: sticky; top: 110px; }
.vmf__head h2 { text-wrap: balance; }
.vmf__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.vmf__row { display: grid; grid-template-columns: 5.2rem minmax(0, 1fr); gap: clamp(16px, 3vw, 36px); padding: 28px 0; border-bottom: 1px solid var(--line-strong); align-items: baseline; }
.vmf__word { font-size: clamp(2rem, 3.4vw, 2.75rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: var(--accent); }
.vmf__row h3 { font-size: var(--fs-h4); margin: 0 0 8px; }
.vmf__row p { margin: 0; color: var(--ink-2); text-wrap: pretty; }
@media (max-width: 900px) { .vmf { grid-template-columns: 1fr; } .vmf__head { position: static; } }
@media (max-width: 520px) { .vmf__row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; } }

/* =========================================================
   White label showcase: one platform, five store listings (.wl-)
   ========================================================= */
.wl { --app-c: #df4d5a; --app-t: #fbe6e8; --wl-dur: 4200ms; }
.wl__bar { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; }
.wl__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.wl__tab { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 16px 0 8px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink-2); font-weight: 500; font-size: .9375rem; transition: border-color .25s, color .25s, box-shadow .25s; }
.wl__tab img { width: 28px; height: 28px; border-radius: 8px; box-shadow: 0 0 0 1px rgba(27,33,30,.08); }
.wl__tab:hover { border-color: var(--ink); color: var(--ink); }
.wl__tab[aria-selected="true"] { border-color: var(--app-c); color: var(--ink); box-shadow: 0 0 0 1px var(--app-c); }
.wl__tab::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--app-c); transform: scaleX(0); transform-origin: left; }
.wl.is-playing .wl__tab[aria-selected="true"]::after { animation: wl-progress var(--wl-dur) linear forwards; }
.wl.is-held .wl__tab[aria-selected="true"]::after { animation-play-state: paused; }
@keyframes wl-progress { to { transform: scaleX(1); } }
.wl__pause { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface); display: grid; place-items: center; color: var(--ink); }
.wl__pause:hover { border-color: var(--ink); }
.wl__pause-ic { width: 12px; height: 14px; border-left: 4px solid currentColor; border-right: 4px solid currentColor; }
.wl__pause[aria-pressed="true"] .wl__pause-ic { width: 0; height: 0; border: 0; border-left: 12px solid currentColor; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }

.wl__stage { position: relative; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; isolation: isolate; }
.wl__stage::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 90% at 12% 0%, var(--app-t), transparent 62%), radial-gradient(60% 80% at 100% 100%, var(--app-t), transparent 60%); transition: background .8s var(--ease); }
.wl__chrome { display: flex; align-items: center; gap: 6px; height: 40px; padding: 0 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.7); font-size: .8125rem; color: var(--muted); }
.wl__chrome i { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-3); }
.wl__chrome span { margin-left: 10px; }

.wl__apps { display: grid; }
.wl__app { grid-area: 1 / 1; display: grid; grid-template-columns: minmax(0, 330px) minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); padding: clamp(22px, 3.4vw, 44px); padding-bottom: 0; align-items: start; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility 0s linear .35s; }
.wl__app.is-active { opacity: 1; visibility: visible; transition: opacity .5s ease, visibility 0s; }

.wl__id { display: grid; gap: 22px; padding-bottom: clamp(22px, 3.4vw, 44px); }
.wl__icon { width: clamp(96px, 12vw, 148px); height: auto; aspect-ratio: 1; border-radius: 22.4%; box-shadow: 0 0 0 1px rgba(27,33,30,.08), 0 14px 34px rgba(27,33,30,.16); }
.wl__name { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 6px; color: var(--ink); }
.wl__dev { margin: 0; font-size: 1.0625rem; color: var(--app-c); font-weight: 500; transition: color .6s; }
.wl__coop { margin: 4px 0 0; color: var(--muted); font-size: .9375rem; }
.wl__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 0; padding: 0; }
.wl__facts li { height: 28px; padding: 0 11px; display: inline-flex; align-items: center; border-radius: var(--r-pill); background: rgba(27,33,30,.06); font-size: .8125rem; color: var(--ink-2); }
.wl__store { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; height: 44px; padding: 0 18px; border-radius: var(--r-pill); border: 1px solid var(--app-c); color: var(--ink); font-weight: 500; font-size: .9375rem; transition: background .2s, color .2s; }
.wl__store svg { width: 16px; height: 16px; }
.wl__store:hover { background: var(--app-c); color: #fff; }

.wl__shots { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-self: end; max-height: 430px; overflow: hidden; -webkit-mask-image: linear-gradient(#000 78%, transparent); mask-image: linear-gradient(#000 78%, transparent); }
.wl__shots li { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); }
.wl__shots img { width: 100%; height: auto; display: block; }

/* the morph: incoming parts arrive staggered */
@media (prefers-reduced-motion: no-preference) {
  .wl__app .wl__icon { transform: scale(.82) rotate(-6deg); filter: blur(6px); transition: transform .7s var(--ease), filter .5s ease; }
  .wl__app .wl__name, .wl__app .wl__dev, .wl__app .wl__coop, .wl__app .wl__facts, .wl__app .wl__store { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .6s var(--ease); }
  .wl__app .wl__shots li { opacity: 0; transform: translateY(26px) scale(.97); transition: opacity .5s ease, transform .7s var(--ease); }
  .wl__app.is-active .wl__icon { transform: none; filter: none; }
  .wl__app.is-active .wl__name, .wl__app.is-active .wl__dev, .wl__app.is-active .wl__coop, .wl__app.is-active .wl__facts, .wl__app.is-active .wl__store { opacity: 1; transform: none; }
  .wl__app.is-active .wl__name { transition-delay: .08s; }
  .wl__app.is-active .wl__dev { transition-delay: .14s; }
  .wl__app.is-active .wl__coop { transition-delay: .18s; }
  .wl__app.is-active .wl__facts { transition-delay: .24s; }
  .wl__app.is-active .wl__store { transition-delay: .3s; }
  .wl__app.is-active .wl__shots li { opacity: 1; transform: none; transition-delay: calc(.12s + var(--n) * .07s); }
}

@media (max-width: 900px) {
  .wl__app { grid-template-columns: 1fr; }
  .wl__id { grid-template-columns: auto minmax(0, 1fr); align-items: start; padding-bottom: 0; }
  .wl__shots { max-height: 360px; }
}
@media (max-width: 600px) {
  .wl__bar { align-items: flex-start; }
  .wl__tab { height: 40px; padding: 0 12px 0 6px; font-size: .875rem; }
  .wl__tab img { width: 26px; height: 26px; }
  .wl__id { gap: 16px; }
  .wl__shots { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: 330px; }
  .wl__shots li:nth-child(n+3) { display: none; }
  .wl__chrome span { display: none; }
}

/* showcase: larger screenshots, cut off at the bottom and the right like a store carousel */
@media (min-width: 901px) { .wl__app { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); } }
.wl__shots { display: flex; gap: 14px; grid-template-columns: none; align-self: stretch; max-height: 400px;
  -webkit-mask-image: linear-gradient(#000 80%, transparent), linear-gradient(90deg, #000 86%, transparent); -webkit-mask-composite: source-in;
  mask-image: linear-gradient(#000 80%, transparent), linear-gradient(90deg, #000 86%, transparent); mask-composite: intersect; }
.wl__shots li { flex: 0 0 clamp(170px, 17.5vw, 224px); align-self: flex-start; }
.wl__store { white-space: nowrap; }
@media (max-width: 900px) { .wl__shots { max-height: 360px; } .wl__shots li { flex-basis: clamp(150px, 26vw, 210px); } }
@media (max-width: 600px) {
  .wl__shots { display: flex; max-height: 320px; }
  .wl__shots li, .wl__shots li:nth-child(n+3) { display: block; flex-basis: 46%; }
  .wl__store { height: 40px; padding: 0 14px; font-size: .875rem; }
  .wl__name { font-size: 1.6rem; }
}

/* showcase: review fixes (contrast, colour fade, small screens, stable screenshot row) */
@property --app-c { syntax: "<color>"; inherits: true; initial-value: #df4d5a; }
@property --app-t { syntax: "<color>"; inherits: true; initial-value: #fbe6e8; }
.wl { --app-ct: color-mix(in srgb, var(--app-c) 62%, #1b211e); transition: --app-t .8s var(--ease), --app-c .6s ease; }
.wl__dev { color: var(--app-ct); }
.wl__store:hover { background: var(--app-ct); border-color: var(--app-ct); color: #fff; }
.wl__tab[aria-selected="true"] { border-color: color-mix(in srgb, var(--app-c) 62%, #1b211e); box-shadow: 0 0 0 1px color-mix(in srgb, var(--app-c) 62%, #1b211e); }
.wl__pause.is-paused .wl__pause-ic { width: 0; height: 0; border: 0; border-left: 12px solid currentColor; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }
@media (max-width: 900px) { .wl__app { grid-template-rows: 1fr auto; } .wl__shots { align-self: end; } }
@media (max-width: 420px) {
  .wl__id { grid-template-columns: 72px minmax(0, 1fr); gap: 14px; }
  .wl__icon { width: 72px; }
  .wl__dev, .wl__coop { overflow-wrap: anywhere; hyphens: auto; }
  .wl__store { white-space: normal; height: auto; min-height: 40px; padding: 8px 14px; line-height: 1.25; }
}

/* contact form: optional question and conditional field */
.field--set { border: 0; padding: 0; margin: 0; min-width: 0; }
.field--set legend { padding: 0; font-size: .875rem; font-weight: 500; margin-bottom: 6px; color: var(--ink-2); }
.form__opt { font-weight: 400; color: var(--muted); margin-left: 6px; }
.field--reveal:not([hidden]) { animation: fadeUp .35s var(--ease); }
.choice input:focus-visible + div { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 6px; }

/* contact form: errors, status, thank-you */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field__error { margin: 6px 0 0; font-size: .8125rem; color: #a3282f; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #a3282f; box-shadow: 0 0 0 3px rgba(163, 40, 47, .12); }
.field--check { flex-wrap: wrap; }
.field--check + .field__error { margin: -8px 0 0 30px; }
.form__thanks [data-copy-to] { overflow-wrap: anywhere; }
.form__status { margin: 0; padding: 12px 16px; border-radius: 12px; background: var(--accent-tint); color: #7d1f26; font-size: .9375rem; }
.form__status a { text-decoration: underline; font-weight: 500; }
.btn[aria-busy="true"] { opacity: .7; cursor: progress; }
.form__thanks { padding: clamp(12px, 3vw, 32px) 0; outline: none; animation: fadeUp .45s var(--ease); }
.form__thanks h2 { font-size: var(--fs-h3); margin-bottom: 10px; }
.form__thanks .lead { margin-bottom: 12px; max-width: 46ch; }
[hidden] { display: none !important; }
.field--check > span { flex: 1 1 0; min-width: 0; }

/* stats: five cells, dark variant (Panter in Zahlen) */
.stats--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.stats--dark { background: rgba(255,255,255,.1); border-color: transparent; }
.stats--dark .stat { background: var(--ink); }
.stats--dark .stat__num { color: #fff; }
.stats--dark .stat__num .unit { color: #f0a5a9; }
.stats--dark .stat__label { color: rgba(255,255,255,.66); }
@media (max-width: 960px) { .stats--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .stats--5 .stat:nth-child(4) { grid-column: 1 / 3; } }
@media (max-width: 600px) { .stats--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .stats--5 .stat:nth-child(4) { grid-column: auto; } .stats--5 .stat:last-child { grid-column: 1 / -1; } }

/* long first-person quote on success story pages */
.quote-long { margin: 0 0 8px; padding: 0 0 0 22px; border-left: 3px solid var(--accent-soft); }
.quote-long p { font-size: 1.125rem; line-height: 1.55; color: var(--ink-2); }
.quote-long p:first-child::before { content: "\201C"; color: var(--accent); font-weight: 600; margin-right: 2px; }
.quote-long p:last-child::after { content: "\201D"; color: var(--accent); font-weight: 600; margin-left: 2px; }
a.card:hover .link { gap: 10px; }

/* ---------- hero: phone + two cards cover the three value proposition pillars ---------- */
.hero-tag { position: absolute; top: -12px; left: 14px; z-index: 3; height: 24px; padding: 0 10px; border-radius: var(--r-pill); display: inline-flex; align-items: center; font-size: .6875rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #fff; white-space: nowrap; box-shadow: var(--shadow-sm); }
.hero-tag--green { background: var(--green); }
.hero-tag--warm { background: #b8651a; }
.hero-tag--accent { background: var(--accent); }
.hero__phone .hero-tag { left: 50%; transform: translateX(-50%); }
.hero-card { position: absolute; width: 256px; background: var(--surface); border-radius: var(--r-md); padding: 18px 16px 14px; box-shadow: var(--shadow-md); font-size: .8125rem; line-height: 1.3; animation: float 6s ease-in-out infinite; }
.hero-card--tr { top: 5%; right: -7%; animation-delay: -2s; }
.hero-card--mr { top: 52%; right: -10%; animation-delay: -4s; }
.hero-card__title { font-weight: 600; font-size: .9375rem; color: var(--ink); }
.hero-card__sub { color: var(--muted); margin-top: 2px; }
.hero-card__track { list-style: none; display: flex; gap: 4px; margin: 12px 0 10px; padding: 0; }
.hero-card__track li { flex: 1; font-size: .6875rem; color: var(--muted); position: relative; padding-top: 9px; }
.hero-card__track li::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 2px; background: var(--bg-3); }
.hero-card__track li.done { color: var(--ink-2); }
.hero-card__track li.done::before { background: var(--green); }
.hero-card__meta { display: flex; align-items: center; gap: 6px; color: var(--green); font-weight: 500; }
.hero-card__meta svg { width: 16px; height: 16px; }
.hero-card__people { display: flex; align-items: center; margin-top: 12px; }
.hero-card__people span { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-ink); font-size: .625rem; font-weight: 600; display: grid; place-items: center; margin-left: -8px; border: 2px solid #fff; }
.hero-card__people span:first-child { margin-left: 0; }
.hero-card__people em { font-style: normal; margin-left: 8px; color: var(--ink); font-weight: 500; }
.hero-card__poll { margin-top: 12px; display: grid; grid-template-columns: 1fr auto; gap: 6px 8px; align-items: center; font-size: .75rem; color: var(--ink-2); }
.hero-card__poll b { color: var(--accent-ink); font-weight: 600; }
.hero-card__poll i { grid-column: 1 / -1; display: block; height: 6px; border-radius: 3px; background: var(--accent-tint); position: relative; overflow: hidden; }
.hero-card__poll i::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: 3px; background: var(--accent); }
@media (prefers-reduced-motion: reduce) { .hero-card { animation: none; } }
@media (max-width: 960px) { .hero-card--tr { right: 2%; } .hero-card--mr { right: 0; top: 56%; } }
@media (max-width: 600px) {
  .hero__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
  .hero-card { position: static; width: auto; animation: none; padding: 16px 14px 12px; }
  .hero-card__title { font-size: .875rem; }
  .hero__phone .hero-tag { font-size: .625rem; height: 22px; }
}
@media (max-width: 420px) { .hero__cards { grid-template-columns: 1fr; } }
.hero__phone { bottom: 0; }
@media (max-width: 600px) {
  .hero-card { position: relative; }
  .hero__phone { bottom: 0; }
  h1 { hyphenate-limit-chars: 12 5 5; }
}
/* phones: photo on top, then the app mock and the two cards side by side, nothing overlaps */
@media (max-width: 600px) {
  .hero__visual { display: grid; grid-template-columns: minmax(0, 46%) minmax(0, 1fr); gap: 12px; align-items: start; }
  .hero__photo { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .hero__photo img { object-position: 50% 12%; }
  .hero__phone { position: relative; left: auto; bottom: auto; width: 100%; max-width: none; margin-top: 18px; padding: 6px; border-radius: 26px; }
  .hero__cards { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; align-content: start; }
}
@media (max-width: 420px) { .hero__cards { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .hero-card { top: auto; right: auto; } .hero__phone, .hero__cards { margin-top: 24px; } }

/* hero cards: compact, less text, the photo stays visible */
.hero-card { width: 212px; padding: 16px 14px 12px; }
.hero-card--tr { top: 15%; right: -9%; }
.hero-card--mr { top: 71%; right: -3%; }
.hero-card__track { margin: 10px 0 0; }
.hero-card__people span { width: 28px; height: 28px; margin-left: -5px; font-size: .625rem; letter-spacing: -.02em; }
.hero-card__people { margin-top: 10px; }
.hero__phone { width: 40%; max-width: 224px; left: -6%; }
@media (max-width: 960px) { .hero__phone { width: 34%; left: 3%; } }
@media (max-width: 600px) { .hero__phone { width: 100%; max-width: none; left: auto; } .hero-card { width: auto; } }

/* ---------- iPhone frame (2026 format, 402 x 874 pt, Dynamic Island) ---------- */
.iphone { container-type: inline-size; aspect-ratio: 775 / 1596; background: #1a1c1e; border-radius: 19% / 9.25%; padding: 0; position: relative; box-shadow: 0 0 0 1px #4a4d51 inset, 0 0 0 2.5px #0e0f10 inset, 0 0 0 1px rgba(0,0,0,.4), 0 24px 60px rgba(27,33,30,.28); }
.ip-screen { position: absolute; inset: 4.1cqw; container-type: inline-size; background: #f5f6f8; border-radius: 15cqw; overflow: hidden; display: flex; flex-direction: column; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #1b211e; font-size: 4.6cqw; line-height: 1.3; }
.ip-island { position: absolute; top: 3.1cqw; left: 50%; transform: translateX(-50%); width: 22.6cqw; height: 9cqw; border-radius: 99px; background: #111315; z-index: 3; }
.ip-status { display: flex; justify-content: space-between; align-items: center; padding: 4.4cqw 9cqw 0; font-weight: 600; font-size: 4.6cqw; height: 15cqw; }
.ip-status__icons { display: flex; align-items: center; gap: 1.5cqw; }
.ip-status__time { font-weight: 600; }
.ip-cell { width: 5cqw; height: 3cqw; display: block; }
.ip-wifi { width: 4.6cqw; height: 3.5cqw; display: block; }
.ip-batt { position: relative; display: inline-block; background: #1b211e; color: #fff; font-size: 2.9cqw; font-weight: 700; line-height: 1; padding: .75cqw 1.3cqw .7cqw; border-radius: 1.5cqw; margin-right: 1cqw; letter-spacing: -.02em; }
.ip-batt::after { content: ""; position: absolute; right: -1.1cqw; top: 50%; transform: translateY(-50%); width: .8cqw; height: 1.8cqw; background: #1b211e; opacity: .45; border-radius: 0 .5cqw .5cqw 0; }
.ip-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2cqw 5cqw 0; }
.ip-title { font-size: 7.2cqw; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.ip-filter { width: 6.4cqw; height: 6.4cqw; color: #1b211e; }
.ip-filter svg { width: 100%; height: 100%; }
.ip-post { margin: 3.2cqw 4cqw 0; background: #fff; border-radius: 4cqw; padding: 3.6cqw 3.8cqw 2.6cqw; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.ip-post--official { background: var(--accent-tint); box-shadow: inset 0 0 0 1px rgba(207,87,93,.22); }
.ip-post__head { display: flex; align-items: center; gap: 2.8cqw; font-size: 3.8cqw; color: #4a4f4c; }
.ip-post__head > div { flex: 1; min-width: 0; }
.ip-post__who { display: block; line-height: 1.25; }
.ip-post__head b { color: #1b211e; font-weight: 700; }
.ip-in { color: #4a4f4c; }
.ip-post__head small { display: block; font-size: 3.3cqw; color: #8a8f8c; margin-top: .7cqw; }
.ip-more { color: #8a8f8c; letter-spacing: .1em; align-self: flex-start; }
.ip-avatar { flex: none; width: 11.2cqw; height: 11.2cqw; border-radius: 50%; background: #e3e5e8; color: #1b211e; font-size: 3.8cqw; font-weight: 600; display: grid; place-items: center; }
.ip-avatar--photo, .ip-avatar--emblem { background: none; overflow: hidden; }
.ip-avatar--photo img, .ip-avatar--emblem svg { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ip-post__img { margin-top: 2.6cqw; border-radius: 3cqw; overflow: hidden; aspect-ratio: 16 / 9; background: #e3e5e8; }
.ip-post__img img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.ip-important { margin-top: 2.6cqw; }
.ip-tag { display: inline-block; padding: 1cqw 2.8cqw; border-radius: 99px; background: var(--accent); color: #fff; font-size: 3.1cqw; font-weight: 600; line-height: 1.2; }
.ip-post p { margin: 2.2cqw 0 0; font-size: 4cqw; line-height: 1.4; }
.ip-post__foot { display: flex; align-items: center; gap: 4cqw; margin-top: 2.8cqw; padding-top: 2.2cqw; border-top: 1px solid rgba(27,33,30,.08); font-size: 3.5cqw; color: #4a4f4c; }
.ip-post__foot span { display: inline-flex; align-items: center; gap: 1.2cqw; }
.ip-post__foot svg { width: 4.4cqw; height: 4.4cqw; }
.ip-post__pin { margin-left: auto; color: #8a8f8c; }
.ip-fab { position: absolute; right: 3.6cqw; bottom: 20.5cqw; width: 14cqw; height: 14cqw; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: 0 4px 12px rgba(27,33,30,.18); z-index: 2; }
.ip-fab svg { width: 6.6cqw; height: 6.6cqw; }
.ip-tabs { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-around; align-items: flex-start; padding: 2.2cqw 1cqw 5.2cqw; border-top: 1px solid #e3e5e8; background: #fff; font-size: 2.8cqw; color: #1b211e; }
.ip-tabs span { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.2cqw; width: 19.5cqw; text-align: center; line-height: 1.1; padding-top: .4cqw; }
.ip-tabs svg { width: 6.6cqw; height: 6.6cqw; }
.ip-tabs .on { color: var(--accent); font-weight: 500; }
.ip-tabs .on::before { content: ""; position: absolute; top: -2.6cqw; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 0 0 10px 10px; }
.ip-home { position: absolute; left: 0; right: 0; bottom: 0; height: 4cqw; z-index: 3; pointer-events: none; }
.ip-home::after { content: ""; position: absolute; left: 50%; bottom: 1.6cqw; transform: translateX(-50%); width: 34cqw; height: 1.3cqw; border-radius: 99px; background: #1b211e; }
.hero__phone.iphone { position: absolute; width: 43%; max-width: 244px; left: -6%; bottom: -8%; padding: 0; border-radius: 19% / 9.25%; overflow: visible; }
.hero__visual { margin-bottom: 8%; }
@media (max-width: 960px) { .hero__phone.iphone { width: 36%; left: 3%; } }
@media (max-width: 600px) { .hero__phone.iphone { position: relative; bottom: auto; width: 100%; max-width: none; left: auto; border-radius: 19% / 9.25%; padding: 0; } .hero__visual { margin-bottom: 0; } }
.ip-tabs span { width: 19.5cqw; font-size: 2.7cqw; letter-spacing: -.01em; }
.ip-screen { overflow: hidden; }

/* Sitemap */
.sitemap__list { list-style: none; padding: 0; margin: var(--gap-3) 0 0; }
.sitemap__list > li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap__list > li > a { font-weight: 600; }
.sitemap__list ul { list-style: none; padding: 6px 0 0 18px; margin: 0; }
.sitemap__list ul li { padding: 3px 0; font-size: var(--fs-small); }
.sitemap__note { color: var(--muted); font-size: var(--fs-small); margin-left: 6px; }

/* iPhone mock, static variant (Produktseite) */
.iphone--static { width: 100%; max-width: 250px; margin: 0 auto; }
.phones-row { align-items: start; margin-top: var(--gap-6); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.ip-header--sub { justify-content: center; position: relative; padding-top: 2.2cqw; }
.ip-header--sub .ip-title { font-size: 4.6cqw; font-weight: 600; }
.ip-back { position: absolute; left: 5cqw; top: 50%; transform: translateY(-40%); width: 6cqw; height: 6cqw; color: #1b211e; }
.ip-back svg { width: 100%; height: 100%; }
.ip-group { padding: 4.6cqw 5cqw 2cqw; font-size: 4.2cqw; font-weight: 700; }
.ip-list { margin: 0 4cqw; background: #fff; border-radius: 4cqw; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.ip-row { display: flex; align-items: center; gap: 3cqw; padding: 3.3cqw 4cqw; border-top: 1px solid #eceef0; font-size: 3.9cqw; }
.ip-row:first-child { border-top: 0; }
.ip-row svg { width: 5.2cqw; height: 5.2cqw; flex: none; color: #4a4f4c; }
.ip-row .ip-chev { margin-left: auto; width: 3.6cqw; height: 3.6cqw; color: #a0a4a2; }
.ip-chip { display: inline-block; margin-top: 2.2cqw; font-size: 3.1cqw; font-weight: 500; padding: .8cqw 2.4cqw; border-radius: 99px; background: #eef0f2; color: #4a4f4c; }
.ip-pill { display: inline-flex; align-items: center; gap: 1.6cqw; font-size: 3.2cqw; font-weight: 500; padding: 1cqw 2.6cqw; border-radius: 99px; background: var(--green-tint); color: var(--green); white-space: nowrap; }
.ip-pill::before { content: ""; width: 1.7cqw; height: 1.7cqw; border-radius: 50%; background: currentColor; flex: none; }
.ip-pill--warm { background: var(--warm-tint); color: #9a5d12; }
.ip-ticket__meta { font-size: 3.3cqw; color: #8a8f8c; }
.ip-ticket__meta b { color: #1b211e; font-weight: 600; }
.ip-ticket__title { font-size: 4cqw; font-weight: 600; margin: .8cqw 0 2cqw; }
.ip-ticket__note { margin-top: 2.4cqw; padding-top: 2.2cqw; border-top: 1px solid rgba(27,33,30,.08); font-size: 3.4cqw; color: #4a4f4c; line-height: 1.35; }
.ip-ticket__note b { color: #1b211e; font-weight: 600; }
.ip-btn { margin: 4cqw 4cqw 0; padding: 3.6cqw; border-radius: 3.5cqw; background: var(--accent); color: #fff; text-align: center; font-weight: 600; font-size: 4cqw; }

/* Connector overview (integrationen.html) */
.cn { padding: clamp(16px, 3vw, 36px); overflow: hidden; }
.cn__head { text-align: center; max-width: 760px; margin: 0 auto var(--gap-4); }
.cn__head h2 { margin-bottom: 8px; }
.cn-svg { width: 100%; height: auto; display: block; font-family: inherit; }
.cn-col { font-size: 15px; font-weight: 700; letter-spacing: .12em; fill: var(--accent); }
.cn-cat { font-size: 12px; font-weight: 600; letter-spacing: .1em; fill: var(--muted); }
.cn-tile__bg { fill: #fff; stroke: var(--line); stroke-width: 1; filter: drop-shadow(0 6px 14px rgba(27,33,30,.08)); transition: filter .25s; }
.cn-mono { font-size: 15px; font-weight: 700; text-anchor: middle; }
.cn-name { font-size: 18px; font-weight: 600; fill: var(--ink); }
.cn-sub { font-size: 13.5px; fill: var(--muted); }
.cn-bidi { font-size: 13px; font-weight: 700; text-anchor: middle; }
.cn-hub { fill: #fff; stroke: var(--line); filter: drop-shadow(0 10px 30px rgba(207,87,93,.22)); }
.cn-hublabel { font-size: 11px; font-weight: 700; letter-spacing: .12em; fill: var(--muted); }
.cn-pulse { fill: none; stroke: var(--accent); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; }
.cn-ribbon { transition: opacity .25s, filter .25s; }
.cn-ribbon.is-hot { filter: saturate(1.6) brightness(.92); }
.cn-tile { cursor: default; outline: none; transform-box: fill-box; transform-origin: center; transition: transform .25s; }
.cn-tile:hover, .cn-tile:focus-visible, .cn-tile.is-hot { transform: translateY(-3px); }
.cn-tile:hover .cn-tile__bg, .cn-tile:focus-visible .cn-tile__bg, .cn-tile.is-hot .cn-tile__bg { stroke: var(--accent-soft); filter: drop-shadow(0 12px 22px rgba(27,33,30,.14)); }
.cn-dot { offset-distance: 0%; opacity: 0; }
.cn-dot.is-hot { r: 6.5; }
@supports (offset-path: path("M0 0 L1 1")) {
  @media (prefers-reduced-motion: no-preference) {
    .cn-dot { animation: cn-travel 4.2s linear infinite; }
    .cn-dot--back { animation-direction: reverse; animation-duration: 5s; }
    .cn-pulse { animation: cn-pulse 3.2s ease-out infinite; }
    .cn-tile { animation: cn-in .7s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--i, 0) * 90ms + 150ms); }
    .cn-ribbon { animation: cn-fade .9s ease-out both; animation-delay: calc(var(--i, 0) * 90ms + 350ms); }
  }
}
@keyframes cn-travel { 0% { offset-distance: 0%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes cn-pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.32); opacity: 0; } }
@keyframes cn-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes cn-fade { from { opacity: 0; } to { opacity: 1; } }
.cn-chips { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin-top: var(--gap-4); padding-top: var(--gap-4); border-top: 1px solid var(--line); }
.cn-chips .cn-chip { flex: 1 1 140px; }
.cn-chips__label { align-self: center; }
.cn-chips__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.cn-chip { display: inline-flex; flex-direction: column; justify-content: center; gap: 1px; padding: 10px 16px; border-radius: 12px; background: var(--accent-tint); border: 1px solid rgba(207,87,93,.15); font-size: 14px; }
.cn-chip b { font-weight: 600; color: var(--ink); }
.cn-chip small { font-size: 12px; color: var(--muted); }
.cn__legend { margin: var(--gap-3) 0 0; font-size: var(--fs-small); color: var(--muted); display: flex; align-items: center; gap: 8px; }
.cn__legend-mark { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-weight: 700; font-size: 13px; }
.cn-m { display: none; }
@media (max-width: 700px) {
  .cn-svg { display: none; }
  .cn-m { display: grid; gap: 18px; }
  .cn-m h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
  .cn-m ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .cn-m li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
  .cn-m li b { display: block; font-weight: 600; } .cn-m li small { display: block; color: var(--muted); font-size: 12px; }
  .cn-m__mono { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
  .cn-m__bidi { margin-left: auto; color: var(--accent); font-weight: 700; }
  .cn-m__hub { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .cn-m__hub img { height: 28px; width: auto; }
}
.cn__missing { margin-top: var(--gap-3); padding-top: var(--gap-3); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cn__missing p { margin: 0; }

/* Featured success story (referenzen.html) */
.story-feature { display: grid; grid-template-columns: 1.1fr 1fr; padding: 0; overflow: hidden; color: inherit; text-decoration: none; }
.story-feature__img { min-height: 320px; background: #e4e3e1; }
.story-feature__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-feature__body { padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 760px) { .story-feature { grid-template-columns: 1fr; } .story-feature__img { min-height: 0; aspect-ratio: 16 / 9; } }
.cta p.cta__p--wide { max-width: 68ch; }

/* Landing page Kommunikation */
.hero.lp-hero h1.lp-hero__title { max-width: none; font-size: clamp(2.25rem, 4.2vw, 3.5rem); }
.stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 700px) { .stats--3 { grid-template-columns: 1fr; } }
.lp-hero__phone { display: flex; justify-content: center; }
.lp-hero__phone .iphone--static { max-width: 300px; }
@media (max-width: 900px) { .lp-hero__phone { margin-top: var(--gap-6); } .lp-hero__phone .iphone--static { max-width: 260px; } }

/* ---------- mobile hero, consolidated (overrides the layered rules above) ---------- */
@media (max-width: 600px) {
  .hero { padding-top: clamp(28px, 6vw, 40px); }
  .hero h1 { hyphens: manual; font-size: clamp(2rem, 8.6vw, 2.4rem); max-width: none; }
  .hero .lead { margin-bottom: var(--gap-4); }
  .hero__proof { margin-top: var(--gap-4); }
  .hero__visual { display: grid; grid-template-columns: 54% minmax(0, 1fr); gap: 14px; align-items: start; margin-top: var(--gap-5); margin-bottom: 0; }
  .hero__photo { grid-column: 1 / -1; aspect-ratio: 4 / 3; margin: 0; }
  .hero__photo img { object-position: 50% 12%; }
  .hero__phone.iphone { grid-column: 1; grid-row: 2; position: relative; left: auto; bottom: auto; width: 100%; max-width: none; margin-top: -30%; z-index: 1; }
  .hero__cards { grid-column: 2; grid-row: 2; display: grid; grid-template-columns: 1fr; gap: 18px; margin: 6px 0 0 -30%; align-content: start; position: relative; z-index: 2; }
  .hero-card, .hero-card--tr, .hero-card--mr { position: relative; top: auto; right: auto; left: auto; width: auto; animation: none; padding: 12px 12px 10px; font-size: .75rem; box-shadow: var(--shadow-lg); }
  .hero-card__title { font-size: .8125rem; }
  .hero-card__track { gap: 3px; }
  .hero-card__track li { font-size: .625rem; }
  .hero-card__people span { width: 24px; height: 24px; font-size: .5625rem; }
  .hero-card__people em { margin-left: 6px; font-size: .75rem; }
  .hero__phone .hero-tag { font-size: .5625rem; height: 20px; padding: 0 8px; }
}

/* ---------- mobile typography and stats ---------- */
@media (max-width: 600px) {
  h1, h2, h3, h4 { hyphenate-limit-chars: 17 7 6; -webkit-hyphenate-limit-before: 7; -webkit-hyphenate-limit-after: 6; -webkit-hyphenate-limit-chars: 17 7 6; }
  h2 { font-size: clamp(1.75rem, 7.4vw, 2rem); }
  .cta h2 { max-width: none; hyphens: manual; }
  .stats, .stats--3, .stats--5 { grid-template-columns: 1fr; }
  .stats--5 .stat:nth-child(4), .stats--5 .stat:last-child { grid-column: auto; }
  .stat { display: flex; align-items: baseline; gap: 14px; padding: 16px 20px; hyphens: manual; overflow-wrap: normal; }
  .stat__num { flex: none; min-width: 6.6ch; margin-bottom: 0; font-size: 1.75rem; }
  .stat__label { font-size: .875rem; line-height: 1.3; }
  .tabs__btn { font-size: .8125rem; padding: 0 10px; }
}

/* ---------- mobile: tables as cards, phones as a swipe row, tighter sections ---------- */
@media (max-width: 600px) {
  :root { --section: clamp(56px, 12vw, 72px); --section-sm: clamp(40px, 9vw, 52px); }
  .table-wrap.card { border: 0; background: transparent; box-shadow: none; }
  .table thead { display: none; }
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table tr { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 6px 16px; margin-bottom: 12px; }
  .table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .table td:last-child { border-bottom: 0; }
  .table td::before { content: attr(data-label); display: block; font-size: .6875rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
  .table td[data-label="System"] { font-size: 1.0625rem; }
  .table td[data-label="System"]::before { display: none; }
  .phones-row { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 16px 20px; margin: var(--gap-4) -16px 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .phones-row::-webkit-scrollbar { display: none; }
  .phones-row > * { flex: 0 0 70%; scroll-snap-align: center; }
  .phones-row .iphone--static { max-width: none; }
  .cn-m__hub { padding: 12px; }
  .cn-m__hub img { height: 26px; }
}

/* Connector overview on phones: static screenshot, opens full size */
.cn-shot { display: none; }
@media (max-width: 700px) {
  .cn-m { display: none; }
  .cn-shot { display: block; position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; }
  .cn-shot img { display: block; width: 100%; height: auto; }
  .cn-shot__hint { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(27,33,30,.82); color: #fff; font-size: .75rem; font-weight: 500; }
  .cn-shot__hint svg { width: 14px; height: 14px; }
}
