/* ============================================================
   GEORG RECRUITING – KOMPONENTEN & LAYOUT
   Glass/Motion-Look, aufbauend auf theme.css
   ============================================================ */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: rgb(var(--color-ink));
  background: rgb(var(--color-bg));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid rgb(var(--brand-600)); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: rgb(var(--color-heading));
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
p { color: rgb(var(--gray-600)); }
strong { font-weight: var(--fw-semibold); color: rgb(var(--color-heading)); }

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 0.6rem + 2vw, 2rem); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(3rem, 2rem + 3vw, 4.5rem); }
.section-dark { position: relative; background: var(--gradient-hero), rgb(var(--color-bg-dark)); color: rgb(var(--gray-100)); overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(58% 80% at 10% 0%, rgb(var(--brand-500) / 0.30), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgb(var(--accent-mid) / 0.18), transparent 55%); }
.section-dark::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.5;
  background-image: radial-gradient(rgb(var(--white) / 0.05) 1px, transparent 1px); background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%); mask-image: linear-gradient(180deg, #000, transparent 70%); }
.section-dark > .container { position: relative; z-index: 1; }
.section-soft { background: rgb(var(--color-bg-soft)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgb(var(--brand-600));
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; border-radius: 2px; background: rgb(var(--brand-600)); }
.section-dark .eyebrow { color: rgb(var(--accent-mid)); }
.section-dark .eyebrow::before { background: rgb(var(--accent-mid)); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 1.5rem + 2vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; font-size: var(--fs-lead); }
.section-dark h2, .section-dark h3 { color: rgb(var(--white)); }
.section-dark p { color: rgb(var(--brand-100)); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: rgb(var(--brand-600));
  --_fg: rgb(var(--white));
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem; border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold); font-size: var(--fs-body);
  background: var(--_bg); color: var(--_fg);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur);
  box-shadow: var(--shadow-brand); white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -12px rgb(var(--brand-600) / 0.6); }
.btn:active { transform: translateY(0); }
.btn-primary { --_bg: rgb(var(--brand-600)); }
.btn-primary:hover { background: rgb(var(--brand-700)); }
.btn-secondary {
  --_bg: rgb(var(--white)); --_fg: rgb(var(--brand-700));
  box-shadow: inset 0 0 0 1.5px rgb(var(--brand-200)), var(--shadow-sm);
}
.btn-secondary:hover { background: rgb(var(--brand-25)); box-shadow: inset 0 0 0 1.5px rgb(var(--brand-300)), var(--shadow-md); }
.btn-ghost { --_bg: transparent; --_fg: rgb(var(--gray-700)); box-shadow: inset 0 0 0 1.5px rgb(var(--gray-200)); }
.btn-ghost:hover { background: rgb(var(--gray-50)); box-shadow: inset 0 0 0 1.5px rgb(var(--gray-300)); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--fs-lead); }
.on-dark .btn-secondary, .section-dark .btn-secondary {
  --_bg: rgb(var(--white) / 0.08); --_fg: rgb(var(--white));
  box-shadow: inset 0 0 0 1.5px rgb(var(--white) / 0.25);
  backdrop-filter: blur(8px);
}
.on-dark .btn-secondary:hover, .section-dark .btn-secondary:hover { background: rgb(var(--white) / 0.16); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: var(--fw-semibold); color: rgb(var(--brand-600));
  transition: gap var(--dur) var(--ease-out), color var(--dur);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover { gap: 0.65rem; color: rgb(var(--brand-700)); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Glas-Karten ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border-dark);
}

/* ---------- Scroll-Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding-top: 0.9rem; }
.site-header .container { position: relative; }

/* Liquid-Glass-Pill */
.nav-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 60px; padding: 0 0.5rem 0 1.4rem; border-radius: var(--radius-pill);
  background: rgb(var(--white) / 0.72);
  backdrop-filter: blur(18px) saturate(170%); -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgb(var(--white) / 0.6);
  box-shadow: 0 12px 32px -14px rgb(var(--brand-950) / 0.2), inset 0 1px 0 rgb(var(--white) / 0.6);
  transition: box-shadow var(--dur), background var(--dur);
}
.site-header.scrolled .nav-pill { background: rgb(var(--white) / 0.86); box-shadow: 0 16px 38px -14px rgb(var(--brand-950) / 0.26), inset 0 1px 0 rgb(var(--white) / 0.6); }
.nav-brand { display: flex; align-items: center; color: rgb(var(--brand-950)); }
.nav-brand .logo { width: 150px; height: auto; }
.nav-pill-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-cta { padding: 0.6rem 1.25rem; box-shadow: var(--shadow-sm); }
.nav-cta:hover { box-shadow: var(--shadow-md); }

