/* =========================================================
   COMPONENTS — marketingwerk Website
   Reihenfolge folgt dem Seitenaufbau (Header → Hero → … → Footer).
   Gold-Regel: Gold NUR fuer Garantie-Momente, Sterne, Stat-Einheiten
   und das Logo. CTAs und Leitsystem sind blau.
   ========================================================= */

/* ============ Buttons ============ */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 10px; /* wie Live-Site (8px) — leicht weicher */
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background-color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .btn__icon { transition: transform var(--dur-base) var(--ease); }
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--primary {
  background-image: var(--grad-cta);
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
}
.btn--primary:hover { background-image: var(--grad-cta-hover); color: #fff; }
/* Glanz-Sweep beim Hover */
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}
.btn--primary:hover::after { left: 130%; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text-strong);
  border-color: var(--line);
  background: var(--surface);
}
.btn--ghost:hover { border-color: var(--blue-300); color: var(--text-strong); }

.btn--on-dark {
  --btn-bg: rgba(255, 255, 255, 0.07);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.btn--lg { padding: 1.15rem 2rem; font-size: var(--fs-lg); }
.btn--full { width: 100%; }

/* ============ Header / Navigation ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 248, 251, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background-color var(--dur-base) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--brand-strong); font-weight: var(--fw-extra); }
/* Echtes Logo (Wortmarke + W-Kurve, viewBox 768x112) */
.brand__logo { height: 28px; width: auto; display: block; }
.site-footer .brand__logo { height: 32px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.2rem + 1.2vw, 1.75rem);
}
.nav__link {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--slate-700);
  padding: 0.4rem 0.2rem;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue-500);
  transition: width var(--dur-base) var(--ease);
}
.nav__link:hover { color: var(--text-strong); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }

/* --- Branchen-Dropdown --- */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.4rem 0.2rem;
}
.nav__dropdown-trigger svg {
  width: 13px; height: 13px;
  transition: transform var(--dur-base) var(--ease);
}
.nav__dropdown:hover .nav__dropdown-trigger svg,
.nav__dropdown.is-open .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), visibility 0s linear var(--dur-base);
  z-index: 50;
}
/* unsichtbare Hover-Bruecke zwischen Trigger und Panel */
.nav__dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -12px; height: 12px;
}
.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel,
.nav__dropdown.is-open .nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav__dropdown-panel a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--slate-700);
  white-space: nowrap;
}
.nav__dropdown-panel a:hover { background: var(--blue-50); color: var(--brand-strong); }
.nav__dropdown-all {
  margin-top: var(--sp-1);
  padding-top: var(--sp-1);
  border-top: 1px solid var(--line-soft);
}
.nav__dropdown-all a { color: var(--brand-strong); }

