/* =====================================================================
   YZ Media · neue-version
   Eigenständiger Entwurf. Farbwelt: tiefes Navy + Cyan, Glow als Lichtquelle.
   Typo: Bricolage Grotesque (Display) · Instrument Sans (Text)
   ===================================================================== */
:root {
  --bg:        #0a0e16;
  --bg-2:      #0e131d;
  --panel:     #111826;
  --panel-2:   #151d2c;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);
  --text:      #e8edf5;
  --text-2:    #aab4c3;
  --muted:     #7c8797;
  --cyan:      #00bbff;
  --cyan-2:    #339ce2;
  --cyan-deep: #2377ae;
  --orange:    #fb7c0b;
  --grad:      linear-gradient(135deg, #00bbff 0%, #339ce2 100%);
  --display:   "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --sans:      "Instrument Sans", "Manrope", system-ui, sans-serif;
  --r-sm: 10px; --r: 16px; --r-lg: 22px; --r-xl: 28px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --wrap: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

/* Typo-Skala – bewusst kompakt */
.h1 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; }
.h2 { font-size: clamp(24px, 2.6vw, 32px); }
.h3 { font-size: 18px; font-weight: 600; }
.sub { font-size: clamp(16px, 1.25vw, 18px); line-height: 1.55; color: var(--text-2); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--cyan);
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.head { max-width: 640px; }
.head .kicker { margin-bottom: 16px; }
.head .h2 { margin-bottom: 14px; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .kicker { justify-content: center; }
.head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
.head--row .head { max-width: 560px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  font: 600 14.5px/1 var(--sans); white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn--primary { color: #04121c; background: var(--grad); box-shadow: 0 8px 28px rgba(0,187,255,.25), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--primary:hover { filter: brightness(1.08); box-shadow: 0 14px 36px rgba(0,187,255,.4), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--ghost { color: var(--text); border: 1px solid var(--line-2); background: rgba(255,255,255,.03); }
.btn--ghost:hover { border-color: rgba(0,187,255,.6); background: rgba(0,187,255,.08); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 13.5px; }
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* Glow-Layer */
.glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(60px); opacity: .55; }
.glow--cyan { background: radial-gradient(closest-side, rgba(0,187,255,.55), transparent); }
.glow--deep { background: radial-gradient(closest-side, rgba(35,119,174,.5), transparent); }
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 100%);
}

/* Reveal */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* ---------------- Header ---------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.stuck { padding: 10px 0; background: rgba(10,14,22,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--line); }
.header .wrap { display: flex; align-items: center; gap: 24px; }
.logo img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative; padding: 8px 12px; border-radius: 999px;
  font-size: 14.5px; color: var(--text-2); transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: center; transition: transform .25s var(--ease); }