/* Burger */
.nav-toggle { display: inline-flex; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; background: rgb(var(--brand-50)); transition: background var(--dur); }
.nav-toggle:hover { background: rgb(var(--brand-100)); }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: rgb(var(--brand-950)); border-radius: 2px; transition: background var(--dur); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: rgb(var(--brand-950)); border-radius: 2px; transition: transform var(--dur); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* Dropdown-Panel (Glas) */
.nav-panel {
  position: absolute; top: calc(100% + 0.6rem); right: 0; width: min(360px, calc(100vw - 2rem));
  border-radius: var(--radius-lg);
  background: rgb(var(--white) / 0.82);
  backdrop-filter: blur(22px) saturate(170%); -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgb(var(--white) / 0.6); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98); transform-origin: top right;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur);
  z-index: 101; max-height: calc(100vh - 6rem); overflow-y: auto;
}
body.menu-open .nav-panel { opacity: 1; visibility: visible; transform: none; }
.nav-panel-inner { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.8rem; }
.nav-panel-link { padding: 0.8rem 1rem; border-radius: var(--radius-md); font-weight: var(--fw-medium); color: rgb(var(--gray-800)); transition: background var(--dur), color var(--dur); }
.nav-panel-link:hover, .nav-panel-link.active { background: rgb(var(--brand-50)); color: rgb(var(--brand-700)); }
.nav-panel-group { padding: 0.3rem 0 0.2rem; }
.nav-panel-label { display: block; padding: 0.4rem 1rem; font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.08em; color: rgb(var(--gray-500)); font-weight: var(--fw-semibold); }
.nav-panel-sub { display: flex; flex-direction: column; padding: 0.55rem 1rem; border-radius: var(--radius-md); transition: background var(--dur); }
.nav-panel-sub:hover { background: rgb(var(--brand-50)); }
.nav-panel-sub strong { color: rgb(var(--brand-950)); font-weight: var(--fw-semibold); font-size: 0.95rem; }
.nav-panel-sub span { font-size: var(--fs-small); color: rgb(var(--gray-500)); }
.nav-panel-cta { margin-top: 0.6rem; justify-content: center; }

/* Scrim */
.nav-scrim { position: fixed; inset: 0; background: rgb(var(--brand-950) / 0.18); opacity: 0; visibility: hidden; transition: opacity var(--dur); z-index: 99; }
body.menu-open .nav-scrim { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 860px); display: flex; align-items: center;
  color: rgb(var(--white)); text-align: center;
  padding-block: clamp(5rem, 4rem + 6vw, 8.5rem);
  background: rgb(var(--brand-950));
}
/* Durchlaufendes Hintergrundvideo (wie Original) */
.hero-bg { position: absolute; inset: 0; z-index: 0; background: rgb(var(--brand-950)); }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.46) saturate(1.05); }
.hero-bg::after { /* zusätzliches Overlay für Markenton + Lesbarkeit */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgb(var(--brand-950) / 0.55) 0%, rgb(var(--brand-900) / 0.35) 45%, rgb(var(--brand-950) / 0.75) 100%),
    radial-gradient(80% 70% at 50% 48%, rgb(var(--brand-950) / 0.35), transparent 80%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 900px; margin-inline: auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.3rem; font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.2em; color: rgb(var(--accent-light)); }
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 28px; height: 1px; background: rgb(var(--accent-light) / 0.5); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 1.6rem;
  padding: 0.5rem 1.05rem; border-radius: var(--radius-pill);
  font-size: var(--fs-small); font-weight: var(--fw-medium); color: rgb(var(--white));
  background: rgb(var(--white) / 0.1); border: 1px solid rgb(var(--white) / 0.2);
  backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: rgb(var(--accent-light)); box-shadow: 0 0 0 4px rgb(var(--accent-light) / 0.25); }