/* --- Regionen-Links (SEO-Querverlinkung) --- */
.region-links {
  padding-block: var(--sp-8);
  border-top: 1px solid var(--line-soft);
}
.region-links__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.region-links__inner a {
  font-weight: var(--fw-semibold);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.region-links__inner a:hover { border-color: var(--blue-300); transform: translateY(-2px); }
.region-links__inner b { color: var(--text-strong); padding: 0.25rem 0.6rem; }

/* CTA, die nur im aufgeklappten Mobile-Menue erscheint */
.nav__cta-li { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast);
}
.nav__toggle span::before { transform: translate(-50%, -8px); }
.nav__toggle span::after  { transform: translate(-50%, 6px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* --- Dunkle Header-Variante (liegt auf dem Navy-Hero) --- */
.site-header--dark {
  background: rgba(10, 28, 58, 0.55);
}
.site-header--dark.is-scrolled {
  background: rgba(10, 28, 58, 0.88);
  border-bottom-color: var(--on-dark-line);
  box-shadow: 0 2px 14px rgba(4, 10, 22, 0.4);
}
.site-header--dark .brand { color: #fff; }
.site-header--dark .brand b { color: var(--blue-300); }
.site-header--dark .nav__link { color: rgba(255, 255, 255, 0.82); }
.site-header--dark .nav__link:hover { color: #fff; }
.site-header--dark .nav__dropdown-panel a { color: var(--slate-700); }
.site-header--dark .nav__dropdown-panel a:hover { color: var(--brand-strong); }
.site-header--dark .nav__dropdown-all a { color: var(--brand-strong); }
.site-header--dark .nav__link::after { background: var(--blue-300); }
.site-header--dark .nav__toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.site-header--dark .nav__toggle span,
.site-header--dark .nav__toggle span::before,
.site-header--dark .nav__toggle span::after { background: #fff; }
.site-header--dark .nav__toggle[aria-expanded="true"] span { background: transparent; }

/* ============ Hero (Navy-Opener) ============ */
.hero {
  position: relative;
  background-color: var(--navy-900);
  color: var(--on-dark);
  padding-block: clamp(3rem, 2rem + 4vw, 6rem) clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  overflow: hidden;
  /* Header liegt sticky darueber — oben Luft lassen */
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(2.5rem, 1.5rem + 4vw, 5.5rem));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 65% at 76% 22%, rgba(51, 120, 236, 0.22), transparent 64%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
}

.hero__copy .eyebrow { color: var(--blue-200); }
.hero__copy .eyebrow::before { background: var(--blue-400); }

.hero__title {
  font-size: var(--fs-4xl);
  color: #fff;
  letter-spacing: -0.035em;
  margin-top: var(--sp-2);
}
.hero__title .gold {
  color: var(--gold-400);
  position: relative;
  white-space: nowrap;
}
/* Signature-Element: handgezeichneter Gold-Unterstrich */
.hero__title .gold svg {
  position: absolute;
  left: 2%;
  bottom: -0.18em;
  width: 96%;
  height: 0.28em;
  color: var(--gold-500);
  overflow: visible;
}

.hero__lead {
  margin-top: var(--sp-5);
  font-size: var(--fs-lg);
  color: var(--on-dark-muted);
  max-width: 48ch;
}
.hero__list { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.hero__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--on-dark);
  font-size: var(--fs-base);
}
.hero__list svg { flex: none; color: var(--gold-400); width: 21px; height: 21px; margin-top: 2px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-8);
}
.hero__cta .btn--lg { padding: 1.05rem 1.4rem; font-size: 1rem; }
.hero__secondary {
  color: var(--on-dark);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color var(--dur-base), color var(--dur-base);
}
.hero__secondary:hover { color: #fff; border-bottom-color: var(--blue-300); }
.hero__secondary span { display: inline-block; transition: transform var(--dur-base) var(--ease); }
.hero__secondary:hover span { transform: translateY(3px); }

/* Proof-Leiste unter dem Hero-Grid (Trust links, Badges rechts) */
.hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--on-dark-line);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3) 0;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-inline: clamp(0.6rem, 0.35rem + 0.7vw, 0.95rem);
  border-left: 1px solid var(--on-dark-line);
}
.hero__trust-item:first-child { padding-left: 0; border-left: 0; }
.hero__trust-num {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.hero__trust-label { font-size: 0.72rem; color: var(--on-dark-muted); line-height: 1.3; }
.stars { color: var(--gold-400); letter-spacing: 1px; font-size: 0.95rem; }

/* ----- Hero-Stage: Video + schwebende Kanal-Kacheln ----- */
.hero-stage {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  padding: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
}
.hero-stage .video-embed { position: relative; z-index: 2; }
.hero-stage .video-embed__btn {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.shortlist-card {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: var(--sp-6);
  color: var(--text);
}
.shortlist-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line-soft);
}
.shortlist-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--text-strong);
}
.shortlist-card__badge {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--brand-strong);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.candidate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line-soft);
}
.candidate__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: #fff;
  font-size: var(--fs-sm);
  background: var(--blue-500);
}
.candidate__avatar--navy { background: var(--navy-700); }
.candidate__avatar--deep { background: var(--blue-800); }
.candidate__name { font-weight: var(--fw-semibold); color: var(--text-strong); font-size: var(--fs-sm); }
.candidate__role { font-size: var(--fs-xs); color: var(--text-muted); }
.candidate__match {
  text-align: right;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-base);
  color: var(--brand-strong);
}
.candidate__match small {
  display: block;
  font-weight: var(--fw-regular);
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shortlist-card__foot {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
}
.shortlist-card__foot .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(30, 158, 106, 0.18);
  flex: none;
}

/* KPI-Chip am Kartenrand */
.kpi-chip {
  position: absolute;
  left: -7%;
  bottom: -10%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--sp-3) var(--sp-4);
}
.kpi-chip__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--blue-500);
  color: #fff;
  flex: none;
}
.kpi-chip__title { font-weight: var(--fw-bold); font-size: var(--fs-sm); color: #fff; line-height: 1.2; display: block; }
.kpi-chip__sub { font-size: var(--fs-xs); color: var(--on-dark-muted); }

/* Kanal-Kacheln (gelockte Grafik-Richtung) */
.channel-tile {
  position: absolute;
  z-index: 3;
  width: 50px; height: 50px;
  border-radius: var(--radius-tile);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.channel-tile svg { width: 26px; height: 26px; }

.channel-tile--facebook { background: var(--ch-facebook); top: -2%; left: -3%; transform: rotate(-7deg); }
.channel-tile--instagram {
  background: radial-gradient(circle at 28% 110%, #FDF497 0%, #FD5949 45%, #D6249F 62%, #285AEB 92%);
  top: -7%; right: 14%; transform: rotate(6deg);
}
.channel-tile--linkedin { background: var(--ch-linkedin); top: 42%; left: -10%; transform: rotate(5deg); }
.channel-tile--tiktok { background: var(--ch-tiktok); top: 26%; right: -8%; transform: rotate(-6deg); }
.channel-tile--google { background: #fff; bottom: 4%; right: -5%; transform: rotate(7deg); }
.channel-tile--indeed { background: var(--ch-indeed); bottom: -9%; right: 30%; transform: rotate(-5deg); }

/* Kacheln bewusst statisch (kein Ambient-Wobble) — ruhiger, wertiger Look.
   Im Hero nur 4 Kacheln; die volle Kanal-Reihe zeigt die Leistungen-Sektion. */
.hero-stage .channel-tile--google,
.hero-stage .channel-tile--indeed { display: none; }

/* ============ Hero: Badges (Partner + Garantie) ============ */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
}
.footer__brand .hero-badges { margin-top: var(--sp-5); }
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.45rem 0.9rem;
  box-shadow: var(--shadow-sm);
}
.badge-chip img { height: 34px; width: auto; max-width: 120px; object-fit: contain; display: block; }
.hero-badges .badge-chip { opacity: 0.92; box-shadow: none; }
.hero-badges .badge-chip img { height: 28px; }
.badge-chip--gold {
  background: var(--gold-soft);
  border: 1px solid rgba(254, 181, 12, 0.35);
  border-radius: var(--radius-pill);
  color: var(--gold-300);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  align-self: center;
}
.badge-chip--gold svg { width: 16px; height: 16px; flex: none; }

/* ============ Logo- / Marken-Marquee ============ */
.logobar {
  padding-block: var(--sp-12);
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
}
.logobar__label {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-6);
}

/* Navy-Variante mit echten Kundenlogos (gemischte Logo-Farben → weisse Chips) */
.logobar--dark {
  background: var(--navy-950);
  border-bottom: 0;
  border-top: 1px solid var(--on-dark-line);
  padding-block: var(--sp-10);
}
.logobar--dark .logobar__label { color: var(--on-dark-muted); }
.logobar--dark .logobar__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.55rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease);
}
.logobar--dark .logobar__item:hover { transform: translateY(-3px); }
.logobar--dark .logobar__item::after { display: none; }
.logobar__logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - clamp(1.25rem, 1rem + 1vw, 2.25rem))); }
}
.logobar__item {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  letter-spacing: 0.01em;
  color: var(--slate-500);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: clamp(2.5rem, 2rem + 2vw, 4.5rem);
}
.logobar__item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-200);
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee__track .logobar__item[aria-hidden="true"] { display: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* ============ Problem (editorialer Split) ============ */
.problem-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  align-items: start;
}
.pain {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
  border-top: 1px solid var(--line);
}
.pain:last-child { border-bottom: 1px solid var(--line); }
.pain__num {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-2xl);
  color: var(--blue-300);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pain h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.pain p { color: var(--text-muted); font-size: var(--fs-base); }