.nav a:hover, .nav a.on { color: var(--text); }
.nav a:hover::after, .nav a.on::after { transform: scaleX(1); }
.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-2); margin-left: auto; place-items: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text); }
.mnav { display: none; }
@media (max-width: 900px) {
  .nav, .header .btn { display: none; }
  .burger { display: grid; }
  .mnav { position: fixed; inset: 64px 0 auto 0; z-index: 49; padding: 12px var(--gutter) 20px; background: var(--bg); box-shadow: 0 24px 48px rgba(0,0,0,.5); border-bottom: 1px solid var(--line); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .3s var(--ease); }
  .mnav.open { display: block; transform: none; opacity: 1; pointer-events: auto; }
  .mnav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .mnav a.btn { display: inline-flex; justify-content: center; margin-top: 16px; width: 100%; padding: 0 20px; border-bottom: 0; font-size: 15px; }
}

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 84px); padding-bottom: clamp(40px, 6vw, 84px); }
.hero .glow--cyan { width: 760px; height: 760px; top: -320px; left: 50%; transform: translateX(-10%); }
.hero .glow--deep { width: 600px; height: 600px; bottom: -300px; left: -200px; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__copy .kicker { margin-bottom: 20px; }
.hero__copy .h1 { max-width: 15ch; margin-bottom: 18px; }
.hero__copy .h1 em { font-style: normal; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
@media (max-width: 960px) { .hero__copy .h1 { max-width: none; } .hero__copy .h1 em { white-space: nowrap; } }
@media (max-width: 640px) { .hero__copy .h1 { font-size: 26px; letter-spacing: -.025em; } }
.hero__copy .sub { max-width: 50ch; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero__proof div { display: flex; flex-direction: column; gap: 2px; }
.hero__proof b { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.hero__proof span { font-size: 12.5px; color: var(--muted); text-wrap: balance; }

.stage { position: relative; display: grid; place-items: center; min-height: 460px; }
.stage__ring {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(0,187,255,.18);
  background: radial-gradient(closest-side, rgba(0,187,255,.14), rgba(0,187,255,.03) 70%, transparent);
}
.stage__ring--2 { width: 380px; height: 380px; border-color: rgba(0,187,255,.28); background: none; }
.stage__phone { position: relative; width: min(280px, 60vw); filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
.chip {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(17,24,38,.85); border: 1px solid var(--line-2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.chip i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(0,187,255,.14); }
.chip i img { width: 16px; height: 16px; }
.chip b { display: block; font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.chip span { display: block; font-size: 11.5px; line-height: 1.2; margin-top: 2px; color: var(--muted); }
.chip--a { left: 0; top: 18%; }
.chip--b { right: 0; top: 46%; }
.chip--c { left: 8%; bottom: 10%; }
.chip--live b::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 10px #3ddc84; vertical-align: middle; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .stage { min-height: 400px; order: -1; }
  .stage__ring { width: 380px; height: 380px; } .stage__ring--2 { width: 280px; height: 280px; }
  .stage__phone { width: 220px; }
  .chip--a { left: -4px; } .chip--b { right: -4px; }
}

/* ---------------- Logos ---------------- */
.logos { padding-block: 26px; border-block: 1px solid var(--line); background: var(--bg-2); }
.logos .wrap { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 28px; }
.logos__lbl { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(40px, 5vw, 72px); padding-right: clamp(40px, 5vw, 72px); }
.marquee__group img { height: 26px; width: auto; opacity: .7; filter: grayscale(1) invert(1) brightness(2.2) contrast(1.15); mix-blend-mode: screen; transition: opacity .3s; }
.marquee__group img:hover { opacity: 1; }
.marquee__group img.as-is { filter: none; mix-blend-mode: normal; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (max-width: 720px) { .logos .wrap { grid-template-columns: 1fr; gap: 14px; } }

/* ---------------- Leistungen (Tabs) ---------------- */
.tabs { margin-top: 40px; }
.tabs__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.tab {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  min-height: 0; padding: 18px 18px 20px; gap: 14px; border-radius: 18px; text-align: left;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.tab::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120% 100% at 0% 0%, rgba(0,187,255,.22), transparent 55%); opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; }
.tab:hover { border-color: var(--line-2); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.tab[aria-selected="true"] { border-color: rgba(0,187,255,.5); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.tab[aria-selected="true"]:hover { transform: none; }
.tab[aria-selected="true"]::after { opacity: 1; }
.tab__no { position: absolute; top: 16px; right: 18px; font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--muted); transition: color .3s; }
.tab[aria-selected="true"] .tab__no { color: var(--cyan); }
.tab__ic {
  position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px;
  color: var(--cyan); background: rgba(0,187,255,.1); border: 1px solid rgba(0,187,255,.28);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.tab__ic svg { width: 22px; height: 22px; }
.tab:not([aria-selected="true"]):hover .tab__ic { background: rgba(0,187,255,.18); }
.tab[aria-selected="true"] .tab__ic { color: #04121c; background: var(--grad); border-color: transparent; box-shadow: 0 8px 22px rgba(0,187,255,.35); }
.tab__txt { position: relative; z-index: 1; display: block; }
.tab__txt b { display: block; font-family: var(--display); font-size: 16.5px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 4px; }
.tab__txt small { display: block; font-size: 13px; line-height: 1.45; color: var(--text-2); }
.tab__bar { position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.tab[aria-selected="true"] .tab__bar { transform: scaleX(1); }

.panel { --pad: clamp(24px, 3vw, 40px); display: none; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); margin-top: 14px; overflow: hidden; border-radius: 22px; border: 1px solid var(--line); background: var(--panel); }
.panel.on { display: grid; animation: fadein .45s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }
.panel__media {
  position: relative; display: block; padding: var(--pad); height: 440px;
  background: radial-gradient(70% 70% at 50% 60%, rgba(0,187,255,.18), transparent 70%), var(--bg-2);
  border-right: 1px solid var(--line);
}
.panel__media img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; border: 1px solid var(--line-2); box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.panel__cap { position: absolute; left: calc(var(--pad) * 2); bottom: calc(var(--pad) * 2); display: block; }
.panel__cap img { height: 26px; width: auto; max-width: 150px; object-fit: contain; border: 0; border-radius: 0; box-shadow: none; }
.panel__body { padding: var(--pad); display: flex; flex-direction: column; justify-content: center; height: 440px; }
.panel__body .kicker { margin-bottom: 12px; }
.panel__body .h3 { font-size: 24px; margin-bottom: 10px; }
.panel__body .sub { font-size: 15.5px; margin-bottom: 24px; }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; color: var(--text-2); }
.ck { flex: none; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; color: var(--cyan); background: rgba(0,187,255,.14); border: 1px solid rgba(0,187,255,.3); }
.ck svg { width: 12px; height: 12px; }
.panel__body .btn { align-self: flex-start; margin-top: 28px; }
@media (max-width: 900px) {
  .tabs__list { grid-template-columns: 1fr; gap: 10px; }
  .tab { min-height: 0; flex-direction: row; align-items: center; gap: 16px; padding: 16px 18px; }
  .tab__ic { width: 46px; height: 46px; } .tab__ic svg { width: 22px; height: 22px; }
  .tab__txt b { font-size: 16px; margin-bottom: 2px; } .tab__txt small { font-size: 13px; }
  .panel { grid-template-columns: 1fr; }
  .panel__media { height: 280px; border-right: 0; border-bottom: 1px solid var(--line); }
  .panel__body { height: auto; }
  .panel__cap { left: calc(var(--pad) * 2); bottom: calc(var(--pad) * 2); }
  .checks { grid-template-columns: 1fr; }
}

/* ---------------- Studentenstoff (Split) ---------------- */
.ss { position: relative; overflow: hidden; }
.glow--orange { background: radial-gradient(closest-side, rgba(251,124,11,.5), transparent); }
.ss .glow--orange { width: 720px; height: 720px; left: -260px; top: 50%; transform: translateY(-50%); opacity: .35; }
.ss__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.ss__stage { position: relative; display: grid; place-items: center; min-height: 560px; }
.ss__ring { position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(251,124,11,.28); background: radial-gradient(closest-side, rgba(251,124,11,.22), rgba(251,124,11,.04) 70%, transparent); }
.ss__ring::after { content: ""; position: absolute; inset: 44px; border-radius: 50%; border: 1px dashed rgba(251,124,11,.3); }
.ss__phone { position: relative; width: min(270px, 62vw); filter: drop-shadow(0 40px 60px rgba(0,0,0,.65)); animation: floaty 8s ease-in-out infinite; }
.chip--ss i { background: rgba(251,124,11,.16); }
.chip--ss i img { filter: none; }
.ss__chip1 { left: 0; top: 16%; } .ss__chip2 { right: -6px; top: 44%; } .ss__chip3 { left: 6%; bottom: 12%; }
.kicker--orange { color: var(--orange); } .kicker--orange::before { background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.ss__copy .kicker { margin-bottom: 16px; }
.ss__copy .h2 { font-size: clamp(30px, 3.2vw, 40px); margin-bottom: 6px; }
.ss__claim { font-family: var(--display); font-size: clamp(19px, 1.7vw, 23px); font-weight: 500; letter-spacing: -.01em; color: transparent; background: linear-gradient(90deg, #ff9f2a, #fb7c0b); -webkit-background-clip: text; background-clip: text; margin-bottom: 16px; }
.ss__copy .sub { max-width: 54ch; }
.ss__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.ss__stats div { padding: 18px 20px; border-radius: 16px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); }
.ss__stats b { display: block; font-family: var(--display); font-size: clamp(26px, 2.4vw, 32px); font-weight: 600; letter-spacing: -.03em; color: transparent; background: linear-gradient(90deg, #ffb25a, #fb7c0b); -webkit-background-clip: text; background-clip: text; }
.ss__stats span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); text-wrap: balance; }
.ss__row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 13px; color: var(--text-2); transition: .2s; }
.pill img { width: 14px; height: 14px; }
.pill:hover { border-color: var(--orange); color: var(--text); }
.ss__fact { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 18px; align-items: center; margin-top: clamp(32px, 4vw, 56px); padding: 20px 24px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(0,187,255,.1), var(--panel) 50%); }
.ss__fact i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(0,187,255,.14); }
.ss__fact i img { width: 22px; height: 22px; }
.ss__fact p { font-size: 15px; color: var(--text-2); } .ss__fact p b { color: var(--text); font-weight: 600; }
@media (max-width: 960px) {
  .ss__grid { grid-template-columns: 1fr; }
  .ss__stage { min-height: 460px; order: -1; } .ss__ring { width: 340px; height: 340px; } .ss__phone { width: 220px; }
  .ss__fact { grid-template-columns: 48px 1fr; } .ss__fact .btn { grid-column: 2; justify-self: start; }
}
@media (max-width: 560px) { .ss__stats { grid-template-columns: 1fr 1fr; gap: 10px; } .ss__stats div { padding: 14px 14px; } }
@media (max-width: 560px) {
  .chip { gap: 8px; padding: 8px 10px; border-radius: 12px; }
  .chip i { width: 26px; height: 26px; border-radius: 8px; }
  .chip i img { width: 13px; height: 13px; }
  .chip b { font-size: 14px; }
  .chip span { font-size: 10px; }
}

/* ---------------- Native Advertising (Anatomie eines Posts) ---------------- */
.native { background: var(--bg-2); border-block: 1px solid var(--line); }
.anat { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.anat__copy .kicker { margin-bottom: 16px; }
.anat__copy .h2 { margin-bottom: 14px; }
.anat__copy .sub { max-width: 52ch; }
.hots { display: grid; gap: 8px; margin-top: 28px; }
.hot {
  display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: start;
  padding: 14px 16px; border-radius: 16px; text-align: left;
  border: 1px solid var(--line); background: var(--panel);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.hot:hover { border-color: var(--line-2); }
.hot.on { border-color: rgba(0,187,255,.45); background: linear-gradient(90deg, rgba(0,187,255,.12), var(--panel) 60%); }
.hot__no { display: block; width: 34px; padding-top: 1px; font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: .06em; color: var(--muted); transition: color .25s var(--ease); }
.hot.on .hot__no { color: var(--cyan); }
/* Der Beschreibungstext faehrt auf: die zweite Rasterzeile waechst von 0fr auf 1fr.
   Anders als display:none/block laesst sich das weich ueberblenden. */
.hot__txt { display: grid; grid-template-rows: auto 0fr; transition: grid-template-rows .45s var(--ease); }
.hot__txt b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; text-wrap: balance; }
.hot__txt span { overflow: hidden; min-height: 0; font-size: 13.5px; line-height: 1.5; color: var(--text-2); opacity: 0; transition: opacity .25s var(--ease); }
.hot.on .hot__txt { grid-template-rows: auto 1fr; }
.hot.on .hot__txt span { opacity: 1; transition-delay: .15s; }

.anat__stage { position: relative; display: grid; justify-items: center; gap: 22px; }
.anat__glow { position: absolute; left: 50%; top: 40%; width: 460px; height: 460px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(0,187,255,.28), transparent); filter: blur(30px); pointer-events: none; }
.anat__phone { position: relative; width: min(280px, 60vw); margin-inline: 80px; }
.anat__phone img { display: block; border-radius: 28px; border: 1px solid var(--line-2); box-shadow: 0 40px 90px rgba(0,0,0,.65); }
.mark { position: absolute; inset: 0; pointer-events: none; }
.mark__dot { display: none; }
.mark__line { position: absolute; top: var(--y); height: 1px; background: rgba(255,255,255,.55); transition: background .25s var(--ease); }
.mark--l .mark__line { left: -40px; width: calc(var(--x) + 40px); }
.mark--r .mark__line { left: var(--x); width: calc(100% - var(--x) + 40px); }
.mark__no {
  position: absolute; top: var(--y); width: 34px; height: 34px; margin-top: -17px; border-radius: 50%;
  pointer-events: auto; display: grid; place-items: center;
  font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); box-shadow: 0 8px 20px rgba(0,0,0,.45);
  transition: .25s var(--ease);
}
.mark--l .mark__no { left: -40px; margin-left: -34px; }
.mark--r .mark__no { right: -40px; margin-right: -34px; }
.mark__no:hover { border-color: var(--cyan); }
.mark.on .mark__line { background: var(--cyan); }
.mark.on .mark__no { color: #04121c; background: var(--grad); border-color: transparent; box-shadow: 0 8px 20px rgba(0,0,0,.45); }
.anat__result { display: flex; align-items: center; gap: 0; padding: 0 4px; }
.anat__stat { display: flex; align-items: center; gap: 10px; padding: 0 22px; }
.anat__stat + .anat__stat { border-left: 1px solid var(--line-2); }
.anat__stat i { display: grid; place-items: center; width: 18px; height: 18px; opacity: .8; }
.anat__stat i img { width: 16px; height: 16px; }
.anat__stat b { display: block; font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
.anat__stat span { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) {
  .anat { grid-template-columns: 1fr; }
  .anat__stage { order: -1; }
  .anat__stat { padding: 0 14px; } .anat__stat b { font-size: 16px; }
  .anat__phone { width: min(230px, 56vw); margin-inline: 56px; }
  .mark--l .mark__line { left: -30px; width: calc(var(--x) + 30px); } .mark--r .mark__line { width: calc(100% - var(--x) + 30px); }
  .mark--l .mark__no { left: -30px; } .mark--r .mark__no { right: -30px; }
}

.points { display: grid; gap: 14px; }
.points--row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.points li {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
  padding: 20px 20px 22px; border-radius: 16px; border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .3s var(--ease);
}
.points li:hover { border-color: rgba(0,187,255,.35); }
.points i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--grad); box-shadow: 0 4px 12px rgba(0,187,255,.12); }
.points i img { width: 20px; height: 20px; }
.points b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; text-wrap: balance; }

.points span { font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
@media (max-width: 900px) {
  .vs { grid-template-columns: 1fr; gap: 14px; }
  .vs__mid { display: none; }
  .vs__screen { min-height: 360px; }
  .story .chip--a { left: -8%; } .story .chip--b { right: -8%; }
  .points--row { grid-template-columns: 1fr; }
}

/* ---------------- Cases (Slider) ---------------- */
.cases { position: relative; overflow: hidden; }
.cases .glow--deep { width: 800px; height: 500px; left: 50%; bottom: -350px; transform: translateX(-50%); opacity: .4; }
.slider { position: relative; margin-top: 36px; }
.track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(360px, 82vw); gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: 14px var(--gutter) 26px; margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }
.case { scroll-snap-align: start; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--panel); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); will-change: transform; }
/* Leichtes Hervorkommen per Scale: vergrößert die Trefferfläche nur, kein Flackern an der Kante */
.case, .case:hover { text-decoration: none; color: inherit; }
.case:hover { transform: scale(1.02); border-color: rgba(0,187,255,.4); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,187,255,.15); }
.case__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.case__media img { width: 100%; height: 100%; object-fit: cover; }
.case__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,14,22,.85)); }
/* Spezifität > .case__media img, sonst wird das Logo zum Vollbild */
.case__media img.case__logo { position: absolute; left: 18px; bottom: 16px; top: auto; width: auto; height: 24px; max-width: 46%; object-fit: contain; z-index: 1; transform: none; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.case__tag { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 5px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: rgba(10,14,22,.7); border: 1px solid var(--line-2); backdrop-filter: blur(8px); }
.case__tag--recruiting { color: #7ad7ff; } .case__tag--image { color: #b7a7ff; } .case__tag--awareness { color: #ffc27a; }
.case__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.case__body .h3 { font-size: 18px; margin-bottom: 8px; }
.case__body p { font-size: 14px; color: var(--text-2); }
.kpis { display: flex; gap: 22px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.case__body p { margin-bottom: 18px; }
.kpis div b { display: block; font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.02em; color: var(--cyan); }
.kpis div span { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.slider__nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 6px; }
.dots { display: flex; gap: 6px; }
.dots button { width: 22px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.14); transition: .3s; }
.dots button.on { background: var(--cyan); width: 36px; }
.arrows { display: flex; gap: 8px; }
.arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .25s var(--ease); }
.arrow:hover { border-color: var(--cyan); background: rgba(0,187,255,.1); }
.arrow svg { width: 16px; height: 16px; }

/* ---------------- Prozess (Stepper) ---------------- */
.process { background: var(--bg-2); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 36px; position: relative; }
.steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2) 15%, var(--line-2) 85%, transparent); }
.step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 4px 8px 12px; border-radius: var(--r); text-align: center; transition: .25s var(--ease); }
.step i { position: relative; z-index: 1; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; border: 1px solid var(--line-2); background: var(--panel); transition: .3s var(--ease); }
.step i img { width: 20px; height: 20px; }
.step b { display: block; font-family: var(--display); font-size: 15px; font-weight: 600; }
.step small { display: block; font-size: 11.5px; letter-spacing: .1em; color: var(--muted); }
.step:hover i { border-color: rgba(0,187,255,.5); }
.step[aria-selected="true"] i { border-color: var(--cyan); background: linear-gradient(135deg, rgba(0,187,255,.28), rgba(0,187,255,.08)), var(--panel); box-shadow: 0 10px 30px rgba(0,187,255,.25); }
/* Linie endet vor dem Icon: Lücke in Sektionsfarbe um das Icon */
.step::before { content: ""; position: absolute; top: 24px; left: 50%; width: 76px; height: 5px; transform: translateX(-50%); background: var(--bg-2); }
.step[aria-selected="true"] small { color: var(--cyan); }
.stepbox { margin-top: 22px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.stepbox__main { position: relative; overflow: hidden; padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; }
.stepbox__ghost { position: absolute; right: 28px; top: 22px; font-family: var(--display); font-size: 64px; font-weight: 700; letter-spacing: -.04em; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(0,187,255,.22); pointer-events: none; }
.stepbox__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.stepbox__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--grad); box-shadow: 0 8px 22px rgba(0,187,255,.3); }
.stepbox__ic img { width: 20px; height: 20px; }
.stepbox__main .kicker { margin: 0; }
.stepbox__main .h3 { position: relative; font-size: 24px; margin-bottom: 10px; }
.stepbox__main p { position: relative; color: var(--text-2); font-size: 15.5px; max-width: 52ch; }
.stepbox__res { position: relative; display: flex; align-items: baseline; gap: 12px; margin-top: 20px; padding: 12px 16px; border-radius: 12px; border-left: 2px solid var(--cyan); background: rgba(0,187,255,.07); }
.stepbox__res span { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); white-space: nowrap; }
.stepbox__res b { font-size: 14.5px; font-weight: 600; }
.stepbox__nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 24px; }
.stepbox__prog { display: flex; gap: 6px; }
.stepbox__prog i { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); }
.stepbox__prog i.on { background: var(--grad); }
.stepbox__arrows { display: flex; gap: 8px; }
.stepbox__arrows .arrow[disabled] { opacity: .3; cursor: default; }
.stepbox__arrows .arrow[disabled]:hover { border-color: var(--line-2); background: none; }
.stepbox__side { padding: clamp(24px, 3vw, 36px); border-left: 1px solid var(--line); background: linear-gradient(180deg, rgba(0,187,255,.09), rgba(0,187,255,.03)); }
.stepbox__side h4 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.stepbox__side ul { display: grid; }
.stepbox__side li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.5; color: var(--text); }
.stepbox__side li:last-child { border-bottom: 1px solid var(--line); }
.stepbox__side .q { display: block; width: 18px; height: 2px; margin-top: 10px; border-radius: 1px; background: var(--cyan); }
.stepbox__side .q svg { display: none; }
.steppanel { display: none; } .steppanel.on { display: contents; animation: fadein .4s var(--ease); }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 4px; } .steps::before { display: none; }
  .step b { font-size: 12px; } .step i { width: 44px; height: 44px; }
  .stepbox { grid-template-columns: 1fr; } .stepbox__side { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------------- Testimonials ---------------- */
.voices { position: relative; margin-top: 36px; }
.voice { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(24px, 3vw, 40px); border-radius: var(--r-xl); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(0,187,255,.08), var(--panel) 45%); position: absolute; inset: 0; opacity: 0; transform: translateX(24px); transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; }
.voice.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.voice__who { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.voice__logo { display: grid; place-items: center; width: 132px; height: 72px; padding: 8px 12px; border-radius: 16px; border: 1px solid var(--line-2); background: rgba(255,255,255,.05); }
.voice__logo img { width: 100%; height: 100%; object-fit: contain; }
.voice__logo img.inv { filter: brightness(0) invert(1); opacity: .95; }
.voice__who .voice__logo--mono { display: grid; width: 72px; margin: 0; background: var(--grad); border-color: transparent; color: #04121c; font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1; letter-spacing: .02em; }
.voice__who b { display: block; font-family: var(--display); font-size: 16px; font-weight: 600; }
.voice__who span { display: block; font-size: 13px; color: var(--muted); line-height: 1.45; }
.voice blockquote { margin: 0; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.6; color: var(--text-2); }
.voice blockquote strong { color: var(--cyan); font-weight: 600; }
.voice blockquote { position: relative; padding-top: 34px; }
.voice blockquote::before { content: "\201D"; position: absolute; left: -4px; top: -14px; font-family: var(--display); font-size: 72px; font-weight: 700; line-height: 1; color: var(--cyan); opacity: .55; }
.voice__logo { border-color: rgba(0,187,255,.35); background: rgba(0,187,255,.06); }
.voice__who b { color: var(--text); }
.voice__who > div { padding-left: 12px; border-left: 2px solid var(--cyan); }
.voice blockquote p + p { margin-top: .8em; }
@media (max-width: 760px) {
  .voice { grid-template-columns: 1fr; gap: 18px; padding: 22px 20px; }
  .voice__who { flex-direction: row; align-items: center; gap: 12px; }
  .voice__logo { width: 104px; height: 56px; }
  .voice__who .voice__logo--mono { width: 56px; height: 56px; font-size: 18px; }
  .voice__who > div { padding-left: 10px; }
  .voice__who span { font-size: 12.5px; }
  .voice blockquote { font-size: 15px; line-height: 1.55; padding-top: 22px; }
  .voice blockquote::before { font-size: 52px; top: -10px; }
}

/* ---------------- FAQ ---------------- */
.faq { background: var(--bg-2); border-block: 1px solid var(--line); }
.faq__grid { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq__grid .head { position: sticky; top: 90px; }
.acc { display: grid; gap: 8px; }
.acc__item { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); overflow: hidden; transition: border-color .25s; }
.acc__item.open { border-color: rgba(0,187,255,.4); }
.acc__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 18px 20px; text-align: left; font: 600 15.5px/1.35 var(--sans); }
.acc__q i { flex: none; position: relative; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); transition: .3s var(--ease); }
.acc__q i::before, .acc__q i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; background: var(--text); transform: translate(-50%, -50%); border-radius: 1px; transition: .3s var(--ease); }
.acc__q i::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__item.open .acc__q i { border-color: var(--cyan); background: rgba(0,187,255,.14); }
.acc__item.open .acc__q i::after { transform: translate(-50%, -50%) rotate(0); }
.acc__p { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__in { padding: 0 20px 20px; font-size: 14.5px; color: var(--text-2); }
.acc__in a { color: var(--cyan); }
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; } .faq__grid .head { position: static; } }