.hero h1 { color: rgb(var(--white)); font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.5rem); font-weight: var(--fw-extrabold); line-height: 1.1; text-shadow: 0 2px 30px rgb(var(--brand-950) / 0.55); }
.hero-lead { text-shadow: 0 1px 16px rgb(var(--brand-950) / 0.5); }
.hero h1 .gradient-text { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { margin: 1.4rem auto 0; font-size: var(--fs-lead); color: rgb(var(--brand-100)); max-width: 58ch; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.hero-trust { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.7rem; font-size: var(--fs-small); color: rgb(var(--brand-100)); }
.hero-trust .stars { color: #ffc24b; letter-spacing: 2px; }

/* ============================================================
   LOGO-MARQUEE  (Hunderte Unternehmen …)
   ============================================================ */
.logos-band { padding-block: clamp(2.2rem, 1.6rem + 2vw, 3.4rem); background: rgb(var(--white)); border-block: 1px solid rgb(var(--gray-100)); }
.logos-band-counts { background: rgb(var(--brand-25)); }
.logos-band .kicker { text-align: center; font-size: var(--fs-small); font-weight: var(--fw-medium); color: rgb(var(--gray-500)); margin-bottom: 1.8rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 1rem; width: max-content; animation: marquee 80s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
/* Logo-Chip (nur Logo, oberes Band) */
.logo-chip { flex-shrink: 0; height: 92px; width: 178px; padding: 1rem 1.4rem; border-radius: var(--radius-lg); background: rgb(var(--white)); border: 1px solid rgb(var(--gray-100)); box-shadow: var(--shadow-xs); display: grid; place-items: center; }
.logo-chip img { max-height: 50px; max-width: 140px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter var(--dur), opacity var(--dur); }
.logo-chip:hover img { filter: none; opacity: 1; }
/* Partner-Card (Logo + echte Einstellungszahl, unteres Band) */
.partner-card { flex-shrink: 0; width: 212px; padding: 1.3rem 1.3rem 1.1rem; border-radius: var(--radius-lg); background: rgb(var(--white)); border: 1px solid rgb(var(--gray-100)); box-shadow: var(--shadow-xs); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-card img { height: 44px; width: auto; max-width: 150px; object-fit: contain; }
.p-count { font-size: var(--fs-small); color: rgb(var(--gray-600)); white-space: nowrap; }
.p-count strong { color: rgb(var(--brand-600)); font-weight: var(--fw-extrabold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   INTRO – "Wir sprechen die Sprache der Pflege"
   ============================================================ */
/* Alternierende Split-Rows (Text | Medium) */
.split-stack { display: flex; flex-direction: column; gap: clamp(3rem, 2rem + 4vw, 6rem); }
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.split-row.reverse .split-copy { order: 2; }
.split-copy h2 { margin-bottom: 1.1rem; }
.split-copy p + p { margin-top: 1rem; }
.split-copy .intro-pills { margin-top: 1.6rem; }
.intro-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.intro-eyebrow { display: inline-block; padding: 0.5rem 1.1rem; margin-bottom: 1.2rem; border-radius: var(--radius-pill); background: rgb(var(--brand-50)); color: rgb(var(--brand-700)); font-size: var(--fs-small); font-weight: var(--fw-semibold); }
/* Radar-Lottie (Intro-Visual „Personalmarketing das hängen bleibt") */
.intro-lottie { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-xl); background: rgb(var(--gray-50)); border: 1px solid rgb(var(--gray-100)); overflow: hidden; }
.intro-lottie dotlottie-wc { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.pill { padding: 0.5rem 1rem; border-radius: var(--radius-pill); background: rgb(var(--brand-50)); color: rgb(var(--brand-700)); font-size: var(--fs-small); font-weight: var(--fw-medium); }

/* Generisches Video-Embed (Klick lädt Vimeo) */
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; background: rgb(var(--brand-950)); box-shadow: var(--shadow-lg); }
.video-embed img, .video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-embed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(var(--brand-950) / 0.04) 40%, rgb(var(--brand-950) / 0.42)); pointer-events: none; }
.video-embed .play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--white) / 0.95); color: rgb(var(--brand-600)); box-shadow: var(--shadow-md); transition: transform var(--dur) var(--ease-out); z-index: 2; }
.video-embed .play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-embed:hover .play { transform: scale(1.1); }
.video-embed .video-cap { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--radius-pill); background: rgb(var(--brand-950) / 0.42); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgb(var(--white) / 0.22); color: rgb(var(--white)); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; box-shadow: var(--shadow-sm); }
.video-embed .video-cap::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgb(var(--brand-400)); box-shadow: 0 0 0 3px rgb(var(--brand-400) / 0.28); }
.video-embed.has-frame::after, .video-embed.has-frame .play, .video-embed.has-frame .video-cap { display: none; }

/* Kreativ-Stack (echte Kampagnen-Creatives, schwebend) */
.creative-stack { position: relative; height: clamp(330px, 38vw, 440px); }
.creative { position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid rgb(var(--white)); background: rgb(var(--white)); }
.creative img { display: block; width: 100%; height: 100%; object-fit: cover; }
.creative.c1 { width: 52%; left: 0; top: 8%; z-index: 2; animation: floaty 6s ease-in-out infinite; }
.creative.c2 { width: 50%; right: 0; top: 0; z-index: 3; animation: floaty 6s ease-in-out infinite 1.3s; }
.creative.c3 { width: 44%; right: 12%; bottom: 0; z-index: 1; animation: floaty 7s ease-in-out infinite 0.6s; }
@keyframes floaty { 50% { transform: translateY(-13px); } }

/* Zitat-Band */
.quote-band { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
.quote-band .q { font-size: var(--fs-h2); font-weight: var(--fw-bold); line-height: var(--lh-snug); color: rgb(var(--brand-950)); letter-spacing: -0.01em; }
.quote-band .quote-side p { color: rgb(var(--gray-600)); margin-bottom: 1.4rem; }

/* ============================================================
   ZIELGRUPPEN-GRID
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tg-card {
  position: relative; border-radius: var(--radius-lg); background: rgb(var(--white));
  border: 1px solid rgb(var(--gray-100)); box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
  display: flex; flex-direction: column; overflow: hidden;
}
.tg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* Großes freigestelltes Porträt auf weichem Fade – minimale, kaum sichtbare Box */
.tg-photo { position: relative; height: 380px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  background: radial-gradient(80% 78% at 50% 116%, rgb(var(--brand-100) / 0.7), rgb(var(--brand-50) / 0.35) 46%, rgb(var(--white)) 76%); }
.tg-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 16px 26px rgb(var(--brand-950) / 0.16)); transition: transform var(--dur) var(--ease-out); }
.tg-card:hover .tg-photo img { transform: scale(1.035); }
.tg-body { padding: 1.1rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; text-align: center; }
.tg-card h3 { font-size: 1.12rem; }
.tg-card p { font-size: var(--fs-small); flex: 1; }
.tg-card .link-arrow { font-size: var(--fs-small); margin-top: 0.4rem; justify-content: center; }