/* ============ Bridge (Loesung benennen) ============ */
.bridge {
  padding-block: clamp(4rem, 3rem + 4vw, 7rem);
  text-align: center;
}
.bridge__text {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem);
  font-weight: var(--fw-extra);
  color: var(--text-strong);
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-inline: auto;
}
.bridge__text em { font-style: normal; color: var(--brand-strong); position: relative; white-space: nowrap; }
/* Signature-Unterstrich (Echo des Hero-Elements, in Blau) */
.bridge__text em svg {
  position: absolute;
  left: 2%;
  bottom: -0.22em;
  width: 96%;
  height: 0.26em;
  color: var(--blue-400);
  overflow: visible;
}
.bridge__sub {
  margin: var(--sp-5) auto 0;
  max-width: 58ch;
  font-size: var(--fs-lg);
  color: var(--text-muted);
}

/* ============ Leistungen (Bento) ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-6);
}
.bento__cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base);
}
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.bento__cell--wide { grid-column: span 7; }
.bento__cell--slim { grid-column: span 5; }

.bento__kicker {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: var(--sp-3);
}
.bento__cell h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.bento__cell > p { color: var(--text-muted); max-width: 52ch; }

/* Mini-Funnel-Kacheln (Bewerbungen → Shortlist) */
.mini-dash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-6);
}
.mini-dash__tile {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-3);
}
.mini-dash__tile--brand { background: var(--blue-600); }
.mini-dash__num {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-2xl);
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mini-dash__lbl { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }
.mini-dash__tile--brand .mini-dash__num,
.mini-dash__tile--brand .mini-dash__lbl { color: #fff; }
.mini-dash__tile--brand .mini-dash__lbl { opacity: 0.85; }

/* Kanal-Reihe in der Bento-Zelle */
.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-6);
}
.channel-row .channel-tile {
  position: static;
  width: 42px; height: 42px;
  border-radius: 12px;
  transform: none;
  animation: none;
  box-shadow: var(--shadow-sm);
  border: 0;
}
.channel-row .channel-tile svg { width: 21px; height: 21px; }
.channel-row .channel-tile--google { border: 1px solid var(--line); }

/* Garantie-Hinweis + Talentpool-Avatare */
.bento__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--brand-strong);
  margin-bottom: var(--sp-5);
}
.bento__icon svg { width: 25px; height: 25px; }
.bento__icon--gold {
  background: var(--gold-soft);
  border-color: rgba(254, 181, 12, 0.32);
  color: var(--gold-text);
}
.bento__link {
  margin-top: auto;
  padding-top: var(--sp-5);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: var(--sp-6);
}
.avatar-stack span {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  color: #fff;
  border: 2.5px solid var(--surface);
  margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack .more {
  background: var(--surface-2);
  color: var(--text-strong);
  font-size: 0.68rem;
}

/* ============ Prozess (Split: Steps + Funnel) ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  align-items: center;
}

.steplist {
  counter-reset: st;
  display: grid;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  position: relative;
}
.steplist li {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  position: relative;
}
.steplist__num {
  counter-increment: st;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  color: #fff;
  background-image: var(--grad-cta);
  box-shadow: 0 0 0 5px var(--surface);
  position: relative;
  z-index: 1;
}
.steplist__num::before { content: counter(st); }
/* Verbindungslinie */
.steplist li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: calc(-1 * var(--sp-6));
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--blue-200) 0 6px, transparent 6px 12px);
}
.steplist b {
  font-family: var(--font-display);
  color: var(--text-strong);
  display: block;
  font-size: var(--fs-lg);
  margin-bottom: 2px;
}
.steplist li div span { color: var(--text-muted); font-size: var(--fs-base); }