/* ---------------- CTA (Buchungskarte) ---------------- */
.cta { position: relative; overflow: hidden; }
.cta .glow--cyan { width: 800px; height: 600px; right: -200px; top: 50%; transform: translateY(-50%); opacity: .35; }
.book { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.book__copy .kicker { margin-bottom: 14px; }
.book__copy .h2 { margin-bottom: 12px; }
.book__copy .sub { max-width: 46ch; }
.book__facts { display: grid; gap: 10px; margin-top: 22px; }
.book__facts li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-2); }
.book__facts svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.book__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--text-2); }
.book__meta a { display: inline-flex; align-items: center; gap: 8px; } .book__meta a:hover { color: var(--cyan); }
.book__meta img { width: 14px; height: 14px; opacity: .8; }

.book__card { display: flex; flex-direction: column; gap: 16px; padding: clamp(20px, 2.4vw, 28px); border-radius: 22px; border: 1px solid rgba(0,187,255,.3); background: linear-gradient(160deg, rgba(0,187,255,.12), var(--panel) 55%); box-shadow: 0 30px 80px rgba(0,0,0,.5); text-decoration: none; color: inherit; transition: border-color .3s var(--ease), transform .3s var(--ease); will-change: transform; }
.book__card:hover { border-color: rgba(0,187,255,.6); transform: scale(1.01); }
.book__head { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; }
.book__head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; border: 2px solid var(--cyan); }
.book__head b { display: block; font-family: var(--display); font-size: 15.5px; font-weight: 600; }
.book__head span { display: block; font-size: 12.5px; color: var(--muted); }
.book__badge { padding: 5px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; color: var(--cyan); background: rgba(0,187,255,.12); border: 1px solid rgba(0,187,255,.3); }
.book__quote { font-size: 15px; line-height: 1.6; color: var(--text); padding-left: 14px; border-left: 2px solid var(--cyan); margin: 4px 0 6px; }
.book__btn { width: 100%; margin-top: 4px; }
.book__note { text-align: center; font-size: 11.5px; color: var(--muted); }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } }

/* ---------------- Footer ---------------- */
.footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer p { margin-top: 14px; max-width: 34ch; font-size: 14px; color: var(--text-2); }
.footer h4 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer li + li { margin-top: 8px; }
.footer li a { font-size: 14.5px; color: var(--text-2); } .footer li a:hover { color: var(--cyan); }
.social { display: flex; gap: 8px; margin-top: 18px; }
.social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); transition: .25s; }
.social a:hover { border-color: var(--cyan); background: rgba(0,187,255,.1); }
.social img { height: 15px; width: auto; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.footer__bottom a:hover { color: var(--text); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------------- Cookie-Hinweis ---------------- */
.cookie {
  position: fixed; left: 50%; bottom: 18px; z-index: 60; transform: translateX(-50%);
  width: min(100% - 2 * var(--gutter), 700px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 10px 10px 16px; border-radius: 14px;
  background: rgba(17,24,38,.9); border: 1px solid var(--line-2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  animation: cookie-in .5s var(--ease);
}
.cookie[hidden] { display: none; }
@keyframes cookie-in { from { opacity: 0; transform: translate(-50%, 14px) } to { opacity: 1; transform: translate(-50%, 0) } }
.cookie p { font-size: 12.5px; line-height: 1.5; color: var(--text-2); max-width: 46ch; }
.cookie a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; flex: none; gap: 8px; }
.cookie .btn--sm { min-height: 32px; padding: 0 14px; text-transform: uppercase; letter-spacing: .06em; font-size: 11px; }
@media (max-width: 720px) {
  .cookie { flex-direction: column; align-items: stretch; bottom: 10px; padding: 16px; }
  .cookie__actions { justify-content: stretch; } .cookie__actions .btn { flex: 1; }
}

/* Screenshot-Modus fuer Open-Graph-Bilder (?og=1) */
html.og .header, html.og .mnav, html.og .cookie, html.og .grid-bg { display: none !important; }
html.og .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
html.og .stage__phone, html.og .ss__phone { animation: none !important; }