/* ============================================================
   ERGEBNISSE / STATS  (dunkel)
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
.stat { text-align: center; display: flex; flex-direction: column; align-items: center; }
/* feste Icon-Höhe + fester Slot → Icons UND Zahlen über alle 3 Spalten auf gleicher Linie */
.stat-icon { height: clamp(108px, 10vw, 140px); width: auto; max-width: 100%; object-fit: contain; }
.stat-media { height: clamp(120px, 11vw, 156px); display: flex; align-items: center; justify-content: center; margin-bottom: 0.6rem; }
.stat .num { font-size: clamp(3rem, 2rem + 4vw, 5rem); font-weight: var(--fw-extrabold); line-height: 1; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.03em; }
.stat .num .unit { font-size: 0.5em; }
.stat p { margin-top: 0.8rem; color: rgb(var(--brand-100)); max-width: 32ch; margin-inline: auto; }
.stat .lead-in { color: rgb(var(--accent-light)); font-weight: var(--fw-semibold); }
.stats-divider { height: 1px; background: rgb(var(--white) / 0.12); margin-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }

/* ============================================================
   LEISTUNGEN – Infrastruktur
   ============================================================ */
.lst-stack { display: flex; flex-direction: column; gap: 1.6rem; max-width: 1040px; margin-inline: auto; }
.lst-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }

.lst-card { position: relative; border-radius: var(--radius-xl); background: rgb(var(--white)); border: 1px solid rgb(var(--gray-200)); box-shadow: var(--shadow-xs); overflow: clip; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.lst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lst-copy { padding: clamp(1.6rem, 1.1rem + 1.4vw, 2.4rem); display: flex; flex-direction: column; }
.lst-copy h3 { font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.65rem); }
.lst-copy p { margin-top: 0.7rem; color: rgb(var(--gray-600)); font-size: var(--fs-small); }
.lst-copy .link-arrow { margin-top: 1.1rem; }

/* WIDE (Karten 1/3/5): Text links, Visual rechts */
.lst-wide { display: grid; grid-template-columns: 1fr 0.82fr; align-items: stretch; }
.lst-wide .lst-copy { justify-content: flex-end; }
.lst-wide .lst-vis { position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 1.2rem; min-height: 280px; }
.lst-wide .lst-vis dotlottie-wc { width: 100%; height: 100%; min-height: 250px; }
.lst-wide .lst-vis img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; }
.lst-wide .lst-vis.is-fade { padding: 0; }
.lst-wide .lst-vis.is-fade img { object-fit: cover; -webkit-mask-image: linear-gradient(to right, transparent, #000 26%); mask-image: linear-gradient(to right, transparent, #000 26%); }

/* DARK (Karte 2): BG-Video rechts + Gradient, Play-Button → Vimeo-Lightbox, Text links */
.lst-dark { background: var(--gradient-hero); border-color: transparent; color: rgb(var(--white)); min-height: 360px; display: flex; align-items: flex-end; }
.lst-dark .lst-bg { position: absolute; inset: 0; width: 100%; z-index: 0; }
.lst-dark .lst-bg video { width: 100%; height: 100%; object-fit: cover; }
.lst-dark .lst-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(var(--brand-950)) 0%, rgb(var(--brand-950)) 34%, rgb(var(--brand-950) / 0.6) 54%, rgb(var(--brand-950) / 0.12) 80%, transparent 100%); }
.lst-dark .lst-copy { position: relative; z-index: 2; max-width: 52%; }
.lst-dark .lst-copy h3 { color: rgb(var(--white)); }
.lst-dark .lst-copy p { color: rgb(var(--brand-100)); }
.lst-play { position: absolute; z-index: 3; top: 50%; right: 24%; transform: translate(50%, -50%); width: 66px; height: 66px; border: 0; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--white) / 0.95); color: rgb(var(--brand-600)); box-shadow: var(--shadow-lg); cursor: pointer; transition: transform var(--dur) var(--ease-out); }
.lst-play:hover { transform: translate(50%, -50%) scale(1.08); }
.lst-play svg { width: 24px; height: 24px; margin-left: 3px; }

/* TALL (Karten 4a/4b): Visual oben, Text unten */
.lst-tall { display: flex; flex-direction: column; }
.lst-tall .lst-vis { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: rgb(var(--brand-950)); }
.lst-tall .lst-vis video, .lst-tall .lst-vis img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lst-tall .lst-copy { flex: 1; }