/* Funnel-Visual */
.funnel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-8);
}
.funnel-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--text-strong);
  margin-bottom: var(--sp-5);
}
.funnel { display: grid; gap: var(--sp-4); }
.funnel__row { display: flex; align-items: center; gap: var(--sp-4); }
.funnel__bar {
  width: var(--w, 100%);
  min-width: 130px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-4);
  border-radius: var(--radius-sm);
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.funnel__row:nth-child(2) .funnel__bar { background: var(--blue-700); }
.funnel__row:nth-child(3) .funnel__bar { background: var(--blue-800); }
.funnel__row:last-child .funnel__bar { background: var(--navy-900); }
.funnel__n { font-size: var(--fs-sm); color: var(--text-muted); white-space: nowrap; }
.funnel-card__foot {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ============ Kosten-Rechner (Pain-Visualisierung) ============ */
.calc {
  background-color: var(--navy-900);
  background-image: radial-gradient(60% 100% at 90% 0%, rgba(51, 120, 236, 0.28), transparent 60%);
  border-radius: var(--radius-xl);
  color: var(--on-dark);
  padding: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.calc h2 { color: #fff; font-size: var(--fs-2xl); }
.calc__hint { margin-top: var(--sp-3); color: var(--on-dark-muted); font-size: var(--fs-sm); }
.calc__field { margin-top: var(--sp-6); }
.calc__field label {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--on-dark);
  margin-bottom: var(--sp-3);
}
.calc__field output {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  color: var(--gold-400);
  white-space: nowrap;
}
.calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 28px;
  background: transparent;
  cursor: pointer;
}
.calc input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--blue-400);
  margin-top: -8px;
  box-shadow: var(--shadow-sm);
}
.calc input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--blue-400);
  box-shadow: var(--shadow-sm);
}
.calc__result {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  text-align: center;
}
.calc__result-label { font-size: var(--fs-sm); color: var(--on-dark-muted); }
.calc__result-num {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-num);
  line-height: 1.1;
  color: var(--gold-400);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: var(--sp-2);
}
.calc__result-sub { margin-top: var(--sp-3); color: var(--on-dark-muted); font-size: var(--fs-sm); }
.calc__result .btn { margin-top: var(--sp-6); }

/* ============ 30-Tage-Timeline (Pills auf einer Linie) ============ */
.timeline {
  margin-top: clamp(3rem, 2.5rem + 2vw, 4.5rem);
  padding-top: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  border-top: 1px solid var(--line-soft);
}
.timeline__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--text-strong);
  text-align: center;
  margin-bottom: var(--sp-8);
}
.timeline__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
/* Linie exakt durch die Pill-Mitte (Pill-Hoehe 36px -> top 18px) */
.timeline__track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--line);
}
.timeline__step { text-align: center; }
.timeline__dot { display: none; }
.timeline__when {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1.5px solid var(--blue-200);
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-sm);
  position: relative;
  z-index: 1;
}
.timeline__step:last-child .timeline__when {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}
.timeline__what { margin-top: var(--sp-4); font-size: var(--fs-sm); color: var(--text-muted); max-width: 24ch; margin-inline: auto; }

/* ============ Review-Wall (Google) ============ */
.review-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin: clamp(2.5rem, 2rem + 2vw, 4rem) 0 var(--sp-6);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--text-strong);
}
.review-head img { width: 22px; height: 22px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
}
.review-card .quote__stars { margin-bottom: var(--sp-3); font-size: var(--fs-sm); }
.review-card p { font-size: var(--fs-sm); color: var(--text); flex: 1; }
.review-card footer {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}

/* ============ CTA-Strip (Mid-Page-Conversion) ============ */
.cta-strip {
  background-color: var(--navy-900);
  background-image: radial-gradient(60% 120% at 85% 0%, rgba(51, 120, 236, 0.28), transparent 60%);
  color: var(--on-dark);
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cta-strip__title {
  font-size: var(--fs-2xl);
  color: #fff;
  letter-spacing: -0.025em;
}
.cta-strip__sub { margin-top: var(--sp-2); color: var(--on-dark-muted); }
.cta-strip .btn { flex: none; }

/* ============ Branchen ============ */
.positions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.position {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  color: inherit;
  position: relative;
  transition: border-color var(--dur-base), transform var(--dur-base), box-shadow var(--dur-base);
}
.position:hover { border-color: var(--blue-300); transform: translateY(-3px); box-shadow: var(--shadow-sm); color: inherit; }
/* Pfeil-Affordance fuer verlinkte Kacheln */
a.position::after {
  content: "→";
  position: absolute;
  right: var(--sp-5);
  top: 50%;
  transform: translate(-6px, -50%);
  color: var(--brand-strong);
  font-weight: var(--fw-bold);
  opacity: 0;
  transition: opacity var(--dur-base), transform var(--dur-base) var(--ease);
}
a.position:hover::after { opacity: 1; transform: translate(0, -50%); }
.position__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--brand-strong);
  flex: none;
}
.position__icon svg { width: 22px; height: 22px; }
.position b { font-family: var(--font-display); color: var(--text-strong); display: block; }
.position span span { font-size: var(--fs-sm); color: var(--text-muted); }

