  /* ============ SNASH Consulting — Redesign v2, 2026-07 ============
     Nah an der aktuellen Webseite: Weiß + Luft, warmes Beige, Koralle als
     Mikro-Akzent, schwarze Pill-Buttons, Video-Hero, Inter. */
  @font-face { font-family: "Inter Var"; src: url("/assets/fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
  @font-face { font-family: "Inter Var"; src: url("/assets/fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
  @font-face { font-family: "Inter Var"; src: url("/assets/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
  @font-face { font-family: "Inter Var"; src: url("/assets/fonts/inter-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
  @font-face { font-family: "Inter Var"; src: url("/assets/fonts/inter-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }
  :root {
    --ink: #1B1B1B;
    --ink-soft: #4B4B4B;
    --paper: #FFFFFF;
    --warm: #F5F4F1;
    --warm-2: #ECEAE5;
    --line: #E6E4DF;
    --coral: #FE7966;        /* Grafik-Akzent (Linien, Sterne, Punkte) */
    --coral-text: #C7442B;   /* Text-Akzent, AA auf Weiß */
    --green: #1E8A4C;
    --font: "Inter Var", "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
    --content: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
    --sec-y: clamp(84px, 10vw, 160px);
    --ease-out: cubic-bezier(.165, .84, .44, 1);
    --ease-soft: cubic-bezier(.22, 1, .36, 1);
    --z-nav: 40; --z-skip: 50;
    --r-card: 18px; --r-big: 28px;
    --shadow-soft: 0 24px 60px -32px rgba(20, 18, 12, .22);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  ::selection { background: var(--coral); color: #fff; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  :focus-visible { outline: 3px solid var(--coral-text); outline-offset: 3px; border-radius: 4px; }

  .wrap { max-width: var(--content); margin-inline: auto; padding-inline: var(--gutter); }

  /* ---------- Typografie (Inter, wie die Live-Seite) ---------- */
  .display {
    font-weight: 600;
    font-size: clamp(2.5rem, 5.4vw, 4.4rem);
    line-height: 1.06;
    letter-spacing: -0.028em;
    text-wrap: balance;
  }
  .h2 {
    font-weight: 600;
    font-size: clamp(1.85rem, 3.4vw, 2.9rem);
    line-height: 1.12;
    letter-spacing: -0.022em;
    text-wrap: balance;
  }
  .h3 { font-weight: 600; font-size: 1.3rem; line-height: 1.25; letter-spacing: -0.012em; }
  .lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--ink-soft); max-width: 62ch; text-wrap: pretty; }
  .kicker {
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-text);
  }

  /* ---------- Buttons (Pill-Sprache der Live-Seite) ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    min-height: 52px; padding: 14px 30px;
    border-radius: 999px; border: 0;
    font: inherit; font-weight: 500; font-size: 1rem;
    text-decoration: none; cursor: pointer;
    transition: transform .45s var(--ease-soft), background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .btn svg { flex: none; transition: transform .35s var(--ease-soft); }
  .btn:hover svg { transform: translateX(4px); }
  .btn-ink { background: #161616; color: #fff; }
  .btn-ink:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .45); }
  .btn-white { background: #fff; color: var(--ink); box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .4); }
  .btn-white:hover { transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid #CFCCC5; }
  .btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
  .btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); }
  .btn-ghost-light:hover { border-color: #fff; transform: translateY(-2px); }

  .skip-link { position: fixed; left: 16px; top: -60px; z-index: var(--z-skip); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 8px; transition: top .2s; }
  .skip-link:focus { top: 16px; }

  /* ---------- Nav ---------- */
  .nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); color: #fff; transition: background .35s ease, box-shadow .35s ease, color .35s ease; }
  .nav-inner { display: flex; align-items: center; gap: 28px; max-width: var(--content); margin-inline: auto; padding: 18px var(--gutter); }
  .nav.scrolled { background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
  .nav .brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; margin-right: auto; }
  .brand-mark { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
  .brand-sub { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; opacity: .8; }
  .nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
  .nav-links > li { display: flex; align-items: center; }
  .nav-links a { text-decoration: none; font-weight: 500; font-size: .95rem; opacity: .92; padding: 10px 2px; }
  .nav-links a:hover { opacity: 1; }
  .nav .btn-cta { min-height: 44px; padding: 10px 24px; font-size: .92rem; background: #fff; color: var(--ink); }
  .nav.scrolled .btn-cta { background: #161616; color: #fff; }
  /* ---- Nav-Dropdowns (Gruppen-Menüs: Leistungen ▾ / Über uns ▾) ---- */
  .nav-item { position: relative; display: flex; align-items: center; }
  .nav-links .nav-trigger { font: inherit; font-weight: 500; font-size: .95rem; color: inherit; background: none; border: 0; cursor: pointer; padding: 10px 2px; display: inline-flex; align-items: center; gap: 6px; opacity: .92; line-height: 1; }
  .nav-links .nav-trigger:hover { opacity: 1; }
  .nav-caret { transition: transform .25s var(--ease-soft); opacity: .65; }
  .nav-item:hover .nav-caret, .nav-item.open .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
  .nav-item.has-menu::after { content: ""; position: absolute; top: 100%; left: -8px; right: -8px; height: 16px; }
  .nav-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 218px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 54px -22px rgba(20, 18, 12, .34); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s var(--ease-out), transform .22s var(--ease-out), visibility .22s; z-index: 5; }
  .nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu, .nav-item.open .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .nav-menu a { display: block; padding: 10px 14px; border-radius: 9px; font-size: .92rem; font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap; opacity: 1; transition: background .18s ease, color .18s ease; }
  .nav-menu a:hover, .nav-menu a:focus-visible { background: var(--warm); color: var(--coral-text); outline: none; }
  .nav-menu a[aria-current="page"] { color: var(--coral-text); }
  .nav-links > li > a[aria-current="page"], .nav-item.is-active > .nav-trigger { color: var(--coral-text); opacity: 1; }
  @media (max-width: 1280px) and (min-width: 901px) { .nav-links .nav-trigger { font-size: .86rem; } }
  @media (max-width: 900px) { .nav-links { display: none; } }

  /* ---------- Hero: Video wie die Live-Seite ---------- */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: clip; }
  .hero video, .hero .poster-fallback {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(200deg, rgba(10, 10, 10, 0) 30%, rgba(10, 10, 10, .55) 78%),
                linear-gradient(0deg, rgba(10, 10, 10, .35), rgba(10, 10, 10, .12) 40%);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--content); margin-inline: auto; padding: 140px var(--gutter) clamp(56px, 9vh, 104px); }
  .hero-eyebrow { display: inline-block; font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); border-radius: 999px; padding: 9px 18px; margin-bottom: 22px; }
  .hero h1 { max-width: 14ch; font-weight: 600; font-size: clamp(2.7rem, 5.8vw, 4.9rem); line-height: 1.04; letter-spacing: -0.028em; text-wrap: balance; }
  .hero .lead { color: rgba(255, 255, 255, .85); margin-top: 22px; max-width: 52ch; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
  .hero-proofline { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .28); color: rgba(255, 255, 255, .88); font-size: .92rem; }
  .hero-proofline b { font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
  .hero-proofline .stars { color: var(--coral); letter-spacing: 2px; }

  /* ---------- Logo-Marquee ---------- */
  .trust { padding-block: clamp(40px, 6vw, 68px); border-bottom: 1px solid var(--line); }
  .trust-label { text-align: center; color: #8A877F; margin-bottom: 26px; font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
  .marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .marquee-track { display: flex; gap: clamp(48px, 6vw, 88px); width: max-content; align-items: center; animation: marquee 36s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(-50%); } }
  .lg { display: flex; align-items: center; gap: 8px; color: #9A968E; filter: grayscale(1); opacity: .8; white-space: nowrap; }
  .lg svg, .lg img { height: 25px; width: auto; }
  .lg .wordmark { font-weight: 700; font-size: 1.02rem; letter-spacing: 0; }
  .lg .wordmark.serifish { font-weight: 460; font-style: italic; }

  .sec { padding-block: var(--sec-y); }
  .sec-head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(36px, 5vw, 72px); }
  .sec-head .kicker { margin-bottom: 16px; }
  @media (max-width: 900px) { .sec-head { grid-template-columns: 1fr; } }

  /* ---------- Scroll-Stop 1: Zahlen (hell, wie Live-Grammatik) ---------- */
  .stats-scene { position: relative; background: var(--paper); }
  .stats-pin-space { height: 320vh; position: relative; }
  .stats-sticky { position: sticky; top: 0; height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: clip; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); margin-top: clamp(40px, 6vh, 72px); }
  .stat { opacity: .16; transform: translateY(22px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); border-top: 1px solid var(--line); padding-top: 22px; }
  .stat.on { opacity: 1; transform: none; }
  .stat-kicker { font-weight: 600; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-text); }
  .stat-num {
    font-weight: 600;
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    display: flex; align-items: baseline; white-space: nowrap;
    margin-top: 14px;
  }
  .stat-num .suffix { color: var(--coral-text); margin-left: 2px; font-size: .55em; font-weight: 600; }
  .stat-label { margin-top: 12px; color: var(--ink-soft); font-size: .95rem; max-width: 26ch; text-wrap: pretty; }
  .stats-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--line); }
  .stats-progress i { display: block; height: 100%; width: 0; background: var(--coral); }
  @media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ---------- Scroll-Stop 2: Lösungen (helle Karten) ---------- */
  .sol-scene { background: var(--warm); }
  .sol-pin-space { height: 440vh; position: relative; }
  .sol-sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; overflow: clip; }
  .sol-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); align-items: center; width: 100%; }
  .sol-count { font-weight: 700; font-size: .92rem; color: var(--coral-text); font-variant-numeric: tabular-nums; letter-spacing: .1em; }
  .sol-left .h2 { margin-top: 14px; }
  .sol-left .lead { margin-top: 18px; }
  .sol-stack { position: relative; min-height: min(430px, 58svh); }
  .sol-card {
    position: absolute; inset: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-big);
    box-shadow: var(--shadow-soft);
    padding: clamp(28px, 3.4vw, 52px);
    display: flex; flex-direction: column; justify-content: space-between;
    opacity: 0; transform: translateY(52px) scale(.97);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
    pointer-events: none;
  }
  .sol-card.active { opacity: 1; transform: none; pointer-events: auto; z-index: 2; }
  .sol-card.passed { opacity: 0; transform: translateY(-32px) scale(.98); }
  .sol-card .tag { font-weight: 600; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-text); margin-bottom: 16px; }
  .sol-card .h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); font-weight: 600; letter-spacing: -0.018em; }
  .sol-card p { margin-top: 14px; max-width: 52ch; font-size: 1.05rem; color: var(--ink-soft); }
  .sol-for { font-size: .85rem; font-weight: 500; color: var(--ink); margin-top: 24px; display: flex; align-items: center; gap: 10px; }
  .sol-for::before { content: ""; width: 22px; height: 2px; background: var(--coral); }
  .sol-dots { display: flex; gap: 8px; margin-top: 26px; }
  .sol-dots i { width: 34px; height: 3px; border-radius: 2px; background: #DDDAD3; transition: background .3s; }
  .sol-dots i.on { background: var(--coral); }
  @media (max-width: 900px) {
    .sol-grid { grid-template-columns: 1fr; align-content: center; gap: 24px; }
    .sol-left .lead { display: none; }
    .sol-stack { min-height: 48svh; }
  }

  /* ---------- Philosophie: Beige-Karte wie Live ---------- */
  .philo .card { background: var(--warm); border-radius: var(--r-big); padding: clamp(32px, 5vw, 80px); }
  .philo-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(28px, 4vw, 72px); }
  .philo-steps { display: grid; gap: 0; counter-reset: philo; align-content: center; }
  .philo-step { position: relative; padding: 22px 0 22px 58px; border-top: 1px solid var(--warm-2); }
  .philo-step:first-child { border-top: 0; }
  .philo-step::before { counter-increment: philo; content: counter(philo); position: absolute; left: 0; top: 20px; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-weight: 700; font-size: .9rem; color: var(--coral-text); }
  .philo-step h3 { font-size: 1.15rem; font-weight: 600; }
  .philo-step p { margin-top: 6px; color: var(--ink-soft); font-size: .98rem; text-wrap: pretty; }
  .philo-punch { margin-top: clamp(28px, 4vw, 48px); display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; justify-content: space-between; }
  .philo-punch .h3 { max-width: 44ch; font-weight: 600; }
  .philo-punch .h3 em { font-style: normal; color: var(--coral-text); }
  @media (max-width: 900px) { .philo-grid { grid-template-columns: 1fr; } }

  /* ---------- Sascha ---------- */
  .sascha-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); }
  .sascha-sticky { position: sticky; top: 96px; align-self: start; }
  .sascha-sticky figure { border-radius: var(--r-big); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4 / 4.7; max-height: min(70vh, 600px); }
  .sascha-sticky figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
  .sascha-caption { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; gap: 12px; }
  .sascha-caption strong { font-weight: 700; font-size: 1.02rem; }
  .sascha-caption span { font-size: .74rem; color: #8A877F; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
  .sascha-copy > p { margin-top: 20px; color: var(--ink-soft); max-width: 60ch; text-wrap: pretty; }
  .sascha-copy > p strong { color: var(--ink); font-weight: 600; }
  .sascha-quote { margin-top: 34px; padding: 28px 32px; background: var(--warm); border-radius: var(--r-card); font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.45; font-weight: 500; letter-spacing: -0.012em; }
  .sascha-quote small { display: block; margin-top: 14px; font-size: .78rem; font-weight: 600; color: var(--coral-text); letter-spacing: .1em; text-transform: uppercase; }
  @media (max-width: 900px) { .sascha-grid { grid-template-columns: 1fr; } .sascha-sticky { position: static; max-width: 440px; } }

  /* ---------- Testimonials (hell) ---------- */
  .proof { background: var(--paper); border-top: 1px solid var(--line); overflow: clip; }
  .feature-quote { max-width: 900px; }
  .feature-quote .tag { font-weight: 600; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-text); margin-bottom: 20px; }
  .feature-quote blockquote {
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    line-height: 1.32;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: balance;
  }
  .feature-quote blockquote .hl { color: var(--coral-text); font-weight: 700; }
  .feature-cite { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
  .feature-cite img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
  .feature-cite b { display: block; font-weight: 600; }
  .feature-cite span { color: var(--ink-soft); font-size: .9rem; }
  .fq-nav { display: flex; gap: 10px; margin-top: 28px; }
  .fq-nav button {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid #D8D5CE; background: #fff; color: var(--ink);
    cursor: pointer; display: grid; place-items: center;
    transition: border-color .25s, transform .25s var(--ease-soft);
  }
  .fq-nav button:hover { border-color: var(--ink); transform: translateY(-2px); }
  .fq-slide { display: none; }
  .fq-slide.on { display: block; animation: fq-in .5s var(--ease-out); }
  @keyframes fq-in { from { opacity: 0; transform: translateY(14px); } }

  .proof-marquee { margin-top: clamp(52px, 6vw, 84px); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
  .proof-track { display: flex; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
  .proof-marquee:hover .proof-track { animation-play-state: paused; }
  .t-card { width: min(420px, 82vw); background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 14px 34px -26px rgba(20, 18, 12, .25); }
  .t-card p { color: var(--ink); font-size: .97rem; line-height: 1.55; }
  .t-card .who { display: flex; gap: 12px; align-items: center; margin-top: auto; }
  .t-card .who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
  .t-card .who b { font-size: .92rem; display: block; font-weight: 600; }
  .t-card .who span { font-size: .8rem; color: var(--ink-soft); }
  .t-card .tag { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-text); }

  .pe-badge { display: inline-flex; align-items: center; gap: 16px; margin-top: clamp(44px, 5vw, 64px); background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 16px 24px; border-radius: 14px; text-decoration: none; transition: transform .3s var(--ease-soft), box-shadow .3s; }
  .pe-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
  .pe-badge .stars { color: var(--coral); letter-spacing: 2px; }
  .pe-badge .num { font-weight: 700; font-size: 1.6rem; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
  .pe-badge small { color: var(--ink-soft); display: block; font-size: .82rem; }

  /* ---------- Nicht für jeden ---------- */
  .fit { background: var(--paper); }
  .fit-list { margin-top: clamp(32px, 4vw, 56px); border-top: 1px solid var(--line); }
  .fit-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: clamp(24px, 3.2vw, 42px) 0; border-bottom: 1px solid var(--line); }
  .fit-row h3 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
  .fit-row p { color: var(--ink-soft); margin-top: 10px; max-width: 56ch; }
  .fit-check { width: 52px; height: 52px; border-radius: 50%; background: var(--warm); display: grid; place-items: center; color: var(--coral-text); flex: none; }

  /* ---------- Tracking (helles Mock) ---------- */
  .dash { background: var(--warm); }
  .dash-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
  .dash-points { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
  .dash-points li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-soft); }
  .dash-points b { color: var(--ink); font-weight: 600; }
  .dash-points li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: none; transform: translateY(-1px); }
  .dash-mock { background: #fff; border: 1px solid var(--line); border-radius: var(--r-big); padding: clamp(20px, 2.6vw, 36px); box-shadow: var(--shadow-soft); }
  .dm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
  .dm-head b { font-weight: 700; }
  .dm-live { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
  .dm-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2.2s infinite; }
  @keyframes pulse { 50% { opacity: .35; } }
  .dm-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .dm-kpi { background: var(--warm); border-radius: 12px; padding: 16px; }
  .dm-kpi span { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
  .dm-kpi b { display: block; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 700; font-variant-numeric: tabular-nums; margin-top: 6px; letter-spacing: -0.02em; }
  .dm-kpi small { color: var(--green); font-weight: 700; font-size: .78rem; }
  .dm-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
  .dm-bars i { flex: 1; background: #D9D6CF; border-radius: 4px 4px 0 0; min-height: 8%; transform-origin: bottom; animation: bar-in 1s var(--ease-out) both; }
  .dm-bars i:nth-child(3n) { background: var(--coral); }
  @keyframes bar-in { from { transform: scaleY(0); } }
  @media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }

  /* ---------- Finale ---------- */
  .finale .card { background: #161616; color: #fff; border-radius: var(--r-big); padding: clamp(48px, 7vw, 104px) clamp(28px, 5vw, 88px); text-align: center; position: relative; overflow: clip; }
  .finale h2 { font-weight: 600; font-size: clamp(2.3rem, 4.8vw, 4rem); letter-spacing: -0.028em; }
  .finale .lead { color: rgba(255, 255, 255, .78); margin: 24px auto 0; max-width: 58ch; }
  .finale .lead strong { color: #fff; font-weight: 600; }
  .finale-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }
  .finale-note { margin-top: 24px; font-size: .88rem; color: rgba(255, 255, 255, .55); }

  /* ---------- Footer ---------- */
  .footer { padding-block: 48px; font-size: .92rem; color: var(--ink-soft); }
  .footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 36px; }
  .footer a { text-decoration: none; margin-left: 22px; color: var(--ink-soft); }
  .footer a:hover { color: var(--ink); }
  .footer .brand-mark { color: var(--ink); font-size: 1.05rem; }

  /* ---------- Reveals: default sichtbar, JS armt nur Unter-Fold ---------- */
  .rv.pre { opacity: 0; transform: translateY(24px); }
  .rv.pre.in { opacity: 1; transform: none; transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
  @keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  .load-in { animation: rise .9s var(--ease-out) both; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rv.pre { opacity: 1; transform: none; transition: none; }
    .marquee-track, .proof-track, .dm-bars i, .dm-live::before, .load-in { animation: none; }
    .stats-pin-space, .sol-pin-space { height: auto; }
    .stats-sticky, .sol-sticky { position: static; height: auto; padding-block: var(--sec-y); }
    .stat { opacity: 1; transform: none; }
    .sol-stack { min-height: 0; display: grid; gap: 20px; }
    .sol-card { position: static; opacity: 1; transform: none; pointer-events: auto; }
    .stats-progress, .sol-dots { display: none; }
    .hero video { display: none; }
  }

  /* ---------- Subpage-Hero ---------- */
  .subhero { background: var(--warm); padding: clamp(150px, 20vh, 210px) 0 clamp(48px, 6vw, 84px); }
  .subhero h1 { font-weight: 600; font-size: clamp(2.3rem, 4.6vw, 3.8rem); line-height: 1.08; letter-spacing: -0.026em; text-wrap: balance; max-width: 20ch; margin-top: 16px; }
  .subhero .lead { margin-top: 20px; }

  /* ---------- Lösungen-Detail ---------- */
  .sol-detail { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 72px); padding: clamp(44px, 6vw, 80px) 0; border-top: 1px solid var(--line); align-items: start; }
  .sol-detail:first-of-type { border-top: 0; }
  .sol-detail h2 { font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -0.02em; line-height: 1.12; margin-top: 12px; }
  .sol-detail .copy p { margin-top: 16px; color: var(--ink-soft); max-width: 58ch; text-wrap: pretty; }
  .sol-detail .copy p strong { color: var(--ink); font-weight: 600; }
  .sol-how { background: var(--warm); border-radius: var(--r-card); padding: 26px 28px; }
  .sol-how h3 { font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
  .sol-how ul { list-style: none; margin-top: 14px; display: grid; gap: 12px; }
  .sol-how li { display: flex; gap: 12px; align-items: baseline; color: var(--ink); }
  .sol-how li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: none; transform: translateY(-1px); }
  .sol-how .btn { margin-top: 22px; }
  @media (max-width: 900px) { .sol-detail { grid-template-columns: 1fr; } }

  /* ---------- Ergebnisse-Grid ---------- */
  .t-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: clamp(36px, 5vw, 64px); }
  .t-grid .t-card { width: auto; }
  .initials { width: 40px; height: 40px; border-radius: 50%; background: var(--warm-2); color: var(--ink-soft); display: grid; place-items: center; font-weight: 700; font-size: .82rem; flex: none; }
  .feature-static { padding: clamp(32px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
  .feature-static:first-of-type { border-top: 0; }

  /* ---------- Teaser-Links ---------- */
  .more-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--coral); padding-bottom: 3px; }
  .more-link:hover { color: var(--coral-text); }


  /* ---------- v3: Wachstums-System (Orbital) ---------- */
  /* position+z-index: eigener Stacking-Context, sonst lecken die per-JS gesetzten
     Node-z-indizes (100±50, aktiv 200 — s. site.js) in den Root und übermalen den
     fixierten Header (--z-nav:40). So bleibt die Sektion sauber unter dem Header. */
  .orbital-sec { background: #0F1013; color: #fff; overflow: clip; position: relative; z-index: 0; }
  .orbital-sec .sec-head h2 { color: #fff; }
  .orbital-sec .sec-head .lead { color: rgba(255, 255, 255, .68); }
  .orbital-sec .kicker { color: var(--coral); }
  .orbital { position: relative; height: 680px; display: none; align-items: center; justify-content: center; }
  .orb-ring, .orb-ring2 { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; }
  .orb-ring { width: 460px; height: 460px; }
  .orb-ring2 { width: 610px; height: 610px; border-color: rgba(255, 255, 255, .05); }
  .orb-center { position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; margin: -36px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFB3A6, var(--coral) 55%, #B23A22); display: grid; place-items: center; animation: pulse 2.4s cubic-bezier(.4, 0, .6, 1) infinite; z-index: 5; }
  .orb-center i { width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .85); }
  .orb-center::before, .orb-center::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .22); animation: orb-ping 1.8s cubic-bezier(0, 0, .2, 1) infinite; }
  .orb-center::after { inset: -20px; border-color: rgba(255, 255, 255, .1); animation-delay: .5s; }
  @keyframes orb-ping { 75%, 100% { transform: scale(1.7); opacity: 0; } }
  .orb-center-label { position: absolute; left: 50%; top: calc(50% + 52px); transform: translateX(-50%); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .55); white-space: nowrap; }
  .orb-node { position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; margin: -22px; border-radius: 50%; background: #17181D; color: #fff; border: 2px solid rgba(255, 255, 255, .35); display: grid; place-items: center; font-weight: 700; font-size: .95rem; cursor: pointer; transition: transform .7s cubic-bezier(.4, 0, .2, 1), opacity .7s, background .3s, border-color .3s, box-shadow .3s; }
  .orb-node:hover { border-color: #fff; }
  .orb-node.active { background: #fff; color: #111; border-color: #fff; box-shadow: 0 0 28px rgba(255, 255, 255, .35); }
  .orb-node .orb-label { position: absolute; top: 52px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .65); transition: color .3s; }
  .orb-node.active .orb-label { color: #fff; }
  .orb-card { position: absolute; top: 74px; left: 50%; transform: translateX(-50%); width: 300px; background: rgba(12, 13, 17, .94); border: 1px solid rgba(255, 255, 255, .25); border-radius: 14px; padding: 20px; backdrop-filter: blur(14px); text-align: left; cursor: default; box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8); }
  .orb-card::before { content: ""; position: absolute; top: -12px; left: 50%; width: 1px; height: 12px; background: rgba(255, 255, 255, .5); }
  .orb-card .phase { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); border: 1px solid rgba(254, 121, 102, .4); border-radius: 999px; padding: 4px 10px; }
  .orb-card h3 { font-size: 1.05rem; font-weight: 600; margin-top: 12px; color: #fff; }
  .orb-card p { font-size: .88rem; line-height: 1.55; color: rgba(255, 255, 255, .78); margin-top: 8px; }
  .orb-card .rel { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; gap: 6px; }
  .orb-card .rel button { font: inherit; font-size: .72rem; font-weight: 600; color: rgba(255, 255, 255, .8); background: transparent; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; padding: 5px 12px; cursor: pointer; transition: background .2s, color .2s; }
  .orb-card .rel button:hover { background: rgba(255, 255, 255, .12); color: #fff; }
  .orb-list { list-style: none; display: grid; gap: 0; counter-reset: orb; max-width: 720px; margin-top: clamp(28px, 4vw, 48px); }
  .orb-list li { position: relative; padding: 20px 0 20px 56px; border-top: 1px solid rgba(255, 255, 255, .12); }
  .orb-list li::before { counter-increment: orb; content: counter(orb); position: absolute; left: 0; top: 18px; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .4); display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
  .orb-list h3 { font-size: 1.05rem; font-weight: 600; color: #fff; }
  .orb-list p { font-size: .92rem; color: rgba(255, 255, 255, .7); margin-top: 6px; max-width: 56ch; }
  @media (min-width: 960px) { .orbital { display: flex; } .orbital-sec .orb-list { display: none; } }
  @media (prefers-reduced-motion: reduce) { .orbital { display: none !important; } .orbital-sec .orb-list { display: grid !important; } .orb-center, .orb-center::before, .orb-center::after { animation: none; } }

  /* ---------- v3: Video-Testimonial (Platzhalter) ---------- */
  .vt-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-big); overflow: hidden; background: radial-gradient(120% 140% at 20% 0%, #23242B 0%, #101014 60%); border: 1px solid rgba(255, 255, 255, .08); box-shadow: var(--shadow-soft); display: grid; place-items: center; margin-top: clamp(32px, 4vw, 56px); }
  .vt-frame .vt-quotemark { position: absolute; top: -30px; right: 24px; font-size: 220px; line-height: 1; font-weight: 800; color: rgba(255, 255, 255, .05); pointer-events: none; }
  .vt-play { width: 88px; height: 88px; border-radius: 50%; background: var(--coral); color: #161616; display: grid; place-items: center; box-shadow: 0 20px 48px -12px rgba(254, 121, 102, .5); transition: transform .3s var(--ease-soft); }
  .vt-frame:hover .vt-play { transform: scale(1.07); }
  .vt-tag { position: absolute; top: 20px; left: 22px; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255, 255, 255, .6); border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; padding: 6px 12px; }
  .vt-cap { position: absolute; bottom: 18px; left: 22px; right: 22px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; color: #fff; flex-wrap: wrap; }
  .vt-cap b { font-weight: 650; }
  .vt-cap span { font-size: .85rem; color: rgba(255, 255, 255, .65); }
  /* Vimeo-Facade: klickbarer Poster-Frame; JS lädt den Player erst beim Klick (kein Wegklick). */
  .vt-facade { cursor: pointer; }
  .vt-facade:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
  .vt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: inherit; z-index: 5; }
  .vt-facade.playing .vt-play, .vt-facade.playing .vt-tag, .vt-facade.playing .vt-cap, .vt-facade.playing .vt-quotemark, .vt-facade.playing .vt-poster { opacity: 0; pointer-events: none; }
  /* Vorschaubild (Poster) im Facade-Frame + Scrim für Text-Lesbarkeit */
  .vt-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .vt-frame.has-poster { background: #0c0d11; }
  .vt-frame.has-poster::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8, 8, 11, .34) 0%, rgba(8, 8, 11, .10) 40%, rgba(8, 8, 11, .72) 100%); pointer-events: none; }
  .vt-facade .vt-tag, .vt-facade .vt-cap, .vt-facade .vt-quotemark { z-index: 2; }
  .vt-facade .vt-play { position: relative; z-index: 2; }
  /* 4er-Testimonial-Grid: 4 → 2 → 1, immer ausbalanciert */
  .t-quad { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  @media (max-width: 1080px) { .t-quad { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 560px) { .t-quad { grid-template-columns: 1fr; } }


  /* ---------- v3: Scroll-Expansion-Hero (xhero) ---------- */
  .xhero-space { height: 300vh; position: relative; background: var(--warm); }
  .xhero-sticky { position: sticky; top: 0; height: 100svh; overflow: clip; }
  .xhero-title { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; gap: .32em; font-weight: 600; font-size: clamp(2.4rem, 6.6vw, 5.4rem); letter-spacing: -0.028em; color: var(--ink); white-space: nowrap; z-index: 3; pointer-events: none; }
  .xhero-title span { display: inline-block; will-change: transform; }
  .xhero-media { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 320px; height: 420px; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 90px -24px rgba(20, 18, 12, .5); z-index: 2; }
  .xhero-media video { width: 100%; height: 100%; object-fit: cover; }
  .xhero-scrim { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(10, 10, 10, 0) 30%, rgba(10, 10, 10, .55) 78%), linear-gradient(0deg, rgba(10, 10, 10, .35), rgba(10, 10, 10, .08) 45%); opacity: 0; transition: opacity .4s ease; pointer-events: none; }
  .xhero-hint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 4; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 10px; transition: opacity .3s ease; }
  .xhero-hint::after { content: ""; width: 1px; height: 26px; background: var(--coral); animation: hint-drop 1.6s ease-in-out infinite; }
  @keyframes hint-drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
  .xhero-content { position: absolute; inset: auto 0 0 0; z-index: 5; padding: 0 0 clamp(40px, 7vh, 84px); color: #fff; opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); pointer-events: none; }
  .xhero-content.on { opacity: 1; transform: none; pointer-events: auto; }
  .xhero-content .wrap { max-width: var(--content); margin-inline: auto; padding-inline: var(--gutter); }
  .xhero-content h1 { max-width: 16ch; font-weight: 600; font-size: clamp(2.1rem, 4.4vw, 3.7rem); line-height: 1.06; letter-spacing: -0.026em; text-wrap: balance; }
  .xhero-content .lead { color: rgba(255, 255, 255, .85); margin-top: 16px; max-width: 52ch; }
  .xhero-content .hero-ctas { margin-top: 26px; }
  .xhero-content .hero-proofline { margin-top: 30px; padding-top: 18px; }
  @media (max-width: 900px) { .xhero-space { height: 260vh; } .xhero-media { width: 230px; height: 320px; } }
  @media (prefers-reduced-motion: reduce) {
    .xhero-space { height: auto; }
    .xhero-sticky { position: static; height: 100svh; }
    .xhero-title, .xhero-hint { display: none; }
    .xhero-media { width: 100% !important; height: 100% !important; border-radius: 0 !important; left: 0; top: 0; transform: none; }
    .xhero-scrim { opacity: 1 !important; }
    .xhero-content { opacity: 1; transform: none; pointer-events: auto; }
  }

  /* ---------- v3: Clean Testimonial (ct) ---------- */
  .ct { position: relative; max-width: 780px; padding: clamp(44px, 6vw, 84px) clamp(8px, 2vw, 24px); margin-top: 8px; outline-offset: 6px; }
  @media (pointer: fine) { .ct { cursor: none; } }
  .ct-avatars { position: absolute; top: 18px; left: clamp(8px, 2vw, 24px); display: flex; }
  .ct-avatars img { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--paper); object-fit: cover; margin-left: -8px; filter: grayscale(1); opacity: .5; transition: opacity .3s, filter .3s, transform .3s; }
  .ct-avatars img:first-child { margin-left: 0; }
  .ct-avatars img.on { filter: none; opacity: 1; transform: scale(1.12); box-shadow: 0 0 0 2px var(--coral); }
  .ct-idx { position: absolute; top: 14px; right: clamp(8px, 2vw, 24px); font-variant-numeric: tabular-nums; color: var(--ink-soft); font-size: .8rem; display: flex; align-items: baseline; gap: 5px; }
  .ct-idx b { font-size: 1.5rem; font-weight: 500; color: var(--ink); }
  .ct-tag { font-weight: 640; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-text); margin-bottom: 18px; }
  .ct-quote { font-size: clamp(1.35rem, 2.6vw, 2.05rem); line-height: 1.36; font-weight: 550; letter-spacing: -0.018em; color: var(--ink); text-wrap: pretty; min-height: 4.1em; }
  .ct-quote .w { display: inline-block; margin-right: .25em; opacity: 0; transform: translateY(16px); filter: blur(8px); }
  .ct.ready .ct-quote .w { opacity: 1; transform: none; filter: blur(0); transition: opacity .45s cubic-bezier(.22, 1, .36, 1), transform .45s cubic-bezier(.22, 1, .36, 1), filter .45s cubic-bezier(.22, 1, .36, 1); transition-delay: calc(var(--i) * 28ms); }
  .ct-author { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
  .ct-ava { position: relative; width: 52px; height: 52px; flex: none; }
  .ct-ava::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(254, 121, 102, .45); }
  .ct-ava img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
  .ct-who { position: relative; padding-left: 16px; }
  .ct-who::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 2px; background: var(--coral); }
  .ct-who b { display: block; font-weight: 640; }
  .ct-who span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; }
  .ct-progress { margin-top: 40px; height: 2px; background: var(--line); position: relative; overflow: hidden; border-radius: 1px; }
  .ct-progress i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--coral); transition: width .5s cubic-bezier(.22, 1, .36, 1); }
  .ct-hint { margin-top: 14px; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); opacity: .55; }
  .ct-cursor { position: absolute; z-index: 30; width: 84px; height: 84px; margin: -42px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; pointer-events: none; opacity: 0; transform: scale(.4); transition: opacity .25s ease, transform .25s var(--ease-soft); box-shadow: 0 16px 36px -14px rgba(0, 0, 0, .4); }
  .ct.hovering .ct-cursor { opacity: 1; transform: scale(1); }
  @media (pointer: coarse) { .ct-cursor { display: none; } }
  @media (prefers-reduced-motion: reduce) {
    .ct { cursor: auto; }
    .ct-cursor { display: none; }
    .ct-quote .w, .ct.ready .ct-quote .w { opacity: 1; transform: none; filter: none; transition: none; }
  }


  /* ---------- v3: Team-Showcase (ts) ---------- */
  .ts-wrap { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 72px); align-items: start; }
  .ts-grid { display: flex; gap: 12px; }
  .ts-col { display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 0; }
  .ts-col.c2 { margin-top: 54px; }
  .ts-col.c3 { margin-top: 26px; }
  .ts-card { border-radius: 16px; overflow: hidden; cursor: pointer; }
  .ts-col.c1 .ts-card { aspect-ratio: 4 / 4.4; }
  .ts-col.c2 .ts-card { aspect-ratio: 4 / 4.8; }
  .ts-col.c3 .ts-card { aspect-ratio: 4 / 4.5; }
  .ts-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.82); transition: filter .5s ease, opacity .4s ease, transform .5s var(--ease-soft); }
  .ts.has-active .ts-card:not(.on) img { opacity: .5; }
  .ts-card.on img { filter: none; transform: scale(1.04); }
  .ts-list { display: flex; flex-direction: column; gap: 22px; padding-top: 6px; }
  .ts-row { cursor: pointer; transition: opacity .3s ease; }
  .ts.has-active .ts-row:not(.on) { opacity: .45; }
  .ts-row .mark { display: inline-block; width: 16px; height: 10px; border-radius: 5px; background: #DDDAD3; margin-right: 11px; transition: background .3s, width .3s; }
  .ts-row.on .mark { background: var(--coral); width: 24px; }
  .ts-row b { font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; }
  .ts-row .role { margin-top: 5px; padding-left: 27px; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
  .ts-row .bio { margin-top: 6px; padding-left: 27px; font-size: .9rem; color: var(--ink-soft); max-width: 44ch; text-wrap: pretty; display: none; }
  .ts-row.on .bio { display: block; }
  @media (max-width: 900px) { .ts-wrap { grid-template-columns: 1fr; } .ts-row .bio { display: block; } }

  .recruit { background: #161616; color: #fff; border-radius: var(--r-big); padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 80px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
  .recruit h2 { font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.024em; line-height: 1.1; text-wrap: balance; }
  .recruit p { color: rgba(255, 255, 255, .75); margin-top: 16px; max-width: 52ch; }
  .recruit-ctas { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
  @media (max-width: 900px) { .recruit { grid-template-columns: 1fr; } }


  /* ---------- v3: Logo ---------- */
  .brand-logo { height: 46px; width: auto; display: block; }
  .footer .brand-logo { height: 40px; }
  @media (max-width: 900px) { .brand-logo { height: 38px; } }

  /* ---------- v3: Rechtstexte ---------- */
  .prose { max-width: 74ch; }
  .prose h1, .prose h2 { font-weight: 600; font-size: 1.5rem; letter-spacing: -0.015em; margin-top: 36px; }
  .prose h3, .prose h4, .prose h5 { font-weight: 600; font-size: 1.15rem; margin-top: 28px; }
  .prose p { margin-top: 12px; color: var(--ink-soft); text-wrap: pretty; }
  .prose p strong, .prose p b { color: var(--ink); font-weight: 600; }
  .prose a { color: var(--coral-text); text-decoration: underline; text-underline-offset: 3px; }
  .prose ul, .prose ol { margin: 12px 0 0 22px; color: var(--ink-soft); }
  .prose li { margin-top: 6px; }

  /* ---------- v3: Umsatzrechner ---------- */
  .calc-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 3.5vw, 56px); align-items: start; }
  .calc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-big); box-shadow: var(--shadow-soft); padding: clamp(24px, 3vw, 44px); }
  .calc-field { margin-top: 22px; }
  .calc-field:first-child { margin-top: 0; }
  .calc-field label { display: block; font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
  .calc-field input[type="number"] { width: 100%; margin-top: 10px; font: inherit; font-weight: 600; font-size: 1.3rem; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--warm); color: var(--ink); }
  .calc-field input[type="number"]:focus { outline: none; border-color: var(--coral); background: #fff; }
  .calc-levels { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
  .calc-levels label { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 18px; cursor: pointer; font-weight: 500; font-size: .95rem; text-transform: none; letter-spacing: 0; color: var(--ink); transition: border-color .2s, background .2s; }
  .calc-levels input { accent-color: var(--coral-text); }
  .calc-levels label:has(input:checked) { border-color: var(--ink); background: var(--warm); font-weight: 600; }
  .calc-note { margin-top: 18px; font-size: .85rem; color: var(--ink-soft); }
  .calc-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .calc-kpi { background: var(--warm); border-radius: 16px; padding: 22px; }
  .calc-kpi span { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); display: block; }
  .calc-kpi b { display: block; font-weight: 650; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; margin-top: 8px; }
  .calc-kpi small { display: block; margin-top: 6px; font-size: .82rem; color: var(--ink-soft); }
  .calc-kpi.hot { background: #161616; color: #fff; }
  .calc-kpi.hot span, .calc-kpi.hot small { color: rgba(255,255,255,.6); }
  .calc-soon { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
  .calc-soon span { font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); border: 1px dashed var(--line); border-radius: 999px; padding: 7px 14px; }
  @media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }


  /* ---------- v3-Feedback: Nav-Squeeze (8 Punkte) ---------- */
  @media (max-width: 1280px) and (min-width: 901px) { .nav-links { gap: 13px; } .nav-links a { font-size: .86rem; white-space: nowrap; } }

  /* ---------- v3-Feedback: AI im Wachstums-System (orb-ai) ---------- */
  .orb-ai { margin-top: clamp(28px, 4vw, 48px); padding-top: clamp(22px, 3vw, 34px); border-top: 1px solid rgba(255, 255, 255, .12); max-width: 720px; }
  .orb-ai-chip { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--coral); border: 1px solid rgba(254, 121, 102, .4); border-radius: 999px; padding: 6px 13px; }
  .orb-ai-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: pulse 2s ease-in-out infinite; }
  .orb-ai p { margin-top: 14px; color: rgba(255, 255, 255, .72); line-height: 1.6; text-wrap: pretty; }
  .orb-ai p strong { color: #fff; font-weight: 600; }
  .orb-ai a { color: var(--coral); text-decoration: none; border-bottom: 1px solid rgba(254, 121, 102, .5); padding-bottom: 1px; white-space: nowrap; }

  /* ---------- v3-Feedback: Mobile-Navigation (Burger + Overlay) ---------- */
  .nav-burger { display: none; }
  @media (max-width: 900px) {
    .nav-burger { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; position: relative; z-index: 60; flex: none; }
    .nav-burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: background .25s; }
    .nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); transition: transform .3s var(--ease-soft), top .3s var(--ease-soft); }
    .nav-burger span::before { top: -6px; }
    .nav-burger span::after { top: 6px; }
    .nav.open .nav-burger span { background: transparent; }
    .nav.open .nav-burger span::before { top: 0; transform: rotate(45deg); }
    .nav.open .nav-burger span::after { top: 0; transform: rotate(-45deg); }
    /* backdrop-filter auf .nav macht den Header sonst zum Containing Block für das fixed-Overlay */
    .nav.open, .nav.open.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--warm); }
    .nav.open .nav-links { display: flex; position: fixed; inset: 0; z-index: 50; background: var(--warm); flex-direction: column; justify-content: center; gap: 4px; padding: 90px clamp(28px, 9vw, 56px) 48px; margin: 0; overflow-y: auto; }
    .nav.open .nav-links a { display: block; font-size: 1.45rem; font-weight: 600; color: var(--ink); padding: 10px 0; opacity: 0; transform: translateY(14px); animation: mnav-in .5s cubic-bezier(.22, 1, .36, 1) forwards; }
    .nav.open .nav-links a[aria-current="page"] { color: var(--coral-text); }
    .nav.open .nav-links li:nth-child(1) a { animation-delay: .02s; }
    .nav.open .nav-links li:nth-child(2) a { animation-delay: .06s; }
    .nav.open .nav-links li:nth-child(3) a { animation-delay: .10s; }
    .nav.open .nav-links li:nth-child(4) a { animation-delay: .14s; }
    .nav.open .nav-links li:nth-child(5) a { animation-delay: .18s; }
    .nav.open .nav-links li:nth-child(6) a { animation-delay: .22s; }
    .nav.open .nav-links li:nth-child(7) a { animation-delay: .26s; }
    .nav.open .nav-links li:nth-child(8) a { animation-delay: .30s; }
    /* Gruppen-Menüs im Overlay: als Abschnitte mit Label + immer sichtbaren Unterlinks */
    .nav.open .nav-item { display: block; }
    .nav.open .nav-item.has-menu::after { display: none; }
    .nav.open .nav-links .nav-trigger { display: block; width: 100%; text-align: left; padding: 16px 0 2px; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); opacity: 1; cursor: default; pointer-events: none; }
    .nav.open .nav-caret { display: none; }
    .nav.open .nav-menu { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; background: none; border: 0; box-shadow: none; padding: 0; min-width: 0; gap: 0; }
    .nav.open .nav-menu a { font-size: 1.2rem; font-weight: 500; padding: 8px 0; }
  }
  @keyframes mnav-in { to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .nav.open .nav-links a { animation: none; opacity: 1; transform: none; } }

  /* ---------- v3-Feedback: Mobile-Feinschliff ---------- */
  @media (max-width: 640px) {
    .xhero-title { font-size: clamp(1.35rem, 7.4vw, 2rem); gap: .28em; }
    .btn-cta { padding: 10px 16px; font-size: .88rem; }
    .xhero-hint { white-space: nowrap; }
    .subhero h1 { font-size: clamp(1.85rem, 8vw, 2.3rem); overflow-wrap: break-word; hyphens: auto; }
    .h2, h2.h2 { overflow-wrap: break-word; hyphens: auto; }
  }

  /* ---------- v3-Feedback: AI-Band (SNASH AI) ---------- */
  .ai-band { background: #fff; border-block: 1px solid var(--line); padding-block: clamp(40px, 5vw, 72px); }
  .ai-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
  .ai-grid h2 { font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.15; text-wrap: balance; }
  .ai-grid p { color: var(--ink-soft); text-wrap: pretty; }
  .ai-grid p strong { color: var(--ink); font-weight: 600; }
  @media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; } }

  /* ---------- v3-Feedback: Lösungs-Felder-Chips ---------- */
  .sol-fields { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
  .sol-fields em { font-style: normal; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-right: 4px; }
  .sol-fields span { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; background: #fff; }

  /* ---------- v3-Feedback: Lead-Formulare (Partnership + Pentest) ---------- */
  .lead-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; text-align: left; max-width: 720px; margin: 36px auto 0; }
  .lead-form .lf-full { grid-column: 1 / -1; }
  .lead-form label { display: block; font-weight: 600; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
  .lead-form input, .lead-form select, .lead-form textarea { width: 100%; margin-top: 8px; font: inherit; font-size: 1rem; padding: 13px 15px; border-radius: 12px; border: 1.5px solid; }
  .lead-form textarea { min-height: 110px; resize: vertical; }
  .lead-form .lf-submit { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
  .lead-form .lf-preview { font-size: .74rem; opacity: .55; }
  .form-done { display: none; max-width: 620px; margin: 36px auto 0; }
  .form-done.on { display: block; }
  .form-done .fd-check { width: 56px; height: 56px; border-radius: 50%; background: var(--coral); color: #161616; display: grid; place-items: center; margin: 0 auto 18px; }
  @media (max-width: 700px) { .lead-form { grid-template-columns: 1fr; } }

  /* dunkle Variante (Finale-Karte) */
  .finale .lead-form label { color: rgba(255, 255, 255, .65); }
  .finale .lead-form input, .finale .lead-form select, .finale .lead-form textarea { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .25); color: #fff; }
  .finale .lead-form input::placeholder, .finale .lead-form textarea::placeholder { color: rgba(255, 255, 255, .4); }
  .finale .lead-form input:focus, .finale .lead-form select:focus, .finale .lead-form textarea:focus { outline: none; border-color: var(--coral); background: rgba(255, 255, 255, .11); }
  .finale .lead-form select { color-scheme: dark; }
  .finale .lead-form .lf-preview { color: rgba(255, 255, 255, .55); }

  /* helle Variante (Pentest auf "Dein Potenzial") */
  .pt-form label { color: var(--ink-soft); }
  .pt-form input, .pt-form select, .pt-form textarea { background: var(--warm); border-color: var(--line); color: var(--ink); }
  .pt-form input:focus, .pt-form textarea:focus { outline: none; border-color: var(--coral); background: #fff; }
  .pt-form { margin: 0; max-width: none; }

  /* ---------- v3-Feedback: Sarah-Hero-Case + Case-Studies ---------- */
  .case-hero { background: #161616; color: #fff; border-radius: var(--r-big); padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(24px, 4vw, 56px); margin-top: clamp(32px, 4vw, 56px); }
  .case-hero .tag { font-weight: 600; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-bottom: 20px; }
  .case-hero blockquote { font-size: clamp(1.25rem, 2.4vw, 1.8rem); line-height: 1.35; font-weight: 550; letter-spacing: -0.015em; text-wrap: pretty; }
  .case-hero .feature-cite b { color: #fff; }
  .case-hero .feature-cite span { color: rgba(255, 255, 255, .6); }
  .case-hero .case-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .9rem; color: rgba(255, 255, 255, .65); text-wrap: pretty; }
  .case-hero .case-note strong { color: #fff; font-weight: 600; }
  .case-kpis { display: grid; gap: 12px; align-content: start; }
  .ck { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; padding: 18px 20px; }
  .ck b { display: block; font-weight: 650; font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
  .ck span { display: block; margin-top: 6px; font-size: .82rem; color: rgba(255, 255, 255, .6); }
  @media (max-width: 900px) { .case-hero { grid-template-columns: 1fr; } }
  .cs-head { margin-top: clamp(40px, 5vw, 72px); }
  .cs-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
  .cs-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-big); padding: clamp(22px, 2.6vw, 36px); }
  .cs-card .tag { font-weight: 600; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--coral-text); }
  .cs-card h3 { font-weight: 600; font-size: 1.3rem; letter-spacing: -0.015em; margin-top: 10px; }
  .cs-card ul { list-style: none; margin-top: 14px; display: grid; gap: 10px; }
  .cs-card li { position: relative; padding-left: 26px; color: var(--ink-soft); }
  .cs-card li::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 2px; background: var(--coral); }
  .cs-card li strong { color: var(--ink); font-weight: 650; }
  .cs-card p { margin-top: 14px; color: var(--ink-soft); text-wrap: pretty; }
  .cs-card.soon { border-style: dashed; background: transparent; }
  @media (max-width: 800px) { .cs-cards { grid-template-columns: 1fr; } }

  /* ---------- v3-Feedback: Vita + Privat (Sascha) ---------- */
  .vita { list-style: none; margin-top: clamp(24px, 3vw, 40px); max-width: 760px; }
  .vita li { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 6px 28px; padding: 20px 0; border-top: 1px solid var(--line); }
  .vita li:last-child { border-bottom: 1px solid var(--line); }
  .vita b { font-weight: 640; font-size: 1.02rem; letter-spacing: -0.01em; }
  .vita .org { display: block; margin-top: 4px; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-text); }
  .vita p { color: var(--ink-soft); text-wrap: pretty; align-self: center; }
  @media (max-width: 700px) { .vita li { grid-template-columns: 1fr; } }
  .privat-card { background: var(--warm); border-radius: var(--r-big); padding: clamp(32px, 5vw, 80px); }
  .beliefs { display: grid; gap: 18px; margin-top: clamp(22px, 3vw, 36px); max-width: 30ch; max-width: 62ch; }
  .belief { font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.4; font-weight: 550; letter-spacing: -0.015em; text-wrap: pretty; }
  .privat-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: clamp(26px, 3.5vw, 44px); }
  .privat-tiles figure { position: relative; aspect-ratio: 4 / 4.6; border: 1.5px dashed #CFCBC2; border-radius: 16px; overflow: hidden; display: grid; place-items: center; align-content: center; gap: 8px; }
  .privat-tiles figure.has-photo { border: none; }
  .privat-tiles figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .privat-tiles figure.has-photo figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
  .privat-tiles span { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
  .privat-tiles figcaption { font-weight: 600; font-size: 1.02rem; }
  @media (max-width: 700px) { .privat-tiles { grid-template-columns: 1fr; } .privat-tiles figure { aspect-ratio: 16 / 7; } }
  .case-link { background: #fff; border: 1px solid var(--line); border-radius: var(--r-big); padding: clamp(24px, 3vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

  /* ---------- v3-Feedback: Socials (IG / LinkedIn / Mail) ---------- */
  .socials { display: flex; gap: 10px; }
  .socials a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-soft); }
  .socials a:hover, .socials a:focus-visible { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
  .footer .socials a { margin-left: 0; }
  .sascha-socials { margin-top: 14px; }
  .ts-socials { margin-top: 10px; padding-left: 27px; opacity: 0; transform: translateX(-8px); transition: opacity .35s ease, transform .35s ease; }
  .ts-socials a { width: 34px; height: 34px; }
  .ts-socials a svg { width: 15px; height: 15px; }
  .ts-row.on .ts-socials { opacity: 1; transform: none; }
  @media (max-width: 900px) { .ts-socials { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .ts-socials { opacity: 1; transform: none; transition: none; } }

  /* ---------- v3-Feedback: iOS-Notification-Stack (Tracking) ---------- */
  /* Feste Rahmenhöhe → Box springt nicht mehr; Karten laufen INNEN durch, unten sanft ausgeblendet */
  .ios-wrap { position: relative; border-radius: var(--r-big); background: linear-gradient(168deg, #E7E3DB 0%, #CFC9BE 55%, #BCB4A6 100%); padding: clamp(30px, 4vw, 52px) clamp(18px, 3vw, 40px) clamp(20px, 3vw, 34px); display: flex; flex-direction: column; height: clamp(500px, 62vh, 580px); overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, sans-serif; }
  .ios-wrap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 50% at 78% -5%, rgba(255, 255, 255, .6), transparent 70%); pointer-events: none; }
  .ios-feed { position: relative; flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 11px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); }
  .ios-clock { position: relative; flex: none; text-align: center; margin-bottom: clamp(14px, 3vw, 30px); color: #2a2723; }
  .ios-clock .d { font-size: .82rem; font-weight: 600; letter-spacing: .01em; color: rgba(50, 47, 42, .62); }
  .ios-clock .t { font-size: clamp(3.2rem, 8vw, 4.6rem); font-weight: 500; letter-spacing: -0.035em; line-height: .95; font-variant-numeric: tabular-nums; margin-top: 2px; }
  .ios-note { position: relative; background: rgba(250, 249, 247, .72); backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5); border-radius: 20px; padding: 12px 14px; box-shadow: 0 10px 30px -16px rgba(20, 18, 12, .4), 0 0.5px 0 rgba(255, 255, 255, .7) inset; display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 11px; align-items: start; transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .45s ease; }
  .ios-note.in { transform: translateY(-22px) scale(.96); opacity: 0; }
  .ios-note.out { transform: translateY(12px) scale(.97); opacity: 0; }
  .ios-note .app { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(158deg, #2b2b2f, #0e0e10); display: grid; place-items: center; box-shadow: 0 1px 2px rgba(0,0,0,.3); }
  .ios-note .app svg { width: 22px; height: 22px; }
  .ios-body { min-width: 0; }
  .ios-body .top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
  .ios-body .app-name { font-size: .68rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: rgba(50, 47, 42, .5); }
  .ios-body time { font-size: .72rem; color: rgba(50, 47, 42, .5); white-space: nowrap; }
  .ios-note b { display: block; font-weight: 600; font-size: .92rem; color: #111; letter-spacing: -0.01em; margin-top: 2px; }
  .ios-note p { margin-top: 1px; font-size: .86rem; line-height: 1.35; color: rgba(50, 47, 42, .82); }
  @media (prefers-reduced-motion: reduce) { .ios-note, .ios-note.in, .ios-note.out { transition: none; transform: none; opacity: 1; } }

  /* ---------- v3-Feedback: Bühne/Speaker-Galerie (Sascha) ---------- */
  .stage-gallery { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; margin-top: clamp(28px, 4vw, 48px); }
  .stage-gallery figure { position: relative; margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; }
  .stage-gallery .sg-main { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
  .stage-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-soft); }
  .stage-gallery figure:hover img { transform: scale(1.03); }
  .stage-gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 13px; color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .01em; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); }
  @media (max-width: 800px) { .stage-gallery { grid-template-columns: 1fr; } .stage-gallery .sg-main { grid-row: auto; aspect-ratio: 16 / 9; } }

  /* ---------- v3-Feedback: Podcast-Sektion (Sascha) ---------- */
  .podcast-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(16px, 2.5vw, 28px); margin-top: clamp(28px, 4vw, 48px); align-items: start; }
  .pod-video { position: relative; display: block; min-width: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; background: #111; }
  .pod-cta { min-width: 0; }
  .pod-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
  .pod-video:hover img { transform: scale(1.03); }
  .pod-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, .93); display: grid; place-items: center; box-shadow: 0 12px 34px -10px rgba(0, 0, 0, .55); transition: transform .3s var(--ease-soft); }
  .pod-video:hover .pod-play { transform: translate(-50%, -50%) scale(1.09); }
  .pod-play svg { width: 24px; height: 24px; margin-left: 3px; color: #161616; }
  .pod-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 13px; background: linear-gradient(to top, rgba(0, 0, 0, .78), transparent); color: #fff; }
  .pod-cap b { display: block; font-weight: 600; font-size: .95rem; letter-spacing: -0.01em; }
  .pod-cap span { font-size: .8rem; color: rgba(255, 255, 255, .74); }
  .pod-cta { background: var(--warm); border-radius: 16px; padding: clamp(20px, 2.5vw, 32px); display: flex; flex-direction: column; }
  .pod-cta h3 { font-weight: 600; font-size: 1.2rem; letter-spacing: -0.015em; }
  .pod-cta > p { color: var(--ink-soft); margin-top: 8px; font-size: .92rem; text-wrap: pretty; }
  .pod-cta .lead-form { margin: 16px 0 0; max-width: none; grid-template-columns: 1fr; gap: 10px; }
  .pod-cta .lead-form input, .pod-cta .lead-form textarea { background: #fff; border-color: var(--line); color: var(--ink); }
  .pod-cta .lead-form input:focus, .pod-cta .lead-form textarea:focus { outline: none; border-color: var(--coral); }
  .pod-cta .lead-form textarea { min-height: 84px; }
  .pod-cta .lf-submit { align-items: stretch; }
  @media (max-width: 800px) { .podcast-grid { grid-template-columns: 1fr; } }

  /* ---------- v3-Feedback: Slack-Mock (CopeCart-Closes) ---------- */
  .slack-mock { border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; margin-top: 26px; max-width: 480px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif; font-size: .88rem; }
  .slack-head { display: flex; align-items: baseline; gap: 8px; padding: 11px 15px; border-bottom: 1px solid var(--line); }
  .slack-head img.sl-logo { width: 18px; height: 18px; object-fit: contain; }
  .slack-head b { font-weight: 800; font-size: .95rem; color: #1d1c1d; }
  .slack-head span { font-size: .76rem; color: #616061; }
  .slack-live { margin-left: auto; font-size: .68rem; font-weight: 700; letter-spacing: .06em; color: #2EB67D; display: inline-flex; align-items: center; gap: 5px; }
  .slack-live i { width: 7px; height: 7px; border-radius: 50%; background: #2EB67D; animation: pulse 2s ease-in-out infinite; }
  .slack-msg { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 10px; padding: 10px 15px 12px; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s cubic-bezier(.22, 1, .36, 1); }
  .slack-mock.live .slack-msg { opacity: 1; transform: none; }
  .slack-mock.live .slack-msg:nth-child(2) { transition-delay: .15s; }
  .slack-mock.live .slack-msg:nth-child(3) { transition-delay: .9s; }
  .slack-mock.live .slack-msg:nth-child(4) { transition-delay: 1.7s; }
  .slack-msg .ava { width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1rem; }
  .slack-msg .ava.cc { background: #0B3D91; }
  .slack-msg .ava img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
  .slack-msg .ava.cc img { border-radius: 8px; }
  .slack-msg .head b { font-weight: 800; color: #1d1c1d; }
  .slack-msg .badge { font-size: .6rem; font-weight: 700; color: #616061; background: #ECECEC; border-radius: 3px; padding: 1px 4px; margin-left: 5px; vertical-align: 1px; }
  .slack-msg time { font-size: .74rem; color: #616061; margin-left: 7px; }
  .slack-msg .txt { margin-top: 2px; color: #1d1c1d; line-height: 1.4; }
  .slack-attach { margin-top: 6px; padding: 8px 12px; border-left: 4px solid #2EB67D; background: #F8F8F8; border-radius: 0 8px 8px 0; }
  .slack-attach b { display: block; color: #1d1c1d; }
  .slack-attach span { color: #616061; font-size: .82rem; }
  @media (prefers-reduced-motion: reduce) { .slack-msg { opacity: 1; transform: none; transition: none; } }

  /* ---------- v3-Feedback: Team-Hinweis + Vertrieb-Seite ---------- */
  .ts-note { margin-top: 26px; font-size: .88rem; color: var(--ink-soft); }
  .vx-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .vx-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-big); padding: clamp(22px, 2.6vw, 36px); display: flex; flex-direction: column; gap: 12px; }
  .vx-card .tag { font-weight: 600; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--coral-text); }
  .vx-card h3 { font-weight: 600; font-size: 1.25rem; letter-spacing: -0.015em; }
  .vx-card p { color: var(--ink-soft); text-wrap: pretty; flex: 1; }
  @media (max-width: 900px) { .vx-cards { grid-template-columns: 1fr; } }

  /* ---------- v3-Feedback: Eigener Podcast (Inline-Player + Folgen) ---------- */
  .pod-own { margin-top: clamp(28px, 4vw, 44px); }
  .pod-players { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(16px, 2.5vw, 24px); align-items: start; }
  .pod-yt { position: relative; display: block; min-width: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; background: #111; cursor: pointer; }
  .pod-yt img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
  .pod-yt:hover img { transform: scale(1.03); }
  .pod-yt:hover .pod-play { transform: translate(-50%, -50%) scale(1.09); }
  .pod-yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .pod-sp { min-width: 0; }
  .pod-sp iframe { display: block; width: 100%; }
  .pod-follow { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px; }
  .pod-follow-label { font-size: .9rem; color: var(--ink-soft); margin-right: 2px; }
  .pod-chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; padding: 10px 16px; border-radius: 999px; text-decoration: none; color: #fff; transition: transform .2s var(--ease-soft); }
  .pod-chip:hover { transform: translateY(-2px); }
  .pod-chip svg { width: 18px; height: 18px; }
  .pod-chip-yt { background: #FF0000; }
  .pod-chip-sp { background: #1DB954; }
  .pod-guest-label { margin-top: clamp(30px, 4vw, 48px); margin-bottom: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
  @media (max-width: 800px) { .pod-players { grid-template-columns: 1fr; } }

  /* ---------- v3-Feedback: Podcast-Umbau (eigener Podcast + Gäste + Form) ---------- */
  .pod-own { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(16px, 2.5vw, 28px); align-items: stretch; margin-top: clamp(28px, 4vw, 44px); }
  .pod-own-side { background: var(--warm); border-radius: 16px; padding: clamp(22px, 2.6vw, 36px); display: flex; flex-direction: column; justify-content: center; gap: 6px; min-width: 0; }
  .pod-own-side .kicker { color: var(--coral-text); }
  .pod-own-side h3 { font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.018em; margin-top: 8px; }
  .pod-own-side p { color: var(--ink-soft); text-wrap: pretty; margin-top: 4px; }
  .pod-own-side .pod-chip { align-self: flex-start; margin-top: 16px; }
  .pod-guests { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(16px, 2.5vw, 24px); align-items: start; }
  .pod-guest-sp iframe { display: block; width: 100%; }
  .pod-cta-row { margin-top: clamp(22px, 3vw, 36px); }
  .pod-cta-row .pod-cta { max-width: 680px; margin-inline: auto; }
  @media (max-width: 800px) { .pod-own, .pod-guests { grid-template-columns: 1fr; } }

  /* Team: Initialen-Platzhalter bis Foto vorliegt */
  .ts-card.ts-ph { display: flex; align-items: center; justify-content: center; background: var(--warm); color: var(--ink-soft); font-weight: 700; font-size: 1.5rem; letter-spacing: .05em; cursor: pointer; }

  /* Lead-Formulare live: Honeypot + Fehlerzustand */
  .lead-form .lf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
  .lead-form .lf-error { font-size: .88rem; color: #C7442B; }
  .finale .lead-form .lf-error { color: #FF9C8A; }
  .lead-form button[type="submit"][disabled] { opacity: .6; cursor: progress; }

/* ===== Launch-Politur 21.07 ===== */
/* #4 Video-Testimonial: Caption sauber UNTER das Video (statt Overlay-Kollision auf Mobil) */
.vt { position: relative; margin-top: clamp(32px, 4vw, 56px); }
.vt .vt-frame { margin-top: 0; }
.vt-facade.playing ~ .vt-cap { opacity: 0; pointer-events: none; }
@media (max-width: 640px) {
  .vt-frame .vt-quotemark { display: none; }
  .vt-cap { position: static; inset: auto; margin-top: 14px; padding: 0; color: var(--ink); flex-direction: column; align-items: flex-start; gap: 3px; }
  .vt-cap b { color: var(--ink); line-height: 1.3; }
  .vt-cap span { color: var(--ink-soft); }
}
/* #5 Mobile-Menü: einheitlich linksbündig (vorher Plain-Links zentriert, Gruppen links) */
@media (max-width: 900px) {
  .nav.open .nav-links { align-items: stretch; text-align: left; }
  .nav.open .nav-links > li { display: block; }
  .nav.open .nav-links a,
  .nav.open .nav-links .nav-trigger,
  .nav.open .nav-menu,
  .nav.open .nav-menu a { text-align: left; }
}