/* Rechte Spalte des Paars = 2 gestapelte Karten (Convince & Connect oben füllt, WhatsApp unten kompakt) */
.lst-pair-col { display: flex; flex-direction: column; gap: 1.6rem; min-width: 0; }
.lst-pair-col > .lst-card { flex: 0 0 auto; }
.lst-pair-col > .lst-tall { flex: 1 1 auto; }
.lst-pair-col > .lst-tall .lst-vis { aspect-ratio: auto; flex: 1 1 auto; min-height: 150px; }
.lst-pair-col > .lst-tall .lst-copy { flex: 0 0 auto; }
/* WhatsApp-Karte: kompakt, Logo + Text horizontal */
.lst-wa { display: flex; align-items: center; gap: 1.1rem; padding: clamp(1.3rem, 1rem + 1.2vw, 1.8rem); }
.lst-wa .wa-logo { width: clamp(46px, 4vw, 56px); height: auto; flex-shrink: 0; }
.lst-wa .lst-copy { padding: 0; }
.lst-wa h3 { font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem); }
.lst-wa p { margin-top: 0.4rem; }

/* Interaktiv: hochformatiges Video (schneidet eingebrannte Pillarbox-Balken weg) */
.lst-tall.vis-interactive .lst-vis { aspect-ratio: 3 / 4; }
/* schwebende A–F-Auswahlkarte – rechts, kompakt, lässt das Video-Motiv links sichtbar */
.iv-card { position: absolute; top: auto; bottom: 5%; left: auto; right: 5%; width: min(64%, 290px); z-index: 2; display: flex; flex-direction: column; gap: 0.4rem; padding: 0.85rem 0.95rem; border-radius: var(--radius-lg); background: rgb(var(--white) / 0.94); backdrop-filter: blur(9px); box-shadow: var(--shadow-lg); }
.iv-opt { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; font-weight: var(--fw-medium); color: rgb(var(--brand-950)); }
.iv-opt b { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgb(var(--brand-600)); color: rgb(var(--white)); font-size: 0.7rem; flex-shrink: 0; }

/* Vimeo-Lightbox */
.vbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 5vw; background: rgb(var(--brand-950) / 0.84); backdrop-filter: blur(8px); }
.vbox.open { display: grid; }
.vbox-inner { position: relative; width: min(960px, 100%); aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.vbox-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vbox-close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; border-radius: 50%; background: rgb(var(--white) / 0.15); color: rgb(var(--white)); border: 1px solid rgb(var(--white) / 0.3); font-size: 1.25rem; line-height: 1; cursor: pointer; }

/* ============================================================
   ÜBER UNS / GRÜNDER
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.about-points { display: grid; gap: 1rem; margin-top: 1.5rem; }
.about-points li { display: flex; gap: 0.8rem; align-items: flex-start; }
.about-points .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--brand-50)); color: rgb(var(--brand-600)); margin-top: 2px; }
.about-points .check svg { width: 15px; height: 15px; }
.about-points span { color: rgb(var(--gray-700)); }

.founder-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--gradient-hero); padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); color: rgb(var(--white)); }
.founder-card .founder-media { aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.3rem; position: relative; background: rgb(var(--brand-900)); }
.founder-card .founder-media img, .founder-card .founder-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.founder-card h3 { color: rgb(var(--white)); }
.founder-card .role { color: rgb(var(--accent-light)); font-weight: var(--fw-medium); font-size: var(--fs-small); margin-bottom: 1rem; }
.founder-card p { color: rgb(var(--brand-100)); font-size: var(--fs-small); }
.founder-card p + p { margin-top: 0.8rem; }
.founder-card .link-arrow { color: rgb(var(--accent-light)); margin-top: 1.2rem; }

/* ============================================================
   TESTIMONIALS / FALLSTUDIEN
   ============================================================ */
/* Große, einzeln gestapelte Fallstudien-Rows mit leichtem Fade (nur kleine Box dahinter) */
.cases-stack { display: flex; flex-direction: column; gap: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.case-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 1rem + 3vw, 4rem); align-items: center; position: relative; padding: clamp(1.4rem, 1rem + 2vw, 2.5rem); border-radius: var(--radius-xl); }
.case-row::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(85% 130% at 16% 8%, rgb(var(--brand-50) / 0.95), rgb(var(--white) / 0)); z-index: -1; }
.case-row.reverse .case-media { order: 2; }
.case-row.reverse::before { background: radial-gradient(85% 130% at 84% 8%, rgb(var(--brand-50) / 0.95), rgb(var(--white) / 0)); }
.case-quote { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.85rem); font-weight: var(--fw-bold); line-height: var(--lh-snug); color: rgb(var(--brand-950)); letter-spacing: -0.01em; }
.case-body { margin-top: 1rem; color: rgb(var(--gray-600)); }
.case-author { margin-top: 1.2rem; display: flex; flex-direction: column; }
.case-author .name { font-weight: var(--fw-semibold); color: rgb(var(--brand-950)); }
.case-author .org { font-size: var(--fs-small); color: rgb(var(--gray-500)); }
.case-facts { margin-top: 1.6rem; display: flex; gap: clamp(1.2rem, 0.5rem + 2vw, 2rem); padding-top: 1.4rem; border-top: 1px solid rgb(var(--gray-200)); }
.case-facts .cf-num { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); font-weight: var(--fw-extrabold); color: rgb(var(--brand-600)); line-height: 1; }
.case-facts .cf-lbl { margin-top: 0.3rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgb(var(--gray-500)); }