/* ============ Stats-Band (Navy, W-Kurve) ============ */
.stats-band { position: relative; overflow: hidden; }
.stats-band__curve {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -12%;
  width: 108%;
  height: auto;
  color: var(--gold-500);
  opacity: 0.08;
  pointer-events: none;
}
.stats-band .container { position: relative; z-index: 1; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8) var(--sp-6);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-num);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat__num .unit { color: var(--gold-400); }
.stat__label { margin-top: var(--sp-3); color: var(--on-dark-muted); font-size: var(--fs-sm); }

.speaker-strip {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--on-dark-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--on-dark-muted);
}
.speaker-strip b { color: var(--on-dark); font-weight: var(--fw-semibold); white-space: nowrap; }

/* ============ Erfolge / Cases (Bento) ============ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-6);
}
.case-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.case-card--feature { grid-column: span 7; }
.case-card--side { grid-column: span 5; }

/* Feature-Case: Navy-Invertierung als visueller Anker */
.case-card--feature {
  background-color: var(--navy-900);
  background-image: radial-gradient(60% 90% at 90% 0%, rgba(51, 120, 236, 0.30), transparent 62%);
  border-color: var(--navy-700);
  color: var(--on-dark);
}
.case-card--feature:hover { border-color: var(--blue-700); }

.case-card__metric { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; }
.case-card__num {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-num);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}
.case-card--feature .case-card__num { color: var(--gold-400); }
.case-card__unit {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--text-strong);
  font-size: var(--fs-lg);
}
.case-card--feature .case-card__unit { color: #fff; }
.case-card__sub { color: var(--brand-strong); font-weight: var(--fw-semibold); font-size: var(--fs-sm); margin-top: var(--sp-2); }
.case-card--feature .case-card__sub { color: var(--blue-200); }
.case-card__text { color: var(--text-muted); margin-top: var(--sp-4); flex: 1; max-width: 56ch; }
.case-card--feature .case-card__text { color: var(--on-dark-muted); }
.case-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.case-card--feature .case-card__foot { border-top-color: var(--on-dark-line); }
.case-card__chip {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--brand-strong);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}
.case-card--feature .case-card__chip {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.case-card__loc { font-size: var(--fs-xs); color: var(--text-muted); white-space: nowrap; }
.case-card--feature .case-card__loc { color: var(--on-dark-muted); }

/* Weitere Erfolge als schlanke Zeile */
.case-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.case-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.case-strip__item svg { flex: none; color: var(--brand-strong); width: 18px; height: 18px; }
.case-strip__item b { color: var(--text-strong); font-weight: var(--fw-bold); }

.cases-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.cases-cta p {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--text-strong);
}

/* ============ Kundenstimmen (Video + Quotes) ============ */
.voice-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-6);
  align-items: stretch;
  margin-bottom: var(--sp-6);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.video-embed { position: relative; margin: 0; }
.video-embed__btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--navy-900);
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.video-embed__poster {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.video-embed__btn:hover .video-embed__poster,
.video-embed__btn:focus-visible .video-embed__poster { transform: scale(1.04); }
.video-embed__btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 58, 0) 45%, rgba(10, 28, 58, 0.55));
}
.video-embed__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background-image: var(--grad-cta);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-cta);
  transition: transform var(--dur-base) var(--ease);
  z-index: 1;
}
/* sanfter Puls-Ring — laedt zum Klick ein (reduced-motion: global deaktiviert) */
.video-embed__play::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: play-pulse 3.2s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes play-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  60%, 100% { transform: scale(1.35); opacity: 0; }
}
.video-embed__btn:hover .video-embed__play,
.video-embed__btn:focus-visible .video-embed__play { transform: translate(-50%, -50%) scale(1.08); }
.video-embed__play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-embed__badge {
  position: absolute; top: var(--sp-4); left: var(--sp-4);
  z-index: 1;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 28, 58, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
}
.video-embed__cap {
  position: absolute;
  left: var(--sp-5); right: var(--sp-5); bottom: var(--sp-4);
  z-index: 1;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: #fff;
  pointer-events: none;
}
.video-embed.is-playing .video-embed__btn,
.video-embed.is-playing .video-embed__cap { display: none; }
.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Quote-Karten */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote--feature { border-left: 4px solid var(--blue-500); }
.quote__stars { color: var(--gold-deep); letter-spacing: 2px; margin-bottom: var(--sp-4); }
.quote__text { font-size: var(--fs-lg); color: var(--text-strong); line-height: var(--lh-normal); flex: 1; }
.quote--mini .quote__text { font-size: var(--fs-base); }
.quote__text::before { content: "\201E"; }
.quote__text::after { content: "\201C"; }
.quote__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-soft);
}
.quote__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  flex: none;
  background: var(--blue-500);
}
.quote__avatar--navy { background: var(--navy-700); }
.quote__avatar--deep { background: var(--blue-800); }
.quote__name { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-strong); }
.quote__meta { font-size: var(--fs-sm); color: var(--text-muted); }

/* Google-Rating-Karte */
.rating-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-2);
  overflow: hidden;
}
.rating-card .stars { font-size: 1.2rem; letter-spacing: 3px; color: var(--gold-deep); }
.rating-card__num {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-2xl);
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.rating-card__lbl { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.35; }

/* ============ Vergleichstabelle ============ */
.compare {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare__table { width: 100%; border-collapse: collapse; }
.compare__table th,
.compare__table td {
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
/* Kriterien-Spalte bekommt Raum, damit lange Labels nicht abgeschnitten/eng wirken */
.compare__table th:first-child { width: 34%; }
.compare__table thead th:not(:first-child),
.compare__table tbody td { width: 22%; }
/* Werte-Spalten zentriert (Matrix-Lesbarkeit) */
.compare__table thead th:not(:first-child),
.compare__table tbody td { text-align: center; }
.compare__table thead th {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  color: var(--text-muted);
  font-weight: var(--fw-bold);
  background: var(--surface-2);
  line-height: 1.3;
  padding-block: var(--sp-6);
}
.compare__table thead th small {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 3px;
}
.compare__table thead th.is-brand {
  color: #fff;
  background: var(--blue-600);
  font-weight: var(--fw-bold);
}
.compare__table thead th.is-brand small { color: rgba(255, 255, 255, 0.75); }
.compare__table tbody th[scope="row"] {
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.35;
}
/* Zebra fuer lange Tabellen */
.compare__table tbody tr:nth-child(even) th,
.compare__table tbody tr:nth-child(even) td { background: var(--paper); }
.compare__table td.is-brand {
  background: var(--blue-50) !important;
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  box-shadow: inset 2px 0 0 var(--blue-200), inset -2px 0 0 var(--blue-200);
}
.compare__table tr:last-child th,
.compare__table tr:last-child td { border-bottom: 0; }
.tick { color: var(--brand-strong); font-weight: var(--fw-bold); }
.compare__table td.is-brand .tick {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-size: 0.8rem;
}
.cross { color: var(--slate-400); font-weight: var(--fw-bold); }
.compare__cell { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-base); }

.compare-scroll { position: relative; }
.compare-cta {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--fs-lg);
  color: var(--text-muted);
}
.compare-cta a { font-weight: var(--fw-bold); }

/* ============ Garantie-Block ============ */
.guarantee {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  overflow: hidden;
}
.guarantee::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}
.guarantee__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
  background: var(--gold-soft);
  border: 1px solid rgba(254, 181, 12, 0.32);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}
.guarantee__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  align-items: center;
}
.guarantee h2 { font-size: var(--fs-3xl); }
.guarantee__lead { margin-top: var(--sp-4); color: var(--text-muted); font-size: var(--fs-lg); }
.guarantee__steps { display: grid; gap: var(--sp-5); }
.guarantee__steps li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.guarantee__check {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold-text);
  margin-top: 2px;
}
.guarantee__check svg { width: 17px; height: 17px; }
.guarantee__steps b { display: block; color: var(--text-strong); font-family: var(--font-display); margin-bottom: 2px; }
.guarantee__steps span { color: var(--text-muted); font-size: var(--fs-base); }
.guarantee__note {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ============ CTA + Kontaktformular ============ */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.cta__list { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }
.cta__list li { display: flex; align-items: center; gap: var(--sp-3); color: var(--on-dark); }
.cta__list svg { flex: none; color: var(--gold-400); width: 22px; height: 22px; }

.contact-person {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--on-dark-line);
}
.contact-person__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background-image: var(--grad-cta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  flex: none;
}
.contact-person b { display: block; color: #fff; font-family: var(--font-display); }
.contact-person span { font-size: var(--fs-sm); color: var(--on-dark-muted); }

/* ============ Kontakt-Sektion mit Cal.com (volle Breite) ============ */
.cta-contact { max-width: 980px; margin-inline: auto; }
.cta-head { text-align: center; margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.cta-head .section-lead { margin-inline: auto; max-width: 58ch; }
.cta__list--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-6);
}
.cta__list--row li { color: var(--on-dark); }
.cta-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.cta-person__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background-image: var(--grad-cta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-sm);
  flex: none;
}
.cta-person b { display: block; color: #fff; font-family: var(--font-display); font-size: var(--fs-sm); }
.cta-person span span { font-size: var(--fs-xs); color: var(--on-dark-muted); }

/* ============ Cal.com Inline-Embed (Terminbuchung) ============ */
.cal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3);
  position: relative;
  overflow: hidden;
}
.cal-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background-image: var(--grad-cta);
  z-index: 1;
}
.cal-inline {
  width: 100%;
  min-height: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cal-inline iframe { border-radius: var(--radius-md); }
.cal-card__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  padding: var(--sp-3) var(--sp-2) var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}
.cal-card__foot .stars { font-size: var(--fs-xs); letter-spacing: 1px; }

/* Klick-zum-Laden-Platzhalter (Cal.com erst auf Nutzeraktion) */
.cal-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-3);
  min-height: 600px;
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  background: var(--bg-subtle, #f5f8fb);
  border: 1px dashed #cdd9e8;
}
.cal-embed__icon { width: 46px; height: 46px; color: #3378ec; }
.cal-embed__title {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold, 700);
  color: var(--text);
}
.cal-embed__hint { margin: 0; max-width: 38ch; font-size: var(--fs-sm); color: var(--text-muted); }