/* ============================================================
   BENEFITS
   ============================================================ */
/* Benefits = alternierende Rows mit großen Lottie-Visuals (wie Original) */
.benefit-stack { display: flex; flex-direction: column; gap: clamp(2.2rem, 1rem + 4vw, 5rem); }
.benefit-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4.5rem); align-items: center; }
.benefit-row.reverse .benefit-copy { order: 2; }
.benefit-copy h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); margin-top: 0.5rem; }
.benefit-copy p { margin-top: 0.9rem; color: rgb(var(--gray-600)); }
.benefit-vis { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-xl); background: rgb(var(--gray-50)); border: 1px solid rgb(var(--gray-100)); overflow: hidden; }
.benefit-vis dotlottie-wc { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* "Gesammelte Daten"-Lottie wirkte zu groß → kleiner & mittig im Card */
.benefit-vis dotlottie-wc[src*="gesammelte-daten"] { inset: auto; top: 50%; left: 50%; width: 66%; height: 66%; transform: translate(-50%, -50%); }

/* ============================================================
   PROZESS – 3 Schritte
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; position: relative; }
.step { position: relative; padding: 1.8rem; border-radius: var(--radius-lg); background: rgb(var(--white)); border: 1px solid rgb(var(--gray-200)); box-shadow: var(--shadow-xs); }
.step .step-num { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: var(--fw-extrabold); font-size: 1.3rem; color: rgb(var(--white)); background: var(--gradient-brand); box-shadow: var(--shadow-brand); margin-bottom: 1.1rem; }
.step h3 { font-size: 1.15rem; }
.step p { font-size: var(--fs-small); margin-top: 0.6rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item { border-bottom: 1px solid rgb(var(--gray-200)); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0.2rem; text-align: left; font-weight: var(--fw-semibold); font-size: 1.1rem; color: rgb(var(--brand-950)); transition: color var(--dur); }
.faq-q:hover { color: rgb(var(--brand-600)); }
.faq-q .icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--brand-50)); color: rgb(var(--brand-600)); transition: transform var(--dur) var(--ease-out), background var(--dur); }
.faq-q .icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: rgb(var(--brand-600)); color: rgb(var(--white)); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-soft); }
.faq-a-inner { padding: 0 0.2rem 1.4rem; color: rgb(var(--gray-600)); }
.faq-a-inner p + p { margin-top: 0.8rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: var(--gradient-hero); color: rgb(var(--white)); padding: clamp(2.5rem, 1.5rem + 5vw, 5rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: -40% 30% auto -10%; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; background: radial-gradient(circle, rgb(var(--accent-mid) / 0.45), transparent 60%); filter: blur(10px); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: rgb(var(--white)); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgb(var(--brand-100)); max-width: 52ch; margin: 1.1rem auto 0; font-size: var(--fs-lead); }
.cta-band .hero-actions { justify-content: center; margin-top: 2rem; }
.cta-note { margin-top: 1.2rem; font-size: var(--fs-small); color: rgb(var(--brand-200)); }

/* Full-width dunkle CTA-Sektion + GG-Wasserzeichen */
.cta-section { position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { max-width: 18ch; margin-inline: auto; }
.cta-inner p { margin: 1.1rem auto 0; max-width: 52ch; font-size: var(--fs-lead); }
.cta-inner .hero-actions { justify-content: center; margin-top: 2rem; }
.section-watermark { position: absolute; right: 0; bottom: -22%; font-family: var(--font-primary); font-size: clamp(12rem, 26vw, 28rem); font-weight: var(--fw-extrabold); line-height: 1; color: rgb(var(--white) / 0.045); letter-spacing: -0.06em; pointer-events: none; user-select: none; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: rgb(var(--brand-950)); color: rgb(var(--brand-100)); padding-top: clamp(3rem, 2rem + 4vw, 5rem); }
.footer-award { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start; padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); border-bottom: 1px solid rgb(var(--white) / 0.1); }
.footer-award .badge { width: 118px; height: 118px; border-radius: var(--radius-lg); background: rgb(var(--white)); display: grid; place-items: center; padding: 12px; box-shadow: var(--shadow-md); flex-shrink: 0; }
.footer-award .badge img { width: 100%; height: 100%; object-fit: contain; }
.footer-award h3 { color: rgb(var(--white)); font-size: 1.2rem; }
.footer-award p { font-size: var(--fs-small); color: rgb(var(--brand-100) / 0.85); margin-top: 0.5rem; max-width: 70ch; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.footer-brand .logo { width: 180px; color: rgb(var(--white)); margin-bottom: 1.2rem; }
.footer-brand address { font-style: normal; font-size: var(--fs-small); line-height: 1.9; color: rgb(var(--brand-100)); }
.footer-brand address a:hover { color: rgb(var(--white)); }
.footer-col h4 { color: rgb(var(--white)); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--fs-small); color: rgb(var(--brand-100)); transition: color var(--dur); }
.footer-col a:hover { color: rgb(var(--white)); }
.footer-contact-card { padding: 1.3rem; border-radius: var(--radius-lg); background: rgb(var(--white) / 0.06); border: 1px solid rgb(var(--white) / 0.1); }
.footer-contact-card .who { font-weight: var(--fw-semibold); color: rgb(var(--white)); }
.footer-contact-card .role { font-size: var(--fs-small); color: rgb(var(--accent-light)); margin-bottom: 0.8rem; }
.footer-contact-card a { display: block; font-size: var(--fs-small); margin-bottom: 0.8rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--white) / 0.08); transition: background var(--dur), transform var(--dur); }
.footer-social a:hover { background: rgb(var(--brand-600)); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: rgb(var(--white)); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid rgb(var(--white) / 0.1); font-size: var(--fs-small); color: rgb(var(--brand-100) / 0.7); }
.footer-bottom nav { display: flex; gap: 1.2rem; }
.footer-bottom a:hover { color: rgb(var(--white)); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .lst-wide { grid-template-columns: 1fr; }
  .lst-wide .lst-vis { min-height: 230px; }
  .lst-wide .lst-vis.is-fade img { -webkit-mask-image: none; mask-image: none; }
}