.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background-image: var(--grad-cta);
}
/* doppelte Selektor-Spezifitaet: schlaegt `.section--dark h3` (weiss) */
.form-card .form-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-xl);
  color: var(--text-strong);
  margin-bottom: var(--sp-2);
}
.form-card__sub { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.field { margin-bottom: var(--sp-4); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  margin-bottom: var(--sp-2);
}
.field label .req { color: #C0432F; } /* dunkler als --danger: AA auf weisser Card */
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(81, 135, 241, 0.28);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-3); text-align: center; }
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}
.form-trust .stars { font-size: var(--fs-xs); letter-spacing: 1px; }
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
}
.form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(51, 120, 236, 0.12);
  color: var(--brand);
  display: grid; place-items: center;
  margin: 0 auto var(--sp-5);
}
.form-card.is-sent .form-body { display: none; }
.form-card.is-sent .form-success { display: block; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-950);
  color: var(--on-dark-muted);
  padding-block: var(--sp-20) var(--sp-8);
  border-top: 1px solid var(--on-dark-line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-8);
}
.footer__brand .brand { color: #fff; margin-bottom: var(--sp-4); }
.footer__brand .brand b { color: var(--blue-300); }
.footer__brand p { max-width: 34ch; font-size: var(--fs-sm); }
.footer__col h4 { color: #fff; font-size: var(--fs-base); margin-bottom: var(--sp-4); }
.footer__col ul { display: grid; gap: var(--sp-3); }
.footer__col a { color: var(--on-dark-muted); font-size: var(--fs-sm); }
.footer__col a:hover { color: #fff; }
.footer__badges { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); flex-wrap: wrap; }
.footer__badge {
  font-size: var(--fs-xs);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  color: var(--on-dark-muted);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-16);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-sm);
}
.footer__social { display: flex; gap: var(--sp-3); }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid; place-items: center;
  color: var(--on-dark-muted);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.footer__disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-8);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
}

/* ============ FAQ ============ */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color var(--dur-base);
}
.faq__item[open] { border-color: var(--blue-200); box-shadow: var(--shadow-xs); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--brand-strong);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform var(--dur-base) var(--ease), opacity var(--dur-base); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { padding: 0 var(--sp-6) var(--sp-6); color: var(--text-muted); }
.faq__a p + p { margin-top: var(--sp-3); }

/* ============ Generische Karte (Sub-Pages) ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card__title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--text-strong); margin-bottom: var(--sp-3); }
.card__text { color: var(--text-muted); }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--brand-strong);
  margin-bottom: var(--sp-5);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--amber { background: var(--gold-soft); border-color: rgba(254, 181, 12, 0.32); color: var(--gold-text); }

/* ============ Grids (generisch) ============ */
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============ Sub-Pages (Impressum/Datenschutz/Kontakt) ============ */
.page-hero {
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) var(--sp-10);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.prose { max-width: var(--container-narrow); margin-inline: auto; }
.prose h2 { font-size: var(--fs-2xl); margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: var(--sp-4); color: var(--text); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: var(--sp-4); display: grid; gap: var(--sp-2); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-3); }

/* =========================================================
   MEDIA- & PROOF-LAYER (echte Fotos/Logos der Live-Site)
   ========================================================= */

/* Shortlist-Card in der Leistungen-Bento-Zelle */
.bento__cell .shortlist-card {
  margin-top: auto;
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

/* Quote-Avatare als echte Portraits */
img.quote__avatar { object-fit: cover; }

/* Speaker-Galerie im Stats-Band */
.speaker-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.speaker-gallery figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
  background: var(--navy-800);
}
.speaker-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.speaker-gallery figure:hover img { transform: scale(1.045); }
.speaker-gallery figcaption {
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
  padding: var(--sp-3) var(--sp-4);
}
.speaker-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.speaker-logos .badge-chip { padding: 0.5rem 1rem; }
.speaker-logos .badge-chip img { height: 30px; max-width: 150px; object-fit: contain; }

/* Case-Card mit Foto */
.case-card__media {
  margin: calc(-1 * var(--sp-8)) calc(-1 * var(--sp-8)) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.case-card__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.case-card:hover .case-card__media img { transform: scale(1.04); }
.case-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 58, 0) 55%, rgba(10, 28, 58, 0.55));
}

/* Team-Foto im Kontakt-Block */
.contact-photo {
  margin: var(--sp-8) 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--on-dark-line);
  box-shadow: var(--shadow-md);
  max-width: 460px;
}
.contact-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* ============ Angebot (No-Brainer-Stack) ============ */
.offer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.offer__main { padding: clamp(2rem, 1.5rem + 2vw, 3.25rem); }
.offer__main h2 { font-size: var(--fs-3xl); }
.offer__lead { margin-top: var(--sp-4); color: var(--text-muted); font-size: var(--fs-lg); max-width: 52ch; }
.offer__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-8);
}
.offer__list li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.offer__check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--brand-strong);
  margin-top: 1px;
}
.offer__check svg { width: 14px; height: 14px; }
.offer__list b { display: block; color: var(--text-strong); font-family: var(--font-display); font-size: var(--fs-base); }
.offer__list span { font-size: var(--fs-sm); color: var(--text-muted); }