@media (max-width: 860px) {
  .nav-panel { width: calc(100vw - 2rem); }
  .nav-cta { display: none; }

  .split-row, .quote-band, .case-row { grid-template-columns: 1fr; }
  /* einheitliche DOM-Reihenfolge auf Mobile */
  .split-row .split-copy, .split-row .split-media,
  .split-row.reverse .split-copy { order: 0; }
  .case-row .case-media, .case-row .case-content,
  .case-row.reverse .case-media { order: 0; }
  .case-row .case-media { order: -1; }   /* Video zuerst */

  .stats-grid, .steps, .benefit-row, .lst-pair { grid-template-columns: 1fr; }
  .benefit-row.reverse .benefit-copy { order: 0; }
  .stat { text-align: center; }
  .stat p { margin-inline: auto; }
  /* Leistungen: dunkle Karte – Video als voller Hintergrund, Text/Play zentriert */
  .lst-dark { min-height: 300px; }
  .lst-dark .lst-bg { width: 100%; }
  .lst-dark .lst-bg::after { background: linear-gradient(0deg, rgb(var(--brand-950)) 18%, rgb(var(--brand-950) / 0.6)); }
  .lst-dark .lst-copy { max-width: 100%; }
  .lst-play { right: 50%; top: 38%; }
  .iv-card { left: 8%; right: 8%; }
}

@media (max-width: 580px) {
  .cards-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-award { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .case-facts { gap: 1.1rem; }
  .creative-stack { height: 300px; }
}

/* ============================================================
   FACHKRÄFTEMANGEL – Foto + schwebende Glas-Kacheln
   ============================================================ */
.shortage-stage { position: relative; max-width: 1000px; margin-inline: auto; padding: 1.5rem 0.5rem 2.5rem; }
.shortage-photo { width: 100%; height: clamp(340px, 44vw, 520px); object-fit: cover; object-position: center 32%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
/* solide, gut lesbare Kacheln – locker um das Foto verteilt */
.s-tile { position: absolute; max-width: 248px; padding: 1.05rem 1.25rem; border-radius: var(--radius-lg);
  background: rgb(var(--white)); border: 1px solid rgb(var(--gray-100)); box-shadow: var(--shadow-lg);
  animation: tileFloat 6s var(--ease-soft) infinite; z-index: 2; }
.s-tile-1 { left: -0.5rem; bottom: 4.5rem; }
.s-tile-2 { right: -0.5rem; top: 1.5rem; animation-delay: -2s; }
.s-tile-3 { right: 8%; bottom: 0.5rem; animation-delay: -4s; }
.s-tile .s-num { font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem); font-weight: var(--fw-extrabold); color: rgb(var(--brand-600)); line-height: 1; }
.s-tile .s-label { margin-top: 0.4rem; font-size: var(--fs-small); color: rgb(var(--gray-600)); }
.shortage-head { margin-top: 2.6rem; text-align: center; max-width: 760px; margin-inline: auto; }
@keyframes tileFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============================================================
   ÜBER UNS – Team-Banner + Gründer-Porträt (Rework)
   ============================================================ */
.about-banner { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.about-banner img { width: 100%; height: clamp(280px, 34vw, 460px); object-fit: cover; object-position: center 28%; display: block; }
.about-banner-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.2rem, 1rem + 2vw, 2.4rem); background: linear-gradient(transparent, rgb(var(--brand-950) / 0.88)); }
.about-banner-cap .pre { color: rgb(var(--accent-light)); font-size: var(--fs-small); font-weight: var(--fw-semibold); letter-spacing: 0.04em; }
.about-banner-cap p { color: rgb(var(--brand-50)); margin-top: 0.35rem; max-width: 64ch; font-size: var(--fs-lead); }
/* Gründer-Karte: Porträt | Text */
.founder-card { display: grid; grid-template-columns: 0.82fr 1.18fr; padding: 0; overflow: hidden; align-items: stretch; }
.founder-portrait { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: top center; }
.founder-body { padding: clamp(1.5rem, 1rem + 2vw, 2.3rem); display: flex; flex-direction: column; }
.founder-linkedin { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.3rem; padding: 0.55rem 1rem; border-radius: var(--radius-pill); background: rgb(var(--white) / 0.1); border: 1px solid rgb(var(--white) / 0.2); color: rgb(var(--white)); font-weight: var(--fw-medium); font-size: var(--fs-small); transition: background var(--dur); }
.founder-linkedin:hover { background: rgb(var(--white) / 0.18); }
.founder-linkedin svg { width: 18px; height: 18px; color: rgb(var(--accent-light)); }
.founder-eyebrow { font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.12em; color: rgb(var(--accent-light)); margin-bottom: 0.5rem; }
/* Team-KPIs */
.about-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(1.8rem, 1rem + 2vw, 2.6rem); }
.about-kpi { padding: 1.5rem 1.3rem; border-radius: var(--radius-lg); background: rgb(var(--white)); border: 1px solid rgb(var(--gray-100)); box-shadow: var(--shadow-xs); text-align: center; }
.about-kpi .k-num { font-size: clamp(1.8rem, 1.3rem + 1.5vw, 2.4rem); font-weight: var(--fw-extrabold); color: rgb(var(--brand-600)); line-height: 1; }
.about-kpi .k-label { margin-top: 0.5rem; font-size: var(--fs-small); color: rgb(var(--gray-600)); }
/* Deutscher Agenturpreis – zentrierter Block in „Über uns" mit großem Pokal */
.about-award { max-width: 640px; margin: clamp(2.6rem, 1.5rem + 3vw, 4.5rem) auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.about-award .award-pokal { width: clamp(130px, 15vw, 210px); height: auto; margin-bottom: 1.4rem; filter: drop-shadow(0 14px 34px rgb(var(--brand-950) / 0.16)); }
.about-award h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); }
.about-award p { margin-top: 0.85rem; color: rgb(var(--gray-600)); }

/* ============================================================
   BENEFITS – animierte Mini-Visuals (CarePulz-Stil)
   ============================================================ */
.b-anim { flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--gradient-brand); color: rgb(var(--white)); box-shadow: var(--shadow-brand); position: relative; overflow: hidden; }
.b-anim svg { width: 34px; height: 34px; overflow: visible; }
.ba-cost .bar { transform-box: fill-box; transform-origin: bottom; animation: baBar 2.2s var(--ease-soft) infinite; }
.ba-cost .bar:nth-child(2) { animation-delay: 0.25s; }
.ba-cost .bar:nth-child(3) { animation-delay: 0.5s; }
@keyframes baBar { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.ba-target .ring { transform-origin: center; transform-box: fill-box; animation: baPing 2.6s var(--ease-out) infinite; }
.ba-target .ring2 { animation-delay: 1.3s; }
@keyframes baPing { 0% { transform: scale(0.25); opacity: 0.9; } 75%, 100% { transform: scale(1); opacity: 0; } }
.ba-chart .line { stroke-dasharray: 64; stroke-dashoffset: 64; animation: baDraw 2.8s var(--ease-soft) infinite; }
.ba-chart .dot { animation: baDotFade 2.8s var(--ease-soft) infinite; }
@keyframes baDraw { 0% { stroke-dashoffset: 64; } 55%, 100% { stroke-dashoffset: 0; } }
@keyframes baDotFade { 0%, 50% { opacity: 0; } 60% { opacity: 1; } 100% { opacity: 1; } }
.ba-plug .spark { transform-origin: center; transform-box: fill-box; animation: baSpark 1.8s ease-in-out infinite; }
@keyframes baSpark { 0%, 100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

@media (max-width: 860px) {
  .shortage-stage { padding: 0; }
  .s-tile { position: static; max-width: none; margin-top: 0.8rem; animation: none; }
  .s-tile-1, .s-tile-2, .s-tile-3 { inset: auto; }
  .shortage-head { margin-top: 1.8rem; }
  .about-kpis { grid-template-columns: repeat(2, 1fr); }
  .founder-card { grid-template-columns: 1fr; }
  .founder-portrait { min-height: 0; aspect-ratio: 16/10; }
}