.offer__aside {
  background-color: var(--navy-900);
  background-image: radial-gradient(70% 90% at 80% 0%, rgba(51, 120, 236, 0.30), transparent 62%);
  color: var(--on-dark);
  padding: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.offer__aside-title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: var(--fs-2xl);
  color: #fff;
  letter-spacing: -0.025em;
}
.offer__points { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.offer__points li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-base);
  color: var(--on-dark);
}
.offer__points svg { flex: none; width: 20px; height: 20px; color: var(--gold-400); margin-top: 2px; }
.offer__points b { color: #fff; }
.offer__aside .btn { margin-top: auto; }
.offer__note { font-size: var(--fs-xs); color: var(--on-dark-muted); text-align: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero__grid { gap: var(--sp-10); }
  .channel-tile { width: 46px; height: 46px; }
}

@media (max-width: 1000px) {
  /* Mobile-Navigation (greift frueher — iPad portrait inklusive) */
  .nav__toggle { display: grid; place-items: center; }
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: var(--sp-3) var(--gutter) var(--sp-5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: var(--sp-4) var(--sp-2); border-bottom: 1px solid var(--line-soft); font-size: var(--fs-lg); color: var(--slate-700); }
  .site-header--dark .nav__link { color: var(--slate-700); }
  .nav__link::after { display: none; }

  /* Dropdown im Mobile-Menue: statisches Akkordeon */
  .nav__dropdown-trigger { width: 100%; justify-content: space-between; }
  .nav__dropdown-panel {
    position: static;
    transform: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 var(--sp-4);
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .nav__dropdown-panel::before { display: none; }
  .nav__dropdown.is-open .nav__dropdown-panel { display: block; transform: none; }
  .nav__dropdown:hover .nav__dropdown-panel:not(.is-open) { transform: none; }
  .nav__dropdown-panel a { white-space: normal; border-bottom: 1px solid var(--line-soft); border-radius: 0; padding: var(--sp-3) var(--sp-2); }
  .nav__links .btn { margin-top: var(--sp-4); }
  .nav__cta-li { display: block; }
  .nav__actions .btn--cta-desktop { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero-stage { margin-inline: auto; margin-top: var(--sp-6); max-width: 440px; }
  .hero__copy { text-align: left; }

  .bento__cell--wide, .bento__cell--slim { grid-column: span 6; }
  .offer { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline__track { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-6); }
  .timeline__track::before { display: none; }
  .speaker-gallery { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .problem-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .process-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .funnel-card { max-width: 560px; }
  .voice-feature { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-10) var(--sp-6); }
  .positions { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card--feature, .case-card--side { grid-column: auto; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-10) var(--sp-8); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .positions { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .case-strip { grid-template-columns: 1fr; }
  .speaker-gallery { grid-template-columns: 1fr; }
  .offer__list { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .timeline__track { grid-template-columns: 1fr; }
  .case-card__media { margin: calc(-1 * var(--sp-8)) calc(-1 * var(--sp-8)) var(--sp-5); }
  .bento__cell--wide, .bento__cell--slim { grid-column: span 12; }
  .cta__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
  .cta-strip__inner { justify-content: center; text-align: center; }

  /* Hero-Stage kompakt: Kacheln als statische Reihe unter der Karte */
  .hero-stage { padding: 0 0 var(--sp-4); max-width: 420px; }
  .channel-tile {
    position: static;
    transform: none;
    animation: none;
    width: 44px; height: 44px;
    border-radius: 12px;
  }
  .hero-tiles {
    display: flex;
    justify-content: center;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    flex-wrap: wrap;
  }
  .kpi-chip { position: static; margin-top: var(--sp-4); }

  /* Vergleich: horizontal scrollbar, Fade-Kante rechts als Scroll-Hinweis */
  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
  .compare-scroll:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }
  .compare { min-width: 720px; }
}

@media (min-width: 761px) {
  .hero-tiles { display: contents; }
}

@media (max-width: 480px) {
  /* grosse CTAs: volle Breite statt Overflow */
  .btn--lg,
  .cases-cta .btn,
  .cta-strip .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero__trust-item { border-left: 0; padding-inline: 0; }
  .hero__trust { gap: var(--sp-3) var(--sp-6); }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .channel-tile { width: 40px; height: 40px; }
}

/* =========================================================
   Consent-Banner (DSGVO-Opt-in für Meta-Pixel)
   ========================================================= */
.consent {
  position: fixed;
  left: 50%;
  bottom: var(--sp-5);
  transform: translate(-50%, 140%);
  width: min(680px, calc(100vw - 2 * var(--sp-4)));
  z-index: 200;
  background: var(--navy-900, #0a1c3a);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 60px -16px rgba(7, 18, 40, 0.6);
  opacity: 0;
  transition: transform 0.36s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
              opacity 0.36s ease;
}
.consent.is-visible { transform: translate(-50%, 0); opacity: 1; }
.consent__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
}
.consent__text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.consent__text a { color: var(--gold-400, #ffc94d); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }
.consent__btn { padding: 0.7rem 1.25rem; font-size: var(--fs-sm); }
.consent .btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.consent .btn--ghost:hover { border-color: rgba(255, 255, 255, 0.6); color: #fff; }

@media (max-width: 560px) {
  .consent { bottom: 0; width: 100vw; border-radius: 16px 16px 0 0; }
  .consent__inner { flex-direction: column; align-items: stretch; gap: var(--sp-4); padding: var(--sp-5); }
  .consent__actions { justify-content: stretch; }
  .consent__btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .consent { transition: opacity 0.2s ease; transform: translate(-50%, 0); }
}

/* Footer-Link „Cookie-Einstellungen" (Widerruf) */
.consent-reset {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.6));
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.consent-reset:hover { color: #fff; }
