:root {
  --red: #b00812;
  --red-dark: #85000a;
  --red-soft: #fff1f2;
  --ink: #111c2b;
  --text: #4f5c6e;
  --muted: #7a8594;
  --line: #dfe4ea;
  --surface: #ffffff;
  --surface-soft: #f6f8fa;
  --blue: #1877d2;
  --blue-soft: #eaf4ff;
  --ai-dark: #0e1c2f;
  --shadow: 0 18px 48px rgba(20, 32, 51, .10);
  --shadow-soft: 0 10px 28px rgba(20, 32, 51, .08);
  --radius: 18px;
  --shell: min(1500px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 999;
  padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 118px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  transition: height .28s ease, box-shadow .28s ease, background .28s ease;
}
.site-header.scrolled {
  height: 88px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(17,28,43,.08), 0 12px 32px rgba(17,28,43,.05);
}
.header-inner {
  height: 100%; display: grid; grid-template-columns: 330px 1fr auto;
  align-items: center; gap: 28px;
}
.brand { width: 300px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(20px, 2.2vw, 44px); }
.nav-link {
  position: relative; padding: 12px 0; font-size: 16px; font-weight: 700; color: #1f2b3b;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px;
  background: var(--red); transition: right .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-ai { color: #154f88; }
.header-cta { white-space: nowrap; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 22px;
  min-height: 56px; padding: 0 26px; border-radius: 8px; font-weight: 800;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--red), #ce0909); color: #fff; box-shadow: 0 12px 26px rgba(176,8,18,.16); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(176,8,18,.24); }
.button-secondary { background: #fff; border-color: #aeb7c3; color: var(--ink); }
.button-secondary:hover { border-color: var(--red); }
.menu-toggle { display: none; }

.hero {
  position: relative; overflow: hidden; min-height: 940px;
  padding: 175px 0 54px;
  background: radial-gradient(circle at 77% 54%, rgba(238,243,248,.82), transparent 33%), #fff;
}
.hero-grid {
  display: grid; grid-template-columns: .90fr 1.25fr; gap: clamp(45px, 5vw, 92px); align-items: center;
}
.hero-copy { padding-top: 24px; position: relative; z-index: 3; }
.eyebrow { margin: 0 0 22px; color: var(--red); font-size: 15px; font-weight: 900; letter-spacing: .11em; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(56px, 5vw, 82px); line-height: .99; }
h1 span { color: var(--red); }
.title-rule { width: 72px; height: 3px; background: var(--red); margin: 0 0 30px; }
.hero-lead { max-width: 680px; margin: 0 0 20px; color: #46566a; font-size: 19px; line-height: 1.65; }
.hero-text { max-width: 660px; margin: 0; color: #556376; font-size: 17px; line-height: 1.68; }
.hero-text strong { color: #29384a; }
.hero-actions { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.trust-strip { display: flex; gap: 14px 28px; margin-top: 38px; flex-wrap: wrap; color: #657284; font-size: 14px; font-weight: 800; }
.trust-strip span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 9px 2px 0; border-radius: 50%; background: var(--red); }

.process-wrap { position: relative; z-index: 2; }
.process-stage { position: relative; height: 560px; }
.flow-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.flow-base path { fill: none; stroke: #cad3dd; stroke-width: 1.25; opacity: .75; }
.flow-active path {
  fill: none; stroke: #ef4651; stroke-width: 1.45; stroke-dasharray: 7 10;
  stroke-dashoffset: 0; opacity: .14;
  transition: opacity .28s ease, stroke-width .28s ease;
}
.flow-active path.is-supporting { opacity: .36; }
.flow-active path.is-flowing { opacity: .92; stroke-width: 1.85; }

.source-stack, .outcome-stack { position: absolute; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-around; }
.source-stack { left: 0; width: 31%; }
.outcome-stack { right: 0; width: 30%; }
.process-card {
  position: relative; display: flex; align-items: center; gap: 13px;
  min-height: 82px; padding: 14px 16px; background: rgba(255,255,255,.94);
  border: 1px solid rgba(216,224,232,.82); border-radius: 16px;
  box-shadow: var(--shadow-soft); transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, opacity .32s ease;
}
.process-card > div { min-width: 0; flex: 1 1 auto; }
.process-card strong { display: block; font-size: 14px; line-height: 1.2; letter-spacing: -.01em; }
.process-card small { display: block; margin-top: 5px; color: #657386; font-size: 12px; line-height: 1.35; overflow-wrap: anywhere; }
.word-line { display: block; white-space: nowrap; }
.process-card.is-active {
  transform: translateY(-3px); border-color: rgba(176,8,18,.48);
  box-shadow: 0 18px 34px rgba(176,8,18,.14), inset 3px 0 0 rgba(176,8,18,.72);
}
.outcome-card { overflow: hidden; }
.card-icon {
  width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid #cfd7e0; border-radius: 11px;
  display: grid; place-items: center; color: #31445c; font-size: 15px; font-weight: 900; background: #fff;
}
.card-icon.red { border-color: #e8a7ac; color: var(--red); }
.card-icon.blue { border-color: #b9d6ef; color: #1267b7; background: #f7fbff; }
.port { position: absolute; right: 7px; width: 9px; height: 9px; border: 2px solid white; border-radius: 50%; background: #ef3340; box-shadow: 0 0 0 3px rgba(239,51,64,.10); }
.port-left { left: 7px; right: auto; }
.port-right { right: 7px; }

.hub-card {
  position: absolute; left: 49.7%; top: 50%; transform: translate(-50%,-50%);
  width: 19%; min-width: 160px; min-height: 156px; padding: 22px 12px;
  flex-direction: column; justify-content: center; text-align: center;
}
.hub-card.is-active { transform: translate(-50%,-53%); }
.hub-symbol { width: 44px; height: 34px; position: relative; display: block; margin-bottom: 2px; }
.hub-symbol i { position: absolute; left: 7px; width: 30px; height: 13px; border: 2px solid #ef3340; transform: rotate(30deg) skew(-18deg); background: #fff; }
.hub-symbol i:nth-child(1) { top: 0; }
.hub-symbol i:nth-child(2) { top: 7px; }
.hub-symbol i:nth-child(3) { top: 14px; }
.status-ring { margin-left: 8px; margin-right: 1px; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; border: 2px solid #d5dce4; border-right-color: #ef3340; }
.process-card.is-active .status-ring { animation: ring 1.1s linear infinite; }
@keyframes ring { to { transform: rotate(360deg); } }
.process-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 6px 0 0; color: #7b8796; font-size: 12px; }
.process-note span { width: 24px; height: 1px; background: var(--red); }

.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(12px); opacity: .48; }
.hero-glow-a { width: 420px; height: 420px; right: -180px; bottom: -170px; background: radial-gradient(circle, rgba(176,8,18,.08), transparent 64%); }
.hero-glow-b { width: 560px; height: 280px; right: 22%; bottom: -120px; background: radial-gradient(ellipse, rgba(24,119,210,.07), transparent 70%); }
.scroll-guide { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-top: 48px; color: var(--red); }
.scroll-guide span { height: 1px; background: linear-gradient(90deg, var(--red), rgba(176,8,18,.35)); }
.scroll-guide span:last-child { background: linear-gradient(90deg, rgba(176,8,18,.35), var(--red)); }
.scroll-guide b { font-size: 26px; font-weight: 500; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.preview-section { padding: 115px 0 130px; background: #fff; border-top: 1px solid #f0f2f5; }
.preview-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: end; }
.preview-grid h2, .placeholder-section h2, .contact-section h2 { margin-bottom: 0; font-size: clamp(38px, 4vw, 60px); line-height: 1.08; }
.preview-grid > p { margin: 0 0 7px; font-size: 18px; line-height: 1.7; color: var(--text); }
.preview-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 58px; }
.preview-cards article { padding: 34px; border: 1px solid #e4e9ee; border-radius: 16px; background: #fff; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.preview-cards article:hover { transform: translateY(-4px); border-color: #e2b3b7; box-shadow: var(--shadow-soft); }
.preview-cards span { color: var(--red); font-weight: 900; font-size: 13px; letter-spacing: .08em; }
.preview-cards h3 { margin: 18px 0 12px; font-size: 24px; }
.preview-cards p { margin: 0; color: var(--text); line-height: 1.65; }
.placeholder-section, .contact-section { min-height: 430px; display: grid; align-items: center; padding: 90px 0; background: var(--surface-soft); border-top: 1px solid #e9edf1; }
.placeholder-section p:not(.eyebrow), .contact-section p:not(.eyebrow) { max-width: 780px; color: var(--text); line-height: 1.7; font-size: 17px; }
.ai-placeholder { color: #fff; background: linear-gradient(135deg, #102033, #173855); }
.ai-placeholder .eyebrow { color: #55b9f1; }
.ai-placeholder p:not(.eyebrow) { color: #c7d6e4; }
.contact-section { background: #fff; }
.contact-section .button { margin-top: 20px; }
.site-footer { padding: 32px 0; background: #f5f7f9; border-top: 1px solid #e1e6eb; }
.site-footer .shell { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-footer img { width: 190px; }
.site-footer p { color: #7c8795; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1220px) {
  :root { --shell: min(1120px, calc(100vw - 48px)); }
  .site-header { height: 96px; }
  .header-inner { grid-template-columns: 250px 1fr auto; gap: 16px; }
  .brand { width: 235px; }
  .main-nav { gap: 18px; }
  .nav-link { font-size: 14px; }
  .header-cta { min-height: 48px; padding-inline: 18px; font-size: 14px; }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: .88fr 1.12fr; gap: 34px; }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .source-stack { width: 32%; }
  .outcome-stack { width: 32%; }
  .process-card { gap: 10px; padding: 12px 12px; }
  .process-card strong { font-size: 13px; }
  .process-card small { font-size: 11px; }
  .card-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 10px; font-size: 13px; }
  .status-ring { width: 16px; height: 16px; flex-basis: 16px; margin-left: 5px; }
  .hub-card { width: 18%; min-width: 145px; padding-inline: 10px; }
}

@media (max-width: 980px) {
  :root { --shell: min(900px, calc(100vw - 36px)); }
  .site-header, .site-header.scrolled { height: 82px; }
  .header-inner { display: flex; justify-content: space-between; }
  .brand { width: 220px; }
  .header-cta { display: none; }
  .menu-toggle {
    display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 1px solid #d9dfe6;
    border-radius: 10px; background: #fff; cursor: pointer;
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; top: 82px; left: 18px; right: 18px; display: none; align-items: stretch; gap: 0;
    padding: 14px; border: 1px solid #e0e5ea; border-radius: 14px; background: rgba(255,255,255,.98); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; flex-direction: column; }
  .nav-link { padding: 12px 10px; }
  .nav-link::after { display: none; }
  .hero { min-height: auto; padding: 130px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .process-wrap { margin-top: 16px; }
  .preview-grid { grid-template-columns: 1fr; gap: 24px; }
  .preview-cards { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .fai-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .fai-page-cta-copy {
    max-width: 820px;
  }
  .fai-page-cta-card {
    max-width: 620px;
  }
}
@media (max-width: 700px) {
  :root { --shell: calc(100vw - 28px); }
  .brand { width: 180px; }
  .hero { padding-top: 116px; }
  h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .process-stage { height: auto; display: grid; gap: 14px; }
  .flow-lines { display: none; }
  .source-stack, .outcome-stack { position: static; width: auto; display: grid; gap: 10px; }
  .hub-card { position: static; width: auto; min-height: 130px; transform: none; }
  .hub-card.is-active { transform: translateY(-3px); }
  .port { display: none; }
  .process-card { min-height: 74px; }
  .process-note { margin-top: 18px; }
  .scroll-guide { margin-top: 34px; gap: 16px; }
  .preview-section { padding: 82px 0 95px; }
  .preview-cards { margin-top: 38px; }
  .site-footer .shell { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-guide b { animation: none; }
  .button, .process-card, .preview-cards article, .nav-link::after { transition-duration: .12s; }
  .process-card.is-active .status-ring { animation-duration: 2s; }
}

/* =========================================================
   Leistungen – Vollausbau ab Prototyp 0.3
   ========================================================= */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fbfcfd 100%);
  border-top: 1px solid #f0f2f5;
}
.services-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  left: -340px;
  top: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(176,8,18,.055), transparent 68%);
}
.services-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
}
.services-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.07;
}
.services-intro-copy {
  padding-bottom: 4px;
}
.services-intro-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
}
.services-principle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #2e3c4e;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .015em;
}
.services-principle span {
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: var(--red);
}
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 62px;
}
.service-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px 32px 28px;
  border: 1px solid #e2e7ec;
  border-radius: 19px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(20,32,51,.045);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(176,8,18,.10));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  border-color: #ddb8bc;
  box-shadow: 0 22px 46px rgba(20,32,51,.09);
}
.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}
.service-card-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.service-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  border: 1px solid #e4c1c4;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #fff8f8);
  color: var(--red);
}
.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
}
.service-card-body {
  margin-top: 30px;
}
.service-kicker {
  margin: 0 0 8px;
  color: #7a8594;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 0 0 17px;
  font-size: clamp(25px, 2vw, 31px);
  line-height: 1.12;
}
.service-description {
  margin: 0;
  min-height: 84px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
.service-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 25px;
  color: #435164;
  font-size: 14px;
  line-height: 1.5;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .48em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.service-card-footer {
  margin-top: auto;
  padding-top: 32px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #243246;
  font-size: 14px;
  font-weight: 850;
}
a.service-link {
  cursor: pointer;
}
.service-link b {
  color: var(--red);
  font-size: 18px;
  font-weight: 500;
  transition: transform .2s ease;
}
.service-card:hover .service-link b,
.service-link:focus b {
  transform: translateX(4px);
}
.service-card-digital {
  background:
    radial-gradient(circle at 100% 0%, rgba(24,119,210,.05), transparent 34%),
    rgba(255,255,255,.98);
}
.services-footnote {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) minmax(0, 880px);
  gap: 34px;
  align-items: center;
  margin-top: 56px;
}
.services-footnote-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(176,8,18,.18), var(--red));
}
.services-footnote p {
  margin: 0;
  max-width: 840px;
  color: #344255;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.58;
  letter-spacing: -.008em;
}

/*
 * Die drei Leistungskarten werden bewusst getrennt vom allgemeinen
 * .reveal-System animiert. Dadurch bleibt die gewünschte, dezente
 * Staffelung auch dann sichtbar, wenn das Betriebssystem
 * prefers-reduced-motion meldet (wie bei manchen Windows-Setups).
 */
.service-stagger {
  opacity: 1;
  transform: none;
}
.service-grid.stagger-ready .service-stagger {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .62s cubic-bezier(.22,.61,.36,1),
    transform .62s cubic-bezier(.22,.61,.36,1),
    box-shadow .25s ease,
    border-color .25s ease;
  will-change: opacity, transform;
}
.service-grid.stagger-ready .service-stagger.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.service-grid.stagger-ready .service-stagger.is-shown:hover,
.service-grid.stagger-ready .service-stagger.is-shown:focus-within {
  transform: translateY(-5px);
}

/* Individuelle Verzögerungen bleiben vollständig optional. */
.reveal { transition-delay: var(--reveal-delay, 0s); }
.reveal-delay { --reveal-delay: .12s; }

@media (max-width: 1120px) {
  .service-card {
    min-height: 520px;
    padding-inline: 25px;
  }
  .service-description { min-height: 104px; }
}

@media (max-width: 980px) {
  .services-section { padding: 96px 0 106px; }
  .services-intro { grid-template-columns: 1fr; gap: 25px; }
  .services-intro-copy > p { max-width: 760px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .service-card { min-height: 0; padding: 30px; }
  .service-description { min-height: 0; max-width: 760px; }
  .services-footnote { grid-template-columns: 90px 1fr; margin-top: 44px; }
}

@media (max-width: 700px) {
  .services-section { padding: 78px 0 86px; }
  .services-intro h2 { font-size: clamp(38px, 11vw, 52px); }
  .services-intro-copy > p { font-size: 17px; }
  .services-principle { align-items: flex-start; line-height: 1.5; }
  .service-grid { gap: 16px; margin-top: 36px; }
  .service-card { padding: 25px 23px 23px; border-radius: 16px; }
  .service-icon { width: 58px; height: 58px; flex-basis: 58px; }
  .service-card-body { margin-top: 24px; }
  .service-card h3 { font-size: 27px; }
  .service-card-footer { padding-top: 27px; }
  .services-footnote { display: block; margin-top: 38px; }
  .services-footnote-line { width: 54px; margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card:not(.service-stagger), .service-card::before, .service-link b { transition-duration: .12s; }
  .service-stagger {
    transform: translateY(9px);
    transition:
      opacity .38s ease,
      transform .38s ease,
      box-shadow .12s ease,
      border-color .12s ease;
  }
}

/* =========================================================
   Kundennutzen – Prototyp 0.4
   Ruhiger Übergang von Leistungen zur Arbeitsweise
   ========================================================= */
.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0 132px;
  background:
    linear-gradient(180deg, #f7f9fb 0%, #f9fafc 100%);
  border-top: 1px solid #e8edf2;
  border-bottom: 1px solid #e8edf2;
}
.benefits-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -390px;
  top: -210px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(176,8,18,.052), transparent 67%);
}
.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(64px, 8vw, 138px);
  align-items: start;
}
.benefits-copy {
  position: sticky;
  top: 132px;
  padding-top: 5px;
}
.benefits-copy h2 {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(43px, 4vw, 62px);
  line-height: 1.08;
}
.benefits-copy h2 span {
  color: #344255;
  font-weight: 620;
}
.benefits-lead {
  max-width: 660px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.76;
}
.benefits-statement {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 42px;
  max-width: 620px;
}
.benefits-statement-line {
  height: 2px;
  background: var(--red);
}
.benefits-statement p {
  margin: 0;
  color: #263548;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.45;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  border-top: 1px solid #d7dee6;
}
.benefit-item {
  position: relative;
  min-height: 270px;
  padding: 31px 0 34px;
  border-bottom: 1px solid #d7dee6;
}
.benefit-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .32s ease;
}
.benefit-item:hover::before,
.benefit-item:focus-within::before {
  width: 62px;
}
.benefit-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.benefit-number {
  color: #9aa4b0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dce4;
  border-radius: 13px;
  background: rgba(255,255,255,.72);
  color: var(--red);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-item:hover .benefit-icon {
  transform: translateY(-2px);
  border-color: rgba(176,8,18,.34);
  background: #fff;
}

/* =========================================================
   Korrektur 0.5.2 – Nutzen-Grafiken
   Die SVG-Klassen waren in 0.5/0.5.1 nicht definiert.
   Ohne diese Regeln verwendet SVG standardmäßig schwarze Füllflächen.
   ========================================================= */
.benefit-visual {
  width: 100%;
  max-width: 255px;
  min-height: 122px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.benefit-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
}
.benefit-visual .visual-card {
  fill: rgba(255,255,255,.92);
  stroke: #cfd8e2;
  stroke-width: 1.6;
}
.benefit-visual .visual-soft {
  fill: rgba(176,8,18,.075);
  stroke: none;
}
.benefit-visual .visual-line {
  fill: none;
  stroke: #344255;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-visual .visual-accent {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-visual .visual-muted {
  fill: none;
  stroke: #b9c4cf;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-visual .visual-dot {
  fill: var(--red);
  stroke: none;
}
.benefit-visual .visual-soft-dot {
  fill: #c9d2dc;
  stroke: none;
}
.benefit-visual-digital .visual-soft {
  fill: rgba(24,119,210,.085);
}
.benefit-visual-digital .visual-accent {
  stroke: var(--blue);
}
.benefit-visual-digital .visual-dot {
  fill: var(--blue);
}
.benefit-item:hover .benefit-visual .visual-card {
  stroke: #bbc6d2;
}

.benefit-text {
  margin-top: 10px;
}
.benefit-text h3 {
  margin-bottom: 13px;
  font-size: 28px;
  line-height: 1.1;
}
.benefit-text p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* Eigenständige, dezente Staffelung der vier Nutzenpunkte. */
.benefit-stagger {
  opacity: 1;
  transform: none;
}
.benefits-list.benefits-stagger-ready .benefit-stagger {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .58s cubic-bezier(.22,.61,.36,1),
    transform .58s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.benefits-list.benefits-stagger-ready .benefit-stagger.is-shown {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .benefits-grid { gap: 60px; }
  .benefits-list { gap: 0 28px; }
  .benefit-item { min-height: 286px; }
  .benefits-copy h2 { font-size: clamp(40px, 4.4vw, 56px); }
}

@media (max-width: 980px) {
  .benefits-section { padding: 98px 0 105px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 55px; }
  .benefits-copy { position: static; }
  .benefits-copy h2, .benefits-lead { max-width: 800px; }
  .benefits-list { gap: 0 34px; }
  .benefit-item { min-height: 245px; }
}

@media (max-width: 700px) {
  .benefits-section { padding: 80px 0 88px; }
  .benefits-grid { gap: 42px; }
  .benefits-copy h2 { font-size: clamp(37px, 10.7vw, 50px); }
  .benefits-lead { font-size: 17px; }
  .benefits-statement { grid-template-columns: 48px minmax(0, 1fr); margin-top: 33px; }
  .benefits-list { grid-template-columns: 1fr; }
  .benefit-item { min-height: 0; padding: 27px 0 30px; }
  .benefit-text { margin-top: 8px; }
  .benefit-text h3 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-item::before, .benefit-icon { transition-duration: .12s; }
  .benefits-list.benefits-stagger-ready .benefit-stagger {
    transform: translateY(8px);
    transition: opacity .34s ease, transform .34s ease;
  }
}


/* =========================================================
   Arbeitsweise – Prototyp 0.5
   Stärker visuell mit Prozesslinie und animierten Schritten
   ========================================================= */
.workflow-section {
  position: relative;
  overflow: hidden;
  padding: 122px 0 130px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border-top: 1px solid #e9edf1;
}
.workflow-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.workflow-glow-a {
  width: 620px;
  height: 620px;
  left: -340px;
  top: 110px;
  background: radial-gradient(circle, rgba(176,8,18,.06), transparent 68%);
}
.workflow-glow-b {
  width: 540px;
  height: 540px;
  right: -300px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(24,119,210,.05), transparent 70%);
}
.workflow-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: end;
}
.workflow-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.08;
}
.workflow-intro-copy > p {
  margin: 0;
  max-width: 650px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.76;
}
.workflow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.workflow-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d8e0e8;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #324154;
  font-size: 13px;
  font-weight: 760;
}
.workflow-board {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  padding: 32px 34px 38px;
  border: 1px solid #e4e9ef;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(251,252,253,.96) 100%);
  box-shadow: 0 32px 70px rgba(17, 27, 40, .08);
}
.workflow-sources {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.workflow-source {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 14px 14px 12px;
  border: 1px solid #e2e8ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(18, 29, 45, .05);
  opacity: 1;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.workflow-source:hover {
  transform: translateY(-2px);
  border-color: rgba(176,8,18,.20);
  box-shadow: 0 16px 28px rgba(18, 29, 45, .08);
}
.workflow-source strong,
.workflow-source small {
  display: block;
}
.workflow-source strong {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.2;
}
.workflow-source small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.workflow-source-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(176,8,18,.08);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.workflow-source-icon-blue {
  background: rgba(24,119,210,.10);
  color: var(--blue);
}
.workflow-track {
  position: relative;
  margin: 36px 18px 0;
  height: 18px;
}
.workflow-track-base,
.workflow-track-fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
}
.workflow-track-base {
  width: 100%;
  background: linear-gradient(90deg, #d9e1ea 0%, #e4eaf0 100%);
}
.workflow-track-fill {
  width: 0;
  background: linear-gradient(90deg, #b00812 0%, #d24245 55%, #1877d2 100%);
  box-shadow: 0 0 0 1px rgba(176,8,18,.02), 0 0 18px rgba(176,8,18,.14);
  transition: width 1.7s cubic-bezier(.22,.61,.36,1);
}
.workflow-board.is-active .workflow-track-fill {
  width: 100%;
}
.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.workflow-step {
  position: relative;
  padding-top: 18px;
  opacity: 1;
  transform: translateY(0);
}
.workflow-step-node {
  position: absolute;
  top: -13px;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #d0d8e1;
  box-shadow: 0 4px 12px rgba(17, 27, 40, .10);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.workflow-step-card {
  height: 100%;
  min-height: 244px;
  padding: 22px 20px 22px;
  border: 1px solid #e4e9ef;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 18px 36px rgba(18, 28, 44, .055);
  transition: transform .34s ease, border-color .34s ease, box-shadow .34s ease, background .34s ease;
}
.workflow-step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(176,8,18,.08);
  color: var(--red);
}
.workflow-step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.workflow-step-icon-blue {
  background: rgba(24,119,210,.10);
  color: var(--blue);
}
.workflow-step h3 {
  margin: 18px 0 11px;
  font-size: 27px;
  line-height: 1.1;
}
.workflow-step p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.68;
}
.workflow-step.is-active .workflow-step-node {
  background: var(--red);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(176,8,18,.18);
}
.workflow-step[data-workflow-step="4"].is-active .workflow-step-node {
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(24,119,210,.18);
}
.workflow-step.is-active .workflow-step-card {
  transform: translateY(-4px);
  border-color: rgba(176,8,18,.25);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  box-shadow: 0 24px 46px rgba(18, 28, 44, .10);
}
.workflow-step[data-workflow-step="4"].is-active .workflow-step-card {
  border-color: rgba(24,119,210,.22);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.workflow-board.workflow-ready .workflow-source,
.workflow-board.workflow-ready .workflow-step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .58s cubic-bezier(.22,.61,.36,1), transform .58s cubic-bezier(.22,.61,.36,1);
}
.workflow-board.workflow-ready .workflow-source.is-shown,
.workflow-board.workflow-ready .workflow-step.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.workflow-results {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin-top: 34px;
  padding: 30px 0 0;
}
.workflow-results-copy h3 {
  margin: 8px 0 12px;
  font-size: 34px;
  line-height: 1.12;
}
.workflow-results-kicker {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.workflow-results-copy p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}
.workflow-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.workflow-result-pill {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0 18px;
  border: 1px solid #dfe6ed;
  border-radius: 18px;
  background: #fff;
  color: #273547;
  font-size: 15px;
  font-weight: 780;
  box-shadow: 0 12px 24px rgba(18, 29, 45, .04);
}
@media (max-width: 1180px) {
  .workflow-sources,
  .workflow-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .workflow-board { padding-left: 24px; padding-right: 24px; }
  .workflow-step-card { min-height: 272px; padding-left: 18px; padding-right: 18px; }
  .workflow-source strong { font-size: 14px; }
}
@media (max-width: 980px) {
  .workflow-section { padding: 98px 0 106px; }
  .workflow-intro,
  .workflow-results { grid-template-columns: 1fr; gap: 38px; }
  .workflow-board { padding: 28px 24px 30px; }
  .workflow-sources { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .workflow-source:last-child { grid-column: 1 / -1; }
  .workflow-track { display: none; }
  .workflow-steps { grid-template-columns: 1fr; gap: 16px; margin-top: 18px; }
  .workflow-step { padding-top: 0; padding-left: 18px; }
  .workflow-step-node { top: 28px; left: 0; margin-left: 0; }
  .workflow-step-card { min-height: 0; padding: 18px 18px 18px 22px; }
}
@media (max-width: 700px) {
  .workflow-section { padding: 82px 0 88px; }
  .workflow-intro h2 { font-size: clamp(37px, 10.8vw, 48px); }
  .workflow-intro-copy > p { font-size: 17px; }
  .workflow-board { margin-top: 40px; padding: 22px 18px 24px; border-radius: 22px; }
  .workflow-source { padding: 12px; }
  .workflow-source strong { font-size: 14px; }
  .workflow-source small { font-size: 11px; }
  .workflow-step-card { min-height: 220px; padding: 18px 17px 18px; }
  .workflow-step h3 { font-size: 24px; }
  .workflow-results-copy h3 { font-size: 30px; }
  .workflow-results-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .workflow-source,
  .workflow-step,
  .workflow-step-card,
  .workflow-track-fill { transition-duration: .16s; }
  .workflow-board.workflow-ready .workflow-source,
  .workflow-board.workflow-ready .workflow-step { transform: translateY(8px); }
}


/* =========================================================
   FIBU AI – Prototyp 0.6
   Übergang von Rot zu Blau, technischer und visueller
   ========================================================= */
.ai-section {
  position: relative;
  overflow: hidden;
  padding: 124px 0 132px;
  color: #eef4fb;
  background:
    radial-gradient(circle at 16% 20%, rgba(176,8,18,.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(24,119,210,.22), transparent 30%),
    linear-gradient(135deg, #1a202c 0%, #121a27 45%, #0e2135 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ai-bg-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(176,8,18,.9) 0%, rgba(24,119,210,.88) 100%);
}
.ai-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ai-glow-a {
  width: 560px;
  height: 560px;
  left: -260px;
  top: 40px;
  background: radial-gradient(circle, rgba(176,8,18,.16), transparent 70%);
}
.ai-glow-b {
  width: 620px;
  height: 620px;
  right: -280px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(24,119,210,.20), transparent 72%);
}
.eyebrow-ai { color: #a9c7e9; }
.ai-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
}
.ai-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.06;
}
.ai-copy h2 span {
  color: #8ec3ff;
}
.ai-lead {
  max-width: 620px;
  margin: 0;
  color: #d7e2ef;
  font-size: 18px;
  line-height: 1.78;
}
.ai-text {
  max-width: 610px;
  margin: 20px 0 0;
  color: #b8c8d8;
  font-size: 16px;
  line-height: 1.78;
}
.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.button-ai {
  background: linear-gradient(135deg, #1877d2 0%, #3b96ea 100%);
  box-shadow: 0 16px 34px rgba(24,119,210,.28);
}
.button-ai:hover { filter: brightness(1.04); }
.button-ai-secondary {
  color: #dce8f5;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.button-ai-secondary:hover {
  border-color: rgba(142,195,255,.36);
  background: rgba(255,255,255,.07);
}
.ai-stage {
  position: relative;
  padding: 28px 28px 30px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: 0 34px 70px rgba(0, 6, 20, .26);
  backdrop-filter: blur(10px);
}
.ai-stage-topline {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.ai-stage-topline span {
  width: 112px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176,8,18,.8) 0%, rgba(24,119,210,.9) 100%);
}
.ai-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(230px, .86fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.ai-sources,
.ai-results {
  display: grid;
  gap: 12px;
}
.ai-source,
.ai-result {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  opacity: 1;
  transform: translateY(0);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.ai-source:hover,
.ai-result:hover {
  transform: translateY(-2px);
  border-color: rgba(142,195,255,.18);
  background: rgba(255,255,255,.07);
}
.ai-source strong,
.ai-result strong,
.ai-source small,
.ai-result small { display: block; }
.ai-source strong,
.ai-result strong { color: #f3f7fc; font-size: 15px; line-height: 1.25; }
.ai-source small,
.ai-result small { margin-top: 4px; color: #a9b8c7; font-size: 12px; line-height: 1.35; }
.ai-source::after,
.ai-result::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(176,8,18,.72), rgba(24,119,210,.72));
  transform: translateY(-50%);
  opacity: .65;
}
.ai-source::after { right: -18px; }
.ai-result::before { left: -18px; }
.ai-badge,
.ai-result-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(176,8,18,.16);
  color: #ffb7bf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
}
.ai-badge svg,
.ai-result-icon svg {
  width: 22px;
  height: 22px;
}
.ai-badge-blue,
.ai-result-icon-blue {
  background: rgba(24,119,210,.16);
  color: #9aceff;
}
.ai-result-icon svg {
  width: 22px;
  height: 22px;
}
.ai-core-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}
.ai-core-rail {
  display: none;
}
.ai-core {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 26px 20px 24px;
  border: 1px solid rgba(159,210,255,.30);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247,251,255,.98) 0%, rgba(228,241,255,.96) 100%);
  text-align: center;
  box-shadow: 0 26px 48px rgba(0, 10, 30, .22), 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.ai-core.is-pulsing {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 30px 54px rgba(0, 10, 30, .24), 0 0 0 1px rgba(142,195,255,.14), 0 0 22px rgba(120,190,255,.16);
}
.ai-core-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 10px);
  gap: 7px;
  margin-bottom: 14px;
}
.ai-core-mark span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b00812 0%, #1877d2 100%);
  opacity: .95;
}
.ai-core p {
  margin: 0;
  color: #1c5ea7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.ai-core h3 {
  margin: 12px 0 0;
  color: #16324d;
  font-size: 28px;
  line-height: 1.14;
}
.ai-core-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.ai-core-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(24,119,210,.08);
  border: 1px solid rgba(24,119,210,.12);
  color: #244261;
  font-size: 12px;
  font-weight: 760;
}
.ai-stage.ai-ready .ai-source,
.ai-stage.ai-ready .ai-result,
.ai-stage.ai-ready .ai-core {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .58s cubic-bezier(.22,.61,.36,1), transform .58s cubic-bezier(.22,.61,.36,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.ai-stage.ai-ready .ai-source.is-shown,
.ai-stage.ai-ready .ai-result.is-shown,
.ai-stage.ai-ready .ai-core.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.ai-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.ai-feature-card {
  padding: 22px 22px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.04) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 12px 26px rgba(0,8,24,.10);
}
.ai-feature-card h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.14;
}
.ai-feature-card p:last-child {
  margin: 0;
  color: #b7c5d5;
  font-size: 15px;
  line-height: 1.72;
}
.ai-result.is-active,
.ai-source.is-active {
  border-color: rgba(142,195,255,.34);
  background: rgba(255,255,255,.085);
  box-shadow: 0 14px 28px rgba(0, 6, 20, .18);
}
@media (max-width: 1180px) {
  .ai-intro { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 980px) {
  .ai-section { padding: 102px 0 108px; }
  .ai-stage { padding: 24px 22px 24px; }
  .ai-flow-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-source::after,
  .ai-result::before,
  .ai-core-rail { display: none; }
  .ai-core { max-width: none; }
  .ai-feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ai-section { padding: 84px 0 90px; }
  .ai-copy h2 { font-size: clamp(37px, 10.8vw, 50px); }
  .ai-lead { font-size: 17px; }
  .ai-stage { border-radius: 24px; }
  .ai-core h3 { font-size: 24px; }
  .ai-feature-card h3 { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-stage.ai-ready .ai-source,
  .ai-stage.ai-ready .ai-result,
  .ai-stage.ai-ready .ai-core { transform: translateY(8px); transition-duration: .16s; }
  .ai-core { transition-duration: .16s; }
}


/* Neustart 0.6 – gezielte Überarbeitung nur der Prozessvisualisierung */
.ai-result {
  min-height: 84px;
}
.ai-result strong {
  line-height: 1.18;
}
.ai-source strong {
  font-size: 14.5px;
}
.ai-source small,
.ai-result small {
  line-height: 1.4;
}
.ai-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 8%, rgba(255,255,255,.58), transparent 34%);
  pointer-events: none;
}
.ai-core-mark span {
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}


/* Neustart 2 – Abschluss der Prozessvisualisierung und neue Unterblöcke */
.ai-feature-card-illustrated {
  overflow: hidden;
}
.ai-feature-visual {
  width: 100%;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(176,8,18,.12) 0%, rgba(255,255,255,.03) 100%);
  color: #ffd4d7;
}
.ai-feature-visual svg {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.ai-feature-visual-blue {
  background: linear-gradient(180deg, rgba(24,119,210,.14) 0%, rgba(255,255,255,.03) 100%);
  color: #a9d2ff;
}
@media (max-width: 700px) {
  .ai-feature-visual { min-height: 118px; }
}


/* =========================================================
   Unternehmen – Prototyp 0.7
   Vertrauen + Fortschritt als eigenständige Visualisierung
   ========================================================= */
.company-section {
  position: relative;
  overflow: hidden;
  padding: 124px 0 132px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #e9edf1;
}
.company-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.company-glow-a { width: 620px; height: 620px; left: -360px; top: 80px; background: radial-gradient(circle, rgba(176,8,18,.055), transparent 68%); }
.company-glow-b { width: 520px; height: 520px; right: -260px; bottom: -110px; background: radial-gradient(circle, rgba(24,119,210,.045), transparent 70%); }
.company-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}
.company-copy h2 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.07;
}
.company-copy h2 span { color: #3b4a5d; font-weight: 620; }
.company-lead {
  max-width: 700px;
  margin: 0;
  color: #27374a;
  font-size: 20px;
  line-height: 1.68;
  font-weight: 650;
}
.company-text {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.76;
}
.company-values {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}
.company-value {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 15px;
  border: 1px solid #e0e6ed;
  border-radius: 17px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 22px rgba(20,30,45,.035);
}
.company-value-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(176,8,18,.08);
  color: var(--red);
}
.company-value-icon svg { width: 27px; height: 27px; }
.company-value-icon-blue { background: rgba(24,119,210,.09); color: var(--blue); }
.company-value strong, .company-value small { display: block; }
.company-value strong { color: #253448; font-size: 16px; line-height: 1.25; }
.company-value small { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.42; }
.company-values.company-stagger-ready .company-stagger {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1);
}
.company-values.company-stagger-ready .company-stagger.is-shown { opacity: 1; transform: translateY(0); }
.company-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid #e2e8ee;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 76%, rgba(24,119,210,.06), transparent 32%),
    radial-gradient(circle at 22% 20%, rgba(176,8,18,.06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  box-shadow: 0 28px 60px rgba(18,28,44,.08);
}
.company-connectors { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.company-path-base, .company-path-active { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.company-path-base { stroke: #d9e1e9; stroke-width: 2.2; }
.company-path-active { stroke: url(#companyFlow); stroke-width: 3; stroke-dasharray: 10 10; opacity: .9; }
.company-scene-card {
  position: absolute;
  border: 1px solid #dde5ec;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 36px rgba(18,28,44,.08);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}
.company-scene-card:hover { transform: translateY(-3px); box-shadow: 0 22px 42px rgba(18,28,44,.11); }
.company-scene-personal { left: 28px; top: 42px; width: 222px; padding: 20px; }
.company-scene-core { left: 50%; top: 50%; width: 268px; padding: 24px; transform: translate(-50%,-50%); text-align: center; border-color: rgba(176,8,18,.20); }
.company-scene-core:hover { transform: translate(-50%,-53%); }
.company-scene-digital { right: 28px; bottom: 48px; width: 222px; padding: 20px; border-color: rgba(24,119,210,.17); }
.company-scene-icon {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px;
  background: rgba(176,8,18,.08); color: var(--red);
}
.company-scene-icon svg { width: 32px; height: 32px; }
.company-scene-icon-blue { background: rgba(24,119,210,.09); color: var(--blue); }
.company-scene-card > p { margin: 15px 0 0; color: #263548; font-size: 18px; font-weight: 820; line-height: 1.2; }
.company-scene-card > small { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.company-scene-core img { width: 150px; height: auto; display: block; margin: 0 auto 18px; }
.company-scene-core h3 { margin: 0; font-size: 25px; line-height: 1.18; color: #243347; }
.company-scene-core p { margin: 10px 0 0; color: #68778a; font-size: 13px; font-weight: 760; }
.company-visual-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.company-visual-caption span { width: 34px; height: 2px; background: linear-gradient(90deg, var(--red), var(--blue)); flex: 0 0 34px; }
.company-visual-caption p { margin: 0; color: #617083; font-size: 12px; font-weight: 760; line-height: 1.4; }
.company-visual.company-visual-ready .company-path-active { opacity: 0; }
.company-visual.company-visual-ready.is-running .company-path-active { opacity: .95; }
@media (max-width: 1050px) {
  .company-grid { grid-template-columns: 1fr; gap: 58px; }
  .company-visual { max-width: 680px; width: 100%; margin: 0 auto; }
}
@media (max-width: 700px) {
  .company-section { padding: 82px 0 90px; }
  .company-copy h2 { font-size: clamp(37px,10.7vw,50px); }
  .company-lead { font-size: 18px; }
  .company-visual { min-height: auto; padding: 20px; display: grid; gap: 14px; }
  .company-connectors { display: none; }
  .company-scene-card { position: static; width: 100%; transform: none !important; }
  .company-scene-core { order: -1; }
  .company-scene-core img { width: 138px; }
  .company-visual-caption { position: static; margin-top: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .company-values.company-stagger-ready .company-stagger { transform: translateY(6px); transition-duration: .2s; }
  .company-scene-card { transition-duration: .15s; }
}


/* =========================================================
   Kontakt / Abschlussbereich – Prototyp 0.8
   ========================================================= */
.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: block;
  padding: 118px 0 54px;
  color: #f4f7fb;
  background:
    radial-gradient(circle at 12% 12%, rgba(176,8,18,.19), transparent 27%),
    radial-gradient(circle at 86% 74%, rgba(24,119,210,.13), transparent 30%),
    linear-gradient(135deg, #1b202a 0%, #121923 58%, #0e1c2d 100%);
  border-top: 0;
}
.contact-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-glow-a {
  width: 560px;
  height: 560px;
  left: -310px;
  top: -180px;
  background: radial-gradient(circle, rgba(176,8,18,.17), transparent 70%);
}
.contact-glow-b {
  width: 620px;
  height: 620px;
  right: -340px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(24,119,210,.14), transparent 72%);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}
.eyebrow-contact {
  color: #ef737b;
}
.contact-copy h2 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.04;
}
.contact-lead {
  max-width: 720px !important;
  margin: 0 !important;
  color: #d8e2ec !important;
  font-size: 19px !important;
  line-height: 1.76 !important;
}
.contact-text {
  max-width: 690px !important;
  margin: 19px 0 0 !important;
  color: #aebdcd !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.contact-section .button {
  margin-top: 0;
}
.contact-primary {
  box-shadow: 0 16px 32px rgba(176,8,18,.26);
}
.contact-phone-button {
  color: #e8f0f7;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.contact-phone-button:hover {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.085);
}
.contact-button-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}
.contact-button-icon svg {
  width: 22px;
  height: 22px;
}
.contact-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}
.contact-point {
  min-height: 172px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.contact-point-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffadb4;
  background: rgba(176,8,18,.14);
}
.contact-point-icon-blue {
  color: #9ed0ff;
  background: rgba(24,119,210,.14);
}
.contact-point-icon svg {
  width: 27px;
  height: 27px;
}
.contact-point strong {
  display: block;
  margin-top: 15px;
  color: #f5f8fb;
  font-size: 15px;
  line-height: 1.25;
}
.contact-point small {
  display: block;
  margin-top: 7px;
  color: #9fadb9;
  font-size: 12px;
  line-height: 1.5;
}
.contact-points.contact-stagger-ready .contact-stagger {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
}
.contact-points.contact-stagger-ready .contact-stagger.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  position: relative;
  overflow: hidden;
  max-width: 540px;
  justify-self: end;
  padding: 26px 26px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.985) 0%, rgba(245,249,253,.975) 100%);
  color: #243247;
  box-shadow: 0 34px 70px rgba(0,6,20,.28);
}
.contact-card-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 55%, #1877d2 100%);
}
.contact-card-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e3e9ef;
}
.contact-card-brand img {
  width: min(220px, 48%);
  height: auto;
}
.contact-card-brand p {
  max-width: 190px !important;
  margin: 0 !important;
  color: #6a798b !important;
  text-align: right;
  font-size: 12px !important;
  font-weight: 760;
  line-height: 1.48 !important;
}
.contact-card-details {
  display: grid;
  gap: 0;
  margin-top: 6px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 14px 0;
  border-bottom: 1px solid #e7ebf0;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--red);
  background: rgba(176,8,18,.075);
}
.contact-detail-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.contact-detail-icon svg {
  width: 25px;
  height: 25px;
}
.contact-detail small {
  display: block;
  margin-bottom: 5px;
  color: #8a96a4;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-detail strong,
.contact-detail a {
  color: #263548;
  font-size: 15px;
  line-height: 1.5;
}
.contact-detail a:hover {
  color: var(--red);
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  padding: 18px 18px;
  border: 1px solid #dde6ee;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9fbfd 0%, #f4f8fc 100%);
}
.contact-person-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #1a69af;
  background: rgba(24,119,210,.08);
}
.contact-person-icon svg {
  width: 28px;
  height: 28px;
}
.contact-person small {
  display: block;
  color: #8895a4;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.contact-person strong {
  display: block;
  margin-top: 4px;
  color: #263548;
  font-size: 16px;
}
.contact-closing {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.contact-closing-line {
  height: 2px;
  background: linear-gradient(90deg, var(--red), #1877d2);
}
.contact-closing p {
  max-width: none !important;
  margin: 0 !important;
  color: #c9d5e0 !important;
  font-size: 15px !important;
  font-weight: 760;
}
.contact-closing a {
  color: #fff;
  font-size: 14px;
  font-weight: 830;
}
.contact-closing a span {
  margin-left: 7px;
  color: #8fc7ff;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 0;
  color: #546274;
  background: #f5f7f9;
  border-top: 0;
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 62%, #1877d2 100%);
}
.footer-main {
  display: grid !important;
  grid-template-columns: 1.3fr .75fr .95fr;
  gap: clamp(38px, 6vw, 90px) !important;
  align-items: start !important;
  padding-top: 52px;
  padding-bottom: 44px;
}
.footer-brand img {
  width: 220px;
  height: auto;
}
.footer-brand p {
  max-width: 460px;
  margin: 21px 0 0;
  color: #667486;
  font-size: 14px;
  line-height: 1.7;
}
.footer-heading {
  margin: 2px 0 19px !important;
  color: #283649 !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-nav {
  display: grid;
  gap: 10px;
}
.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: #5d6b7b;
  font-size: 14px;
  line-height: 1.5;
  transition: color .18s ease;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--red);
}
.footer-contact {
  display: grid;
  gap: 8px;
}
.footer-contact p {
  margin: 0 !important;
  color: #657384 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.footer-contact .footer-heading {
  margin-bottom: 11px !important;
}
.footer-bottom {
  display: flex !important;
  justify-content: space-between;
  align-items: center !important;
  gap: 24px !important;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid #dde3e9;
}
.footer-bottom p {
  margin: 0;
  color: #7b8795;
  font-size: 12px;
}
.footer-legal {
  display: flex;
  gap: 22px;
  color: #7b8795;
  font-size: 12px;
}
.footer-legal span {
  cursor: default;
}

@media (max-width: 1120px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-card {
    max-width: 760px;
  }
  .contact-points {
    max-width: 860px;
  }
}
@media (max-width: 820px) {
  .contact-section {
    padding: 92px 0 44px;
  }
  .contact-copy h2 {
    font-size: clamp(40px, 9vw, 56px);
  }
  .contact-points {
    grid-template-columns: 1fr;
  }
  .contact-point {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
  }
  .contact-point strong {
    margin-top: 0;
  }
  .contact-card-brand {
    align-items: flex-start;
  }
  .contact-closing {
    grid-template-columns: 42px 1fr;
  }
  .contact-closing a {
    grid-column: 2;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 620px) {
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-actions .button {
    width: 100%;
  }
  .contact-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }
  .contact-card-brand {
    display: block;
  }
  .contact-card-brand img {
    width: 190px;
    max-width: 100%;
  }
  .contact-card-brand p {
    max-width: none !important;
    margin-top: 14px !important;
    text-align: left;
  }
  .contact-detail {
    align-items: flex-start;
  }
  .contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 34px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-points.contact-stagger-ready .contact-stagger {
    transform: translateY(6px);
    transition-duration: .18s;
  }
}


/* Prototyp 0.8.1 – Kontaktkarte kompakter und gestalterisch aufgewertet */
.contact-card-visual {
  margin: 18px 0 8px;
  padding: 10px 0 8px;
}
.contact-card-visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.contact-detail {
  min-height: 82px;
  padding: 12px 0;
}
@media (max-width: 1120px) {
  .contact-card {
    max-width: 620px;
    justify-self: start;
  }
}
@media (max-width: 620px) {
  .contact-card {
    max-width: none;
    padding: 24px 20px 22px;
  }
  .contact-card-visual {
    margin: 16px 0 6px;
  }
}


/* =========================================================
   Unterseite Leistungen – Prototyp 0.9
   ========================================================= */
.page-services { background: #fff; }
.services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 112px;
  background:
    radial-gradient(circle at 86% 22%, rgba(24,119,210,.07), transparent 27%),
    radial-gradient(circle at 14% 18%, rgba(176,8,18,.075), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}
.services-page-glow { position:absolute; border-radius:50%; pointer-events:none; }
.services-page-glow-a { width:440px; height:440px; left:-250px; top:40px; background:radial-gradient(circle,rgba(176,8,18,.08),transparent 69%); }
.services-page-glow-b { width:540px; height:540px; right:-270px; bottom:-220px; background:radial-gradient(circle,rgba(24,119,210,.08),transparent 70%); }
.services-page-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:.96fr 1.04fr; gap:clamp(52px,7vw,104px); align-items:center; }
.services-page-hero-copy h1 { max-width:760px; margin:16px 0 26px; font-size:clamp(54px,5.6vw,82px); line-height:1.02; letter-spacing:-.055em; }
.services-page-hero-copy h1 span { color:var(--red); }
.services-page-lead { max-width:700px; margin:0; color:#3d4c5e; font-size:20px; line-height:1.75; }
.services-page-text { max-width:670px; margin:19px 0 0; color:#718094; font-size:16px; line-height:1.76; }
.services-page-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:31px; }
.services-spectrum { position:relative; display:grid; gap:14px; padding:28px; border:1px solid #e3e9ef; border-radius:30px; background:rgba(255,255,255,.9); box-shadow:0 30px 64px rgba(20,31,47,.11); }
.services-spectrum-line { position:absolute; left:51px; top:62px; bottom:62px; width:2px; background:#e1e7ed; }
.services-spectrum-line span { display:block; width:100%; height:100%; background:linear-gradient(180deg,var(--red),#a35a6a 50%,#1877d2); transform-origin:top; animation:spectrumFlow 3.8s ease-in-out infinite; }
@keyframes spectrumFlow { 0%,100%{opacity:.45} 50%{opacity:1} }
.spectrum-card { position:relative; z-index:1; display:flex; gap:17px; align-items:center; min-height:126px; padding:20px 20px; border:1px solid #e5eaf0; border-radius:20px; background:#fff; transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.spectrum-card:hover { transform:translateY(-3px); box-shadow:0 17px 32px rgba(20,31,47,.08); }
.spectrum-card-red:hover { border-color:rgba(176,8,18,.22); }
.spectrum-card-blue:hover { border-color:rgba(24,119,210,.22); }
.spectrum-icon { width:50px; height:50px; flex:0 0 50px; display:grid; place-items:center; border-radius:15px; color:var(--red); background:rgba(176,8,18,.075); }
.spectrum-card-neutral .spectrum-icon { color:#4b5d72; background:#f1f4f7; }
.spectrum-card-blue .spectrum-icon { color:#1877d2; background:rgba(24,119,210,.08); }
.spectrum-icon svg { width:28px; height:28px; }
.spectrum-card small { display:block; color:#8b97a5; font-size:11px; font-weight:820; letter-spacing:.045em; text-transform:uppercase; }
.spectrum-card strong { display:block; margin-top:5px; color:#283749; font-size:20px; line-height:1.18; }
.spectrum-card p { margin:7px 0 0; color:#6f7d8d; font-size:13px; line-height:1.5; }

.services-page-overview { padding:90px 0 94px; background:#fff; }
.services-page-overview-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(46px,7vw,100px); align-items:start; }
.services-page-overview h2 { max-width:650px; margin:12px 0 0; font-size:clamp(40px,4.1vw,60px); line-height:1.08; }
.services-page-overview-copy > p { margin:7px 0 0; color:var(--text); font-size:18px; line-height:1.75; }
.services-page-principle { display:flex; align-items:center; gap:12px; margin-top:23px; color:#3e4d60; font-size:14px; font-weight:810; }
.services-page-principle span { width:42px; height:2px; background:linear-gradient(90deg,var(--red),#1877d2); }

.service-detail { position:relative; overflow:hidden; padding:112px 0; }
.service-detail-finance { background:#f7f9fb; border-top:1px solid #edf0f3; border-bottom:1px solid #edf0f3; }
.service-detail-payroll { background:#fff; }
.service-detail-grid { display:grid; grid-template-columns:.96fr 1.04fr; gap:clamp(54px,7vw,104px); align-items:center; }
.service-detail-grid-reverse { grid-template-columns:1.04fr .96fr; }
.service-detail-copy h2 { max-width:680px; margin:12px 0 22px; font-size:clamp(40px,4.2vw,62px); line-height:1.07; }
.service-detail-lead { max-width:700px; margin:0; color:#59687b; font-size:18px; line-height:1.75; }
.service-detail-list { display:grid; gap:14px; margin-top:31px; }
.service-detail-list > div { display:grid; grid-template-columns:32px 1fr; gap:13px; align-items:start; padding:15px 0; border-bottom:1px solid #e2e7ec; }
.service-detail-list > div > span { width:28px; height:28px; display:grid; place-items:center; border-radius:50%; color:var(--red); background:rgba(176,8,18,.07); font-size:13px; font-weight:900; }
.service-detail-list p { margin:0; }
.service-detail-list strong { display:block; color:#2b394b; font-size:16px; }
.service-detail-list small { display:block; margin-top:5px; color:#768394; font-size:13px; line-height:1.55; }

.finance-visual { padding:28px; border:1px solid #dde5ed; border-radius:28px; background:#fff; box-shadow:0 28px 54px rgba(20,31,47,.08); }
.finance-visual-head { display:flex; align-items:center; gap:12px; padding-bottom:19px; border-bottom:1px solid #e7ebef; color:#394a5e; font-size:13px; font-weight:820; }
.finance-visual-head span { width:37px; height:2px; background:var(--red); }
.finance-flow { display:grid; gap:11px; margin-top:20px; }
.finance-flow article { display:flex; align-items:center; gap:14px; min-height:80px; padding:14px 15px; border:1px solid #e5e9ee; border-radius:18px; background:#fbfcfd; }
.finance-flow > i { width:2px; height:17px; margin:-3px 0 -3px 30px; background:linear-gradient(180deg,#d8dee6,var(--red)); }
.finance-flow-icon { width:48px; height:48px; flex:0 0 48px; display:grid; place-items:center; border-radius:14px; color:var(--red); background:rgba(176,8,18,.07); }
.finance-flow-icon-blue { color:#1877d2; background:rgba(24,119,210,.08); }
.finance-flow-icon svg { width:26px; height:26px; }
.finance-flow small { display:block; color:#919cab; font-size:10px; font-weight:820; letter-spacing:.06em; text-transform:uppercase; }
.finance-flow strong { display:block; margin-top:4px; color:#2e3d4f; font-size:15px; }
.finance-visual-note { margin-top:19px; padding:15px 17px; border-radius:15px; color:#58687b; background:#f5f7f9; font-size:13px; line-height:1.55; }

.payroll-visual { position:relative; min-height:530px; padding:32px; border:1px solid #e2e8ee; border-radius:30px; background:linear-gradient(145deg,#fafbfc,#f4f7fa); box-shadow:0 28px 54px rgba(20,31,47,.07); }
.payroll-person { width:160px; height:160px; margin:10px auto 0; display:flex; flex-direction:column; align-items:center; justify-content:center; border:1px solid #dde5ec; border-radius:50%; background:#fff; box-shadow:0 18px 30px rgba(20,31,47,.07); }
.payroll-person span { width:70px; height:70px; display:grid; place-items:center; color:var(--red); }
.payroll-person svg { width:62px; height:62px; }
.payroll-person strong { color:#344457; font-size:14px; }
.payroll-track { width:2px; height:54px; margin:0 auto; background:linear-gradient(180deg,var(--red),#1877d2); }
.payroll-output-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.payroll-output-grid article { min-height:116px; padding:16px; border:1px solid #e1e7ed; border-radius:18px; background:#fff; }
.payroll-output-grid span { color:var(--red); font-size:11px; font-weight:900; letter-spacing:.08em; }
.payroll-output-grid strong { display:block; margin-top:10px; color:#344457; font-size:15px; }
.payroll-output-grid small { display:block; margin-top:5px; color:#8390a0; font-size:12px; line-height:1.45; }

.service-detail-digital { color:#eef5fb; background:linear-gradient(135deg,#18202b 0%,#111a26 52%,#0d2236 100%); }
.services-digital-glow { position:absolute; width:620px; height:620px; right:-260px; top:-160px; border-radius:50%; background:radial-gradient(circle,rgba(24,119,210,.18),transparent 70%); }
.eyebrow-digital { color:#8fc7ff; }
.service-detail-digital h2 { color:#fff; }
.service-detail-lead-light { color:#c4d1df; }
.digital-benefits { display:grid; gap:12px; margin-top:30px; }
.digital-benefits article { padding:17px 18px; border:1px solid rgba(255,255,255,.08); border-radius:17px; background:rgba(255,255,255,.045); }
.digital-benefits strong { display:block; color:#fff; font-size:16px; }
.digital-benefits small { display:block; margin-top:6px; color:#aebdcd; font-size:13px; line-height:1.55; }
.digital-system-visual { position:relative; min-height:510px; padding:30px; border:1px solid rgba(255,255,255,.09); border-radius:30px; background:rgba(255,255,255,.045); box-shadow:0 30px 60px rgba(0,6,20,.22); }
.digital-system-sources { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }
.digital-system-sources span,.digital-system-results span { min-width:72px; padding:10px 12px; border:1px solid rgba(255,255,255,.1); border-radius:999px; color:#dfe9f4; background:rgba(255,255,255,.05); text-align:center; font-size:12px; font-weight:760; }
.digital-system-lines { position:relative; width:78%; height:72px; margin:12px auto 0; }
.digital-system-lines i { position:absolute; left:50%; top:0; width:2px; height:100%; background:linear-gradient(180deg,rgba(176,8,18,.75),rgba(24,119,210,.85)); transform-origin:bottom; }
.digital-system-lines i:nth-child(1){ transform:translateX(-50%) rotate(-38deg); }
.digital-system-lines i:nth-child(2){ transform:translateX(-50%); }
.digital-system-lines i:nth-child(3){ transform:translateX(-50%) rotate(38deg); }
.digital-system-core { width:230px; min-height:160px; margin:0 auto; display:flex; flex-direction:column; align-items:center; justify-content:center; border:1px solid rgba(161,211,255,.25); border-radius:26px; background:linear-gradient(180deg,rgba(245,251,255,.96),rgba(216,236,255,.94)); color:#173b63; text-align:center; box-shadow:0 22px 40px rgba(0,8,30,.22); }
.digital-system-core small { font-size:10px; font-weight:900; letter-spacing:.12em; }
.digital-system-core strong { margin-top:8px; font-size:22px; line-height:1.18; }
.digital-system-core span { width:58px; height:3px; margin-top:16px; border-radius:999px; background:linear-gradient(90deg,var(--red),#1877d2); }
.digital-system-results { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-top:28px; }

.services-collaboration { padding:108px 0 112px; background:#fff; }
.services-collaboration-intro { max-width:850px; }
.services-collaboration-intro h2 { margin:12px 0 20px; font-size:clamp(40px,4.2vw,62px); line-height:1.08; }
.services-collaboration-intro > p:last-child { margin:0; color:#677589; font-size:18px; line-height:1.72; }
.collaboration-steps { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:48px; }
.collaboration-steps article { min-height:230px; padding:25px 23px; border:1px solid #e1e6eb; border-radius:22px; background:#fff; box-shadow:0 13px 28px rgba(20,31,47,.045); }
.collaboration-icon { width:62px; height:62px; display:grid; place-items:center; border-radius:18px; color:var(--red); background:rgba(176,8,18,.07); }
.collaboration-icon-blue { color:#1877d2; background:rgba(24,119,210,.08); }
.collaboration-icon svg { width:34px; height:34px; }
.collaboration-steps strong { display:block; margin-top:20px; color:#2d3b4d; font-size:20px; }
.collaboration-steps small { display:block; margin-top:8px; color:#778494; font-size:14px; line-height:1.55; }

.services-page-cta { padding:72px 0 82px; color:#fff; background:linear-gradient(135deg,#1a202a,#111a26 64%,#10243a); }
.services-page-cta-inner { display:grid; grid-template-columns:1fr auto; gap:48px; align-items:center; }
.services-page-cta .eyebrow { color:#ef747c; }
.services-page-cta h2 { max-width:760px; margin:10px 0 13px; color:#fff; font-size:clamp(36px,3.7vw,54px); line-height:1.08; }
.services-page-cta p:last-child { max-width:760px; margin:0; color:#b9c7d6; font-size:16px; line-height:1.65; }

@media (max-width:1120px) {
  .services-page-hero-grid,.service-detail-grid,.service-detail-grid-reverse { grid-template-columns:1fr; }
  .services-spectrum { max-width:760px; }
  .finance-visual,.payroll-visual,.digital-system-visual { max-width:760px; }
}
@media (max-width:900px) {
  .services-page-hero { padding:140px 0 88px; }
  .services-page-overview-grid { grid-template-columns:1fr; gap:28px; }
  .collaboration-steps { grid-template-columns:1fr; }
  .services-page-cta-inner { grid-template-columns:1fr; gap:26px; }
}
@media (max-width:700px) {
  .services-page-hero { padding:120px 0 72px; }
  .services-page-hero-copy h1 { font-size:clamp(46px,13vw,62px); }
  .services-page-actions { flex-direction:column; }
  .services-page-actions .button { width:100%; }
  .services-spectrum { padding:20px 16px; border-radius:24px; }
  .services-spectrum-line { left:40px; }
  .spectrum-card { min-height:110px; padding:16px 14px; }
  .spectrum-icon { width:46px; height:46px; flex-basis:46px; }
  .service-detail { padding:84px 0; }
  .service-detail-copy h2 { font-size:clamp(38px,10.5vw,50px); }
  .finance-visual,.payroll-visual,.digital-system-visual { padding:20px 17px; border-radius:24px; }
  .payroll-output-grid { grid-template-columns:1fr; }
  .digital-system-core { width:200px; }
  .services-collaboration { padding:84px 0; }
}


/* =========================================================
   Unterseite Arbeitsweise – Prototyp 0.10
   ========================================================= */
.page-workflow {
  background: #fff;
}
.work-page-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 108px;
  background:
    radial-gradient(circle at 6% 20%, rgba(176,8,18,.075), transparent 25%),
    radial-gradient(circle at 93% 70%, rgba(24,119,210,.075), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e9edf1;
}
.work-page-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.work-page-glow-a {
  width: 480px;
  height: 480px;
  left: -270px;
  top: 60px;
  background: radial-gradient(circle, rgba(176,8,18,.08), transparent 70%);
}
.work-page-glow-b {
  width: 520px;
  height: 520px;
  right: -290px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(24,119,210,.08), transparent 70%);
}
.work-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
}
.work-page-hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 24px;
  color: #263548;
  font-size: clamp(54px, 5.6vw, 80px);
  line-height: 1.01;
  letter-spacing: -.035em;
}
.work-page-hero-copy h1 span {
  color: var(--red);
}
.work-page-lead {
  max-width: 720px;
  margin: 0;
  color: #536376;
  font-size: 19px;
  line-height: 1.76;
}
.work-page-text {
  max-width: 690px;
  margin: 19px 0 0;
  color: #768394;
  font-size: 16px;
  line-height: 1.76;
}
.work-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Hero process visual */
.work-hero-visual {
  position: relative;
  min-height: 540px;
  padding: 28px;
  border: 1px solid #dde5ec;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 30px 60px rgba(22,34,50,.09);
}
.work-hero-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.work-hero-sources span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid #e1e7ed;
  border-radius: 15px;
  color: #435267;
  background: #fbfcfd;
  font-size: 13px;
  font-weight: 760;
}
.work-hero-sources b {
  color: var(--red);
  font-size: 9px;
}
.work-hero-flowline {
  position: relative;
  width: 2px;
  height: 68px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(176,8,18,.55), rgba(24,119,210,.6));
}
.work-hero-flowline i {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--red);
}
.work-hero-flowline span {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #1877d2;
  box-shadow: 0 0 12px rgba(24,119,210,.25);
  animation: workDataTravel 2.2s ease-in-out infinite;
}
@keyframes workDataTravel {
  0% { top: 2px; opacity: .2; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 56px; opacity: .2; }
}
.work-hero-core {
  width: min(310px, 78%);
  min-height: 170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe1f2;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9fcff 0%, #eaf4ff 100%);
  color: #173a60;
  text-align: center;
  box-shadow: 0 18px 34px rgba(24,119,210,.09);
}
.work-hero-core small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.work-hero-core strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.18;
}
.work-hero-core div {
  display: flex;
  gap: 7px;
  margin-top: 17px;
}
.work-hero-core div span {
  padding: 7px 9px;
  border: 1px solid rgba(24,119,210,.12);
  border-radius: 999px;
  color: #42617f;
  background: rgba(255,255,255,.65);
  font-size: 10px;
  font-weight: 760;
}
.work-hero-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 24px;
}
.work-hero-results article {
  min-height: 92px;
  padding: 13px 10px;
  border: 1px solid #e1e7ed;
  border-radius: 17px;
  background: #fff;
  text-align: center;
}
.work-hero-result-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.work-hero-result-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.work-hero-result-icon svg {
  width: 23px;
  height: 23px;
}
.work-hero-results strong {
  display: block;
  margin-top: 8px;
  color: #405064;
  font-size: 12px;
}

/* Principles */
.work-principles {
  padding: 104px 0 112px;
  background: #fff;
}
.work-principles-intro {
  max-width: 900px;
}
.work-principles-intro h2 {
  margin: 12px 0 20px;
  max-width: 850px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.07;
}
.work-principles-intro > p:last-child {
  max-width: 800px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}
.work-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.work-principle {
  min-height: 290px;
  padding: 26px 24px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: linear-gradient(180deg,#fff,#fbfcfd);
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
}
.work-principle-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.work-principle-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.work-principle-icon svg {
  width: 38px;
  height: 38px;
}
.work-principle h3 {
  margin: 22px 0 10px;
  color: #2f3e51;
  font-size: 23px;
  line-height: 1.17;
}
.work-principle p {
  margin: 0;
  color: #778495;
  font-size: 14px;
  line-height: 1.67;
}

/* Main process */
.work-process-section {
  padding: 112px 0 118px;
  background: #f6f8fa;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}
.work-process-intro {
  max-width: 930px;
}
.work-process-intro h2 {
  margin: 12px 0 19px;
  font-size: clamp(42px,4.3vw,64px);
  line-height: 1.06;
}
.work-process-intro > p:last-child {
  max-width: 850px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}
.work-process-board {
  position: relative;
  margin-top: 56px;
  padding-top: 28px;
}
.work-process-track {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 37px;
  height: 6px;
}
.work-process-track-base,
.work-process-track-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}
.work-process-track-base {
  background: #dbe2e9;
}
.work-process-track-fill {
  width: 0;
  right: auto;
  background: linear-gradient(90deg,var(--red) 0%,#d7585e 52%,#1877d2 100%);
  box-shadow: 0 0 16px rgba(176,8,18,.1);
  transition: width 1.65s cubic-bezier(.22,.61,.36,1);
}
.work-process-board.is-active .work-process-track-fill {
  width: 100%;
}
.work-process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
}
.work-process-step {
  position: relative;
  padding-top: 32px;
}
.work-process-node {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 3;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border: 4px solid #f6f8fa;
  border-radius: 50%;
  background: #cbd4dd;
  box-shadow: 0 5px 12px rgba(20,31,47,.1);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.work-process-card {
  min-height: 310px;
  height: 100%;
  padding: 22px 19px;
  border: 1px solid #e0e6ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20,31,47,.045);
  transition: transform .34s ease, border-color .34s ease, box-shadow .34s ease, background .34s ease;
}
.work-process-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.work-process-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.work-process-icon svg {
  width: 31px;
  height: 31px;
}
.work-process-card small {
  display: block;
  margin-top: 18px;
  color: #a06a6d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.work-process-step-blue .work-process-card small {
  color: #4e83b3;
}
.work-process-card h3 {
  margin: 8px 0 10px;
  color: #344356;
  font-size: 22px;
  line-height: 1.15;
}
.work-process-card p {
  margin: 0;
  color: #788596;
  font-size: 13px;
  line-height: 1.62;
}
.work-process-step.is-active .work-process-node {
  transform: scale(1.13);
  background: var(--red);
  box-shadow: 0 5px 16px rgba(176,8,18,.2);
}
.work-process-step-blue.is-active .work-process-node {
  background: #1877d2;
  box-shadow: 0 5px 16px rgba(24,119,210,.2);
}
.work-process-step.is-active .work-process-card {
  transform: translateY(-5px);
  border-color: rgba(176,8,18,.25);
  background: linear-gradient(180deg,#fff,#fff9f9);
  box-shadow: 0 22px 42px rgba(20,31,47,.09);
}
.work-process-step-blue.is-active .work-process-card {
  border-color: rgba(24,119,210,.24);
  background: linear-gradient(180deg,#fff,#f7fbff);
}

/* Collaboration */
.work-collaboration {
  padding: 112px 0;
  background: #fff;
}
.work-collaboration-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(54px,7vw,104px);
  align-items: center;
}
.work-collaboration-copy h2 {
  max-width: 720px;
  margin: 12px 0 22px;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.work-collaboration-copy > p {
  max-width: 690px;
  margin: 0;
  color: #68778a;
  font-size: 17px;
  line-height: 1.74;
}
.work-collaboration-copy > p + p {
  margin-top: 17px;
}
.work-collaboration-media {
  margin: 0;
  min-height: 410px;
  border: 1px solid #dfe6ed;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg,#fafbfd,#f5f8fb);
  box-shadow: 0 26px 54px rgba(20,31,47,.07);
}
.work-collaboration-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}


/* Digital bridge */
.work-digital-bridge {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  color: #eef5fb;
  background: linear-gradient(135deg,#19212c 0%,#111a26 54%,#0d2236 100%);
}
.work-digital-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(24,119,210,.18),transparent 70%);
}
.work-digital-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(54px,7vw,100px);
  align-items: center;
}
.work-digital-copy h2 {
  max-width: 720px;
  margin: 12px 0 21px;
  color: #fff;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.work-digital-copy > p {
  max-width: 690px;
  margin: 0;
  color: #bdcad8;
  font-size: 17px;
  line-height: 1.74;
}
.work-digital-copy .button {
  margin-top: 29px;
}
.work-digital-criteria {
  display: grid;
  gap: 13px;
}
.work-digital-criteria article {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}
.work-digital-criteria article > span {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #8fc7ff;
  background: rgba(24,119,210,.13);
}
.work-digital-criteria svg {
  width: 32px;
  height: 32px;
}
.work-digital-criteria strong {
  display: block;
  color: #fff;
  font-size: 18px;
}
.work-digital-criteria small {
  display: block;
  margin-top: 5px;
  color: #aebdcd;
  font-size: 13px;
  line-height: 1.5;
}

/* CTA */
.work-page-cta {
  padding: 76px 0 84px;
  color: #fff;
  background: linear-gradient(135deg,#1a202a,#111a26 64%,#10243a);
  border-top: 1px solid rgba(255,255,255,.05);
}
.work-page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.work-page-cta .eyebrow {
  color: #ef747c;
}
.work-page-cta h2 {
  max-width: 800px;
  margin: 10px 0 13px;
  color: #fff;
  font-size: clamp(36px,3.7vw,54px);
  line-height: 1.08;
}
.work-page-cta p:last-child {
  max-width: 760px;
  margin: 0;
  color: #b9c7d6;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .work-page-hero-grid,
  .work-collaboration-grid,
  .work-digital-grid {
    grid-template-columns: 1fr;
  }
  .work-hero-visual,
  .work-collaboration-media,
  .work-digital-criteria {
    max-width: 820px;
  }
  .work-process-card {
    min-height: 340px;
  }
}
@media (max-width: 980px) {
  .work-page-hero {
    padding: 140px 0 90px;
  }
  .work-principles-grid {
    grid-template-columns: 1fr;
  }
  .work-principle {
    min-height: 0;
  }
  .work-process-track {
    display: none;
  }
  .work-process-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .work-process-step {
    padding-top: 0;
    padding-left: 18px;
  }
  .work-process-node {
    top: 27px;
    left: 0;
    margin-left: 0;
    border-color: #f6f8fa;
  }
  .work-process-card {
    min-height: 0;
    padding: 20px 20px 20px 24px;
  }
  .work-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 700px) {
  .work-page-hero {
    padding: 120px 0 74px;
  }
  .work-page-hero-copy h1 {
    font-size: clamp(46px,13vw,62px);
  }
  .work-page-actions {
    flex-direction: column;
  }
  .work-page-actions .button {
    width: 100%;
  }
  .work-hero-visual {
    min-height: 0;
    padding: 20px 17px;
    border-radius: 24px;
  }
  .work-hero-sources {
    grid-template-columns: 1fr;
  }
  .work-hero-results {
    grid-template-columns: 1fr;
  }
  .work-principles,
  .work-process-section,
  .work-collaboration,
  .work-digital-bridge {
    padding: 84px 0;
  }
  .work-collaboration-media {
    min-height: auto;
  }
  .work-collaboration-media img {
    min-height: 320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-hero-flowline span {
    animation-duration: 4s;
  }
  .work-process-track-fill,
  .work-process-card,
  .work-process-node {
    transition-duration: .18s;
  }
}


/* =========================================================
   Unterseite FIBU AI – Prototyp 0.11
   ========================================================= */
.page-fibu-ai {
  background: #fff;
}

.fai-hero {
  position: relative;
  overflow: hidden;
  padding: 162px 0 110px;
  color: #eef4fb;
  background:
    radial-gradient(circle at 10% 14%, rgba(176,8,18,.18), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(24,119,210,.22), transparent 30%),
    linear-gradient(135deg, #19202a 0%, #101823 54%, #0b2337 100%);
}
.fai-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fai-hero-glow-a {
  width: 520px;
  height: 520px;
  left: -260px;
  top: -160px;
  background: radial-gradient(circle, rgba(176,8,18,.20), transparent 72%);
}
.fai-hero-glow-b {
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(24,119,210,.18), transparent 72%);
}
.fai-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}
.fai-hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 24px;
  color: #fff;
  font-size: clamp(54px, 5.4vw, 80px);
  line-height: 1.02;
}
.fai-title-line {
  display: block;
}
.fai-title-line-main {
  white-space: nowrap;
  color: #ffffff;
}
.fai-title-line-sub {
  color: #ffffff;
}
.fai-title-emphasis {
  color: #97cdfd;
}
.fai-lead {
  max-width: 720px;
  margin: 0;
  color: #d4dfeb;
  font-size: 19px;
  line-height: 1.76;
}
.fai-text {
  max-width: 700px;
  margin: 18px 0 0;
  color: #afbdcc;
  font-size: 16px;
  line-height: 1.76;
}
.fai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.fai-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 34px;
  color: #c2cfdd;
  font-size: 14px;
  font-weight: 820;
}
.fai-trust span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: #7abeff;
}

.fai-hero-stage {
  position: relative;
}
.fai-hero-diagram {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 32px;
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 26px 54px rgba(0,10,22,.24);
}
.fai-hero-lines {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  overflow: visible;
  pointer-events: none;
}
.fai-line-base path {
  fill: none;
  stroke: rgba(199,216,236,.16);
  stroke-width: 2.4;
}
.fai-line-active path {
  fill: none;
  stroke: url(#faiHeroLine);
  stroke-width: 3.1;
  stroke-dasharray: 10 9;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(89,166,255,.14));
  transition: opacity .35s ease;
}
.fai-hero-stage.is-sequencing .fai-line-active path.is-visible {
  opacity: .9;
}
.fai-hero-stage.is-looping .fai-line-active path.is-active {
  opacity: 1;
}
.fai-hero-sources,
.fai-hero-results {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fai-hero-sources {
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 210px;
}
.fai-hero-results {
  right: 24px;
  top: 48px;
  bottom: 48px;
  width: 210px;
}
.fai-mini-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.95);
  color: #263649;
  box-shadow: 0 16px 28px rgba(0,10,22,.13);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.fai-mini-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fai-mini-card.is-active {
  border-color: rgba(24,119,210,.28);
  box-shadow: 0 18px 34px rgba(24,119,210,.16);
}
.fai-mini-card strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.18;
}
.fai-mini-card small {
  display: block;
  margin-top: 4px;
  color: #687789;
  font-size: 11.5px;
  line-height: 1.34;
}
.fai-mini-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: rgba(176,8,18,.08);
}
.fai-mini-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.10);
}
.fai-mini-icon svg {
  width: 22px;
  height: 22px;
}
.fai-hero-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 184px;
  height: 204px;
  margin-left: -92px;
  margin-top: -102px;
}
.fai-hero-core-shell,
.fai-hero-core-inner {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 92% 14%, 92% 86%, 50% 100%, 8% 86%, 8% 14%);
}
.fai-hero-core-shell {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(216,235,255,.94) 100%);
  box-shadow: 0 18px 40px rgba(0,10,22,.20), 0 0 0 4px rgba(255,255,255,.06);
}
.fai-hero-core-inner {
  inset: 10px;
  background: radial-gradient(circle at 50% 26%, rgba(255,255,255,.98), rgba(201,225,252,.96) 54%, rgba(188,215,248,.92) 100%);
  border: 1px solid rgba(24,119,210,.14);
}
.fai-hero-core::before {
  content: "";
  position: absolute;
  inset: -12px;
  clip-path: polygon(50% 0, 92% 14%, 92% 86%, 50% 100%, 8% 86%, 8% 14%);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(73,147,232,.18));
  filter: blur(14px);
  opacity: .0;
  transition: opacity .35s ease;
}
.fai-hero-stage.is-looping .fai-hero-core::before {
  opacity: .95;
}
.fai-hero-core-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #193860;
  text-align: center;
}
.fai-hero-core-content small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.fai-hero-core-content strong {
  margin-top: 4px;
  font-size: 44px;
  line-height: 1;
}
.fai-hero-core-content p {
  margin: 9px 0 0;
  color: #416482;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.42;
}
.fai-hero-core-content div {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}
.fai-hero-core-content div span {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(24,119,210,.12);
  background: rgba(255,255,255,.68);
  color: #42607d;
  font-size: 10px;
  font-weight: 800;
}
.fai-hero-stage.is-looping .fai-hero-core-content {
  animation: faiCorePulse 2.6s ease-in-out infinite;
}
@keyframes faiCorePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

/* Section intro reusable */
.fai-section-intro {
  max-width: 940px;
}
.fai-section-intro h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.07;
}
.fai-section-intro > p:last-child {
  max-width: 850px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}

/* Promise */
.fai-promise {
  padding: 108px 0 112px;
  background: #fff;
}
.fai-promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}
.fai-promise-figure {
  min-width: 0;
}
.fai-promise-figure-frame {
  padding: 24px;
  border: 1px solid #e2e8ef;
  border-radius: 34px;
  background: linear-gradient(180deg, #fcfdff 0%, #f7f9fc 100%);
  box-shadow: 0 26px 56px rgba(17, 32, 56, 0.08);
}
.fai-promise-figure-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.fai-promise-copy {
  min-width: 0;
}
.fai-promise-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.07;
}
.fai-promise-copy > p {
  max-width: 660px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}
.fai-promise-feature-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.fai-promise-feature {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
  box-shadow: 0 14px 30px rgba(20, 31, 47, 0.045);
}
.fai-promise-feature-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  border: 1px solid #dbe5ef;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 8px 18px rgba(17, 32, 56, 0.06);
}
.fai-promise-feature-icon-blue {
  color: #1d6fd4;
}
.fai-promise-feature-icon svg {
  width: 38px;
  height: 38px;
}
.fai-promise-feature h3 {
  margin: 0 0 8px;
  color: #1d2c42;
  font-size: 20px;
  line-height: 1.24;
}
.fai-promise-feature p {
  margin: 0;
  color: #667589;
  font-size: 15px;
  line-height: 1.65;
}

/* Process section */
.fai-process {
  position: relative;
  overflow: hidden;
  padding: 110px 0 116px;
  color: #edf5fb;
  background: linear-gradient(135deg, #19202a 0%, #101823 54%, #0d2236 100%);
}
.fai-process-glow {
  position: absolute;
  width: 660px;
  height: 660px;
  right: -280px;
  bottom: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,119,210,.18), transparent 72%);
}
.fai-process-intro {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.fai-process-intro h2 {
  margin: 12px 0 20px;
  color: #fff;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.07;
}
.fai-process-intro p:last-child {
  max-width: 870px;
  margin: 0;
  color: #b8c6d5;
  font-size: 18px;
  line-height: 1.72;
}
.fai-process-stage {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 24px 54px rgba(0,10,22,.18);
}
.fai-process-columns {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 18px;
  align-items: center;
}
.fai-process-column {
  display: grid;
  gap: 16px;
}
.fai-process-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  color: #273649;
  box-shadow: 0 14px 28px rgba(0,10,22,.10);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.fai-process-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fai-process-item.is-active {
  border-color: rgba(24,119,210,.28);
  box-shadow: 0 18px 32px rgba(24,119,210,.14);
}
.fai-process-item-blue.is-active {
  border-color: rgba(24,119,210,.34);
}
.fai-process-badge {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--red);
  background: rgba(176,8,18,.08);
  font-size: 14px;
  font-weight: 900;
}
.fai-process-item-blue .fai-process-badge {
  color: #1877d2;
  background: rgba(24,119,210,.10);
}
.fai-process-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.18;
}
.fai-process-item small {
  display: block;
  margin-top: 6px;
  color: #667789;
  font-size: 12px;
  line-height: 1.45;
}
.fai-process-center {
  position: relative;
  min-height: 456px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fai-process-axis {
  position: absolute;
  inset: 28px 50% 28px auto;
  width: 2px;
  transform: translateX(50%);
  background: linear-gradient(180deg, rgba(213,83,90,.24) 0%, rgba(213,83,90,.55) 20%, rgba(57,162,255,.75) 82%, rgba(57,162,255,.22) 100%);
}
.fai-process-core {
  position: relative;
  z-index: 2;
  width: 138px;
  height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0, 92% 14%, 92% 86%, 50% 100%, 8% 86%, 8% 14%);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(220,238,255,.95) 100%);
  color: #193860;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0,10,22,.18);
}
.fai-process-core small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.fai-process-core strong {
  margin-top: 4px;
  font-size: 34px;
  line-height: 1;
}
.fai-process-core p {
  margin: 8px 0 0;
  color: #436481;
  font-size: 11px;
  font-weight: 780;
  line-height: 1.36;
}
.fai-process-stage.is-looping .fai-process-core {
  animation: faiCorePulse 2.6s ease-in-out infinite;
}
.fai-process-support {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.fai-support-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #d7e5f3;
  font-size: 12px;
  font-weight: 820;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s cubic-bezier(.22,.61,.36,1), transform .4s cubic-bezier(.22,.61,.36,1), background .3s ease, border-color .3s ease;
}
.fai-support-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fai-support-pill.is-active {
  background: rgba(24,119,210,.13);
  border-color: rgba(24,119,210,.18);
}

/* KPI */
.fai-kpi {
  padding: 108px 0 112px;
  background: #f6f8fa;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}
.fai-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.fai-kpi-card {
  padding: 24px 24px 22px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.fai-kpi-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fai-kpi-card.is-active {
  border-color: rgba(24,119,210,.22);
  box-shadow: 0 18px 34px rgba(24,119,210,.10);
}
.fai-kpi-card small {
  display: block;
  color: #8a98a7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fai-kpi-card strong {
  display: block;
  margin-top: 11px;
  color: #243346;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.06;
}
.fai-kpi-card p {
  margin: 11px 0 0;
  color: #778495;
  font-size: 13px;
  line-height: 1.58;
}

/* Targets */
.fai-targets {
  padding: 108px 0 112px;
  background: #fff;
}
.fai-targets-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.fai-targets-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.07;
}
.fai-targets-copy p {
  max-width: 720px;
  margin: 0;
  color: #667589;
  font-size: 17px;
  line-height: 1.74;
}
.fai-targets-copy p + p {
  margin-top: 16px;
}
.fai-targets-figure {
  position: relative;
}
.fai-targets-figure-frame {
  position: relative;
  padding: 18px;
  border: 1px solid #dfe6ed;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 30px 60px rgba(20,31,47,.08);
  overflow: hidden;
}
.fai-targets-figure-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(24,119,210,.08), transparent 32%),
              radial-gradient(circle at 84% 24%, rgba(176,8,18,.07), transparent 28%);
  pointer-events: none;
}
.fai-targets-figure-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* Roadmap */
.fai-intro-roadmap {
  padding: 108px 0 116px;
  background: #f6f8fa;
}
.fai-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.fai-roadmap-card {
  min-height: 260px;
  padding: 24px 22px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
}
.fai-roadmap-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #1877d2;
  background: rgba(24,119,210,.08);
  font-size: 14px;
  font-weight: 900;
}
.fai-roadmap-card h3 {
  margin: 18px 0 10px;
  color: #304053;
  font-size: 21px;
  line-height: 1.18;
}
.fai-roadmap-card p {
  margin: 0;
  color: #778495;
  font-size: 14px;
  line-height: 1.68;
}
.fai-roadmap-note {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid #d9e4ef;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfe 100%);
}
.fai-roadmap-note p {
  max-width: 920px;
  margin: 0;
  color: #2f4053;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.66;
}
.fai-roadmap-stage {
  margin-top: 48px;
}
.fai-roadmap-figure-frame {
  overflow: hidden;
  border: 1px solid #d9e4ef;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow: 0 18px 40px rgba(20, 31, 47, .06);
}
.fai-roadmap-figure-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* CTA */
.fai-page-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 48%, rgba(24,119,210,.16), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(44,201,225,.08), transparent 24%),
    linear-gradient(135deg,#171f2a 0%,#101a27 62%,#0e243a 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.fai-page-cta::before,
.fai-page-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fai-page-cta::before {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(90,187,255,.10);
  box-shadow:
    0 0 0 62px rgba(66,165,235,.025),
    0 0 0 124px rgba(66,165,235,.018);
}
.fai-page-cta::after {
  width: 9px;
  height: 9px;
  right: 18%;
  top: 24%;
  background: #66d9ee;
  box-shadow:
    -112px 92px 0 -2px rgba(84,183,246,.78),
    86px 116px 0 -2px rgba(84,183,246,.62),
    -24px 206px 0 -3px rgba(84,183,246,.72);
}
.fai-page-cta-tech {
  position: absolute;
  right: -70px;
  top: 50%;
  width: 620px;
  height: 300px;
  transform: translateY(-50%);
  opacity: .58;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(72,166,231,.18) 8% 8.2%, transparent 8.2% 24%, rgba(72,166,231,.12) 24% 24.2%, transparent 24.2% 100%),
    linear-gradient(0deg, transparent 0 31%, rgba(72,166,231,.12) 31% 31.4%, transparent 31.4% 66%, rgba(72,166,231,.08) 66% 66.3%, transparent 66.3% 100%);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 100%);
}
.fai-page-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr);
  gap: clamp(42px,6vw,88px);
  align-items: center;
}
.fai-page-cta-copy {
  max-width: 860px;
}
.fai-page-cta h2 {
  max-width: 820px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(36px,3.7vw,54px);
  line-height: 1.08;
}
.fai-page-cta-copy > p:last-child {
  max-width: 790px;
  margin: 0;
  color: #becbda;
  font-size: 16px;
  line-height: 1.72;
}
.fai-page-cta-card {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 28px;
  border: 1px solid rgba(134,202,247,.22);
  border-radius: 26px;
  background: linear-gradient(145deg,rgba(255,255,255,.105),rgba(255,255,255,.055));
  box-shadow: 0 24px 60px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.fai-page-cta-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -78px;
  top: -84px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(37,164,238,.23),transparent 68%);
}
.fai-page-cta-orb {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(99,201,244,.54);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,rgba(51,176,239,.24),rgba(16,43,70,.55) 58%,rgba(10,27,45,.7));
  box-shadow: 0 0 28px rgba(40,166,233,.16), inset 0 0 18px rgba(56,190,243,.12);
}
.fai-page-cta-orb::before,
.fai-page-cta-orb::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(109,213,247,.34);
  border-radius: 50%;
}
.fai-page-cta-orb::after {
  inset: 16px;
  background: #53c8f1;
  border: 0;
  box-shadow: 0 0 18px rgba(83,200,241,.72);
}
.fai-page-cta-orb span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7ce4f2;
  box-shadow: 0 0 9px rgba(124,228,242,.65);
}
.fai-page-cta-orb span:nth-child(1) { left: -16px; top: 23px; }
.fai-page-cta-orb span:nth-child(2) { right: -17px; top: 11px; }
.fai-page-cta-orb span:nth-child(3) { right: -9px; bottom: -9px; }
.fai-page-cta-card-kicker {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 820;
  line-height: 1.2;
}
.fai-page-cta-card > p:not(.fai-page-cta-card-kicker) {
  position: relative;
  margin: 0 0 24px;
  color: #b9c8d8;
  font-size: 14px;
  line-height: 1.68;
}
.fai-page-cta-card .button {
  position: relative;
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1220px) {
  .fai-hero-grid,
  .fai-targets-grid,
  .fai-promise-layout {
    grid-template-columns: 1fr;
  }
  .fai-hero-diagram {
    max-width: 980px;
  }
  .fai-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 1080px) {
  .fai-process-columns {
    grid-template-columns: 1fr;
  }
  .fai-process-center {
    min-height: 180px;
  }
  .fai-process-axis {
    inset: 0 auto 0 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 2px;
    height: 160px;
    top: 50%;
    margin-top: -80px;
  }
  .fai-kpi-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 820px) {
  .fai-hero {
    padding: 136px 0 88px;
  }
  .fai-hero-copy h1 {
    font-size: clamp(46px, 11vw, 62px);
  }
  .fai-hero-diagram {
    min-height: 900px;
    padding: 20px;
  }
  .fai-hero-lines {
    inset: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
  .fai-hero-sources,
  .fai-hero-results {
    position: static;
    width: auto;
  }
  .fai-hero-diagram {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fai-hero-sources,
  .fai-hero-results {
    display: grid;
    gap: 12px;
  }
  .fai-hero-core {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto;
  }
  .fai-line-base,
  .fai-line-active {
    display: none;
  }
  .fai-kpi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .fai-actions {
    flex-direction: column;
  }
  .fai-actions .button {
    width: 100%;
  }
  .fai-promise,
  .fai-process,
  .fai-kpi,
  .fai-targets,
  .fai-intro-roadmap {
    padding: 84px 0;
  }
  .fai-promise-grid {
    grid-template-columns: 1fr;
  }
  .fai-process-stage {
    padding: 20px;
    border-radius: 24px;
  }
  .fai-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fai-page-cta-card {
    max-width: 560px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fai-hero-core-content,
  .fai-process-core {
    animation-duration: 5s !important;
  }
}


/* =========================================================
   Unterseite Unternehmen – Prototyp 0.12
   ========================================================= */
.page-company {
  background: #fff;
}
.company-page-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 108px;
  background:
    radial-gradient(circle at 8% 18%, rgba(176,8,18,.075), transparent 25%),
    radial-gradient(circle at 92% 76%, rgba(24,119,210,.07), transparent 27%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  border-bottom: 1px solid #e9edf1;
}
.company-page-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.company-page-glow-a {
  width: 520px;
  height: 520px;
  left: -300px;
  top: -40px;
  background: radial-gradient(circle, rgba(176,8,18,.08), transparent 72%);
}
.company-page-glow-b {
  width: 520px;
  height: 520px;
  right: -290px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(24,119,210,.08), transparent 72%);
}
.company-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(52px,7vw,106px);
  align-items: center;
}
.company-page-copy h1 {
  max-width: 780px;
  margin: 12px 0 24px;
  color: #253548;
  font-size: clamp(54px,5.4vw,80px);
  line-height: 1.01;
}
.company-page-copy h1 span {
  color: var(--red);
}
.company-page-lead {
  max-width: 720px;
  margin: 0;
  color: #526275;
  font-size: 19px;
  line-height: 1.76;
}
.company-page-text {
  max-width: 700px;
  margin: 18px 0 0;
  color: #758294;
  font-size: 16px;
  line-height: 1.76;
}
.company-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.company-page-stage {
  position: relative;
  min-height: 520px;
  border: 1px solid #dfe6ed;
  border-radius: 30px;
  background: linear-gradient(145deg,#fbfcfd,#f5f8fb);
  box-shadow: 0 28px 58px rgba(20,31,47,.08);
}
.company-page-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.company-page-path {
  fill: none;
  stroke-linecap: round;
}
.company-page-path-base {
  stroke: #d7dee6;
  stroke-width: 2;
}
.company-page-path-active {
  stroke: url(#companyPageFlow);
  stroke-width: 3;
  stroke-dasharray: 12 9;
  animation: companyPageDash 8s linear infinite;
}
.company-page-path-blue {
  animation-delay: -2.5s;
}
@keyframes companyPageDash {
  to { stroke-dashoffset: -180; }
}
.company-page-scene {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e6ec;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(20,31,47,.07);
  text-align: center;
}
.company-page-scene-personal {
  left: 34px;
  top: 48px;
  width: 210px;
  min-height: 168px;
  border-radius: 23px;
}
.company-page-scene-core {
  left: 50%;
  top: 50%;
  width: 272px;
  min-height: 200px;
  margin-left: -136px;
  margin-top: -100px;
  border-radius: 27px;
}
.company-page-scene-digital {
  right: 34px;
  bottom: 48px;
  width: 210px;
  min-height: 168px;
  border-radius: 23px;
}
.company-page-scene-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.company-page-scene-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.company-page-scene-icon svg {
  width: 34px;
  height: 34px;
}
.company-page-scene strong {
  display: block;
  margin-top: 15px;
  color: #334357;
  font-size: 17px;
}
.company-page-scene small {
  display: block;
  max-width: 170px;
  margin-top: 7px;
  color: #7c8999;
  font-size: 12px;
  line-height: 1.5;
}
.company-page-scene-core img {
  width: 176px;
}
.company-page-scene-core h3 {
  margin: 18px 0 0;
  color: #2e3d50;
  font-size: 22px;
  line-height: 1.16;
}
.company-page-scene-core p {
  margin: 9px 0 0;
  color: #7b8797;
  font-size: 12px;
}
.company-page-stage-caption {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.company-page-stage-caption span {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg,var(--red),#1877d2);
}
.company-page-stage-caption p {
  margin: 0;
  color: #778495;
  font-size: 12px;
  font-weight: 760;
}

.company-page-values {
  padding: 108px 0 112px;
  background: #fff;
}
.company-page-intro {
  max-width: 930px;
}
.company-page-intro h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.company-page-intro > p:last-child {
  max-width: 830px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}
.company-page-values-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.company-page-value {
  min-height: 290px;
  padding: 26px 24px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: linear-gradient(180deg,#fff,#fbfcfd);
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
}
.company-page-value-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.company-page-value-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.company-page-value-icon svg {
  width: 38px;
  height: 38px;
}
.company-page-value h3 {
  margin: 22px 0 10px;
  color: #2f3f52;
  font-size: 23px;
  line-height: 1.17;
}
.company-page-value p {
  margin: 0;
  color: #788596;
  font-size: 14px;
  line-height: 1.67;
}

.company-page-understanding {
  padding: 112px 0;
  background: #f6f8fa;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}
.company-page-understanding-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(54px,7vw,104px);
  align-items: center;
}
.company-page-understanding-copy h2 {
  margin: 12px 0 22px;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.company-page-understanding-copy p {
  max-width: 700px;
  margin: 0;
  color: #68778a;
  font-size: 17px;
  line-height: 1.74;
}
.company-page-understanding-copy p + p {
  margin-top: 16px;
}
.company-page-understanding-visual {
  display: grid;
  gap: 0;
  padding: 28px;
  border: 1px solid #dfe6ed;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(20,31,47,.07);
}
.company-page-understanding-visual article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid #e4e9ee;
  border-radius: 20px;
  background: #fbfcfd;
}
.company-page-understanding-visual article > span {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.company-page-understanding-visual article > span.company-page-understanding-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.company-page-understanding-visual svg {
  width: 32px;
  height: 32px;
}
.company-page-understanding-visual small {
  display: block;
  color: #967173;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}
.company-page-understanding-visual article:last-child small {
  color: #5685af;
}
.company-page-understanding-visual strong {
  display: block;
  margin-top: 5px;
  color: #354559;
  font-size: 17px;
}
.company-page-understanding-line {
  position: relative;
  width: 3px;
  height: 34px;
  margin: 0 auto;
  background: #dfb1b4;
}
.company-page-understanding-line i {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--red);
  animation: companyPageTravel 2.4s ease-in-out infinite;
}
.company-page-understanding-line-blue {
  background: #b9d5ef;
}
.company-page-understanding-line-blue i {
  background: #1877d2;
  animation-delay: -1.2s;
}
@keyframes companyPageTravel {
  0%,100% { top: 3px; opacity: .25; }
  50% { top: 23px; opacity: 1; }
}

.company-page-balance {
  position: relative;
  overflow: hidden;
  padding: 112px 0 116px;
  color: #edf4fb;
  background: linear-gradient(135deg,#19202a 0%,#111a26 56%,#0d2236 100%);
}
.company-page-balance-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -280px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(24,119,210,.18),transparent 72%);
}
.company-page-balance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: clamp(42px,5vw,76px);
  align-items: center;
}
.company-page-balance-copy h2 {
  max-width: 760px;
  margin: 12px 0 21px;
  color: #fff;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.company-page-balance-copy p {
  max-width: 700px;
  margin: 0;
  color: #bdcad8;
  font-size: 17px;
  line-height: 1.74;
}
.company-page-balance-copy p + p {
  margin-top: 16px;
}
.company-page-balance-copy .button {
  margin-top: 28px;
}
.company-page-balance-model {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.company-balance-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 23px;
  background: rgba(255,255,255,.06);
  text-align: center;
}
.company-balance-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffb0b6;
  background: rgba(176,8,18,.14);
}
.company-balance-card-blue .company-balance-card-icon {
  color: #9fceff;
  background: rgba(24,119,210,.14);
}
.company-balance-card-icon svg {
  width: 40px;
  height: 40px;
}
.company-balance-card small {
  margin-top: 20px;
  color: #d58f94;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
.company-balance-card-blue small {
  color: #77b7f3;
}
.company-balance-card strong {
  max-width: 180px;
  margin-top: 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.22;
}
.company-balance-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-balance-bridge span,
.company-balance-bridge b {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
}
.company-balance-bridge b {
  background: #1877d2;
}
.company-balance-bridge i {
  width: 66px;
  height: 3px;
  background: linear-gradient(90deg,var(--red),#1877d2);
}

.company-page-clients {
  padding: 108px 0 112px;
  background: #fff;
}
.company-page-client-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin-top: 48px;
}
.company-page-client-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid #e0e6ec;
  border-radius: 22px;
  background: linear-gradient(180deg,#fff,#fbfcfd);
  box-shadow: 0 12px 28px rgba(20,31,47,.04);
}
.company-page-client-card span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.company-page-client-card:nth-child(3) span,
.company-page-client-card:nth-child(4) span {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.company-page-client-card svg {
  width: 32px;
  height: 32px;
}
.company-page-client-card strong {
  display: block;
  margin-top: 17px;
  color: #344457;
  font-size: 18px;
  line-height: 1.2;
}

.company-page-contact-person {
  padding: 92px 0;
  background: #f6f8fa;
  border-top: 1px solid #edf0f3;
}
.company-page-contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  align-items: center;
}
.company-page-contact-copy h2 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(38px,3.9vw,58px);
  line-height: 1.07;
}
.company-page-contact-copy p {
  max-width: 760px;
  margin: 0;
  color: #68778a;
  font-size: 17px;
  line-height: 1.72;
}
.company-page-person-card {
  min-width: 360px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid #dfe6ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(20,31,47,.06);
}
.company-page-person-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.company-page-person-icon svg {
  width: 43px;
  height: 43px;
}
.company-page-person-card small {
  display: block;
  color: #8a97a6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
}
.company-page-person-card strong {
  display: block;
  margin-top: 5px;
  color: #2f3f52;
  font-size: 22px;
}
.company-page-person-card a {
  display: block;
  margin-top: 5px;
  color: #5f6e80;
  font-size: 13px;
}
.company-page-person-card a:hover {
  color: var(--red);
}

.company-page-cta {
  padding: 80px 0 86px;
  color: #fff;
  background: linear-gradient(135deg,#1a202a,#111a26 64%,#10243a);
}
.company-page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 46px;
  align-items: center;
}
.company-page-cta .eyebrow {
  color: #ef747c;
}
.company-page-cta h2 {
  max-width: 820px;
  margin: 10px 0 13px;
  color: #fff;
  font-size: clamp(36px,3.7vw,54px);
  line-height: 1.08;
}
.company-page-cta p:last-child {
  max-width: 760px;
  margin: 0;
  color: #b9c7d6;
  font-size: 16px;
  line-height: 1.66;
}

@media (max-width: 1180px) {
  .company-page-hero-grid,
  .company-page-understanding-grid,
  .company-page-balance-grid {
    grid-template-columns: 1fr;
  }
  .company-page-stage,
  .company-page-understanding-visual,
  .company-page-balance-model {
    max-width: 860px;
  }
  .company-page-client-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 900px) {
  .company-page-values-grid {
    grid-template-columns: 1fr;
  }
  .company-page-value {
    min-height: 0;
  }
  .company-page-contact-grid,
  .company-page-cta-inner {
    grid-template-columns: 1fr;
  }
  .company-page-person-card {
    min-width: 0;
    max-width: 520px;
  }
}
@media (max-width: 700px) {
  .company-page-hero {
    padding: 120px 0 78px;
  }
  .company-page-copy h1 {
    font-size: clamp(46px,13vw,62px);
  }
  .company-page-actions {
    flex-direction: column;
  }
  .company-page-actions .button {
    width: 100%;
  }
  .company-page-stage {
    min-height: 760px;
    padding: 20px;
  }
  .company-page-connectors {
    display: none;
  }
  .company-page-scene {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 0 14px;
  }
  .company-page-stage-caption {
    position: static;
    margin: 8px 4px 0;
  }
  .company-page-values,
  .company-page-understanding,
  .company-page-balance,
  .company-page-clients {
    padding: 84px 0;
  }
  .company-page-balance-model {
    grid-template-columns: 1fr;
  }
  .company-balance-bridge {
    transform: rotate(90deg);
  }
  .company-page-client-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .company-page-path-active {
    animation-duration: 14s;
  }
  .company-page-understanding-line i {
    animation-duration: 4.5s;
  }
}


/* =========================================================
   Unterseite Kontakt – Prototyp 0.13
   ========================================================= */
.page-contact {
  background: #fff;
}
.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 108px;
  background:
    radial-gradient(circle at 9% 15%, rgba(176,8,18,.075), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(24,119,210,.07), transparent 28%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  border-bottom: 1px solid #e9edf1;
}
.contact-page-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-page-glow-a {
  width: 520px;
  height: 520px;
  left: -300px;
  top: -60px;
  background: radial-gradient(circle,rgba(176,8,18,.08),transparent 72%);
}
.contact-page-glow-b {
  width: 540px;
  height: 540px;
  right: -300px;
  bottom: -160px;
  background: radial-gradient(circle,rgba(24,119,210,.08),transparent 72%);
}
.contact-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(52px,7vw,106px);
  align-items: center;
}
.contact-page-hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 24px;
  color: #253548;
  font-size: clamp(54px,5.4vw,80px);
  line-height: 1.01;
}
.contact-page-hero-copy h1 span {
  color: var(--red);
}
.contact-page-lead {
  max-width: 720px;
  margin: 0;
  color: #526275;
  font-size: 19px;
  line-height: 1.76;
}
.contact-page-text {
  max-width: 690px;
  margin: 18px 0 0;
  color: #758294;
  font-size: 16px;
  line-height: 1.76;
}
.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-page-hero-card {
  position: relative;
  overflow: hidden;
  max-width: 590px;
  justify-self: end;
  padding: 28px 28px 26px;
  border: 1px solid #dde5ec;
  border-radius: 30px;
  background: linear-gradient(180deg,#fff,#f8fbfd);
  box-shadow: 0 30px 62px rgba(20,31,47,.09);
}
.contact-page-hero-card-line {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg,var(--red) 0%,var(--red) 55%,#1877d2 100%);
}
.contact-page-hero-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e9ef;
}
.contact-page-hero-brand img {
  width: min(220px,48%);
}
.contact-page-hero-brand p {
  margin: 0;
  color: #697789;
  text-align: right;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.48;
}
.contact-page-hero-visual {
  margin: 18px 0 10px;
}
.contact-page-hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.contact-page-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dfe6ed;
  border-radius: 20px;
  background: #fff;
}
.contact-page-person-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.contact-page-person-icon svg {
  width: 34px;
  height: 34px;
}
.contact-page-person small {
  display: block;
  color: #8996a5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
}
.contact-page-person strong {
  display: block;
  margin-top: 4px;
  color: #2f3f52;
  font-size: 20px;
}
.contact-page-person span {
  display: block;
  margin-top: 3px;
  color: #778495;
  font-size: 12px;
}

/* Common intro */
.contact-page-intro {
  max-width: 930px;
}
.contact-page-intro h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.contact-page-intro > p:last-child {
  max-width: 830px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}

/* Contact paths */
.contact-page-paths {
  padding: 108px 0 112px;
  background: #fff;
}
.contact-page-path-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.contact-page-path-card {
  min-height: 300px;
  display: block;
  padding: 26px 24px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: linear-gradient(180deg,#fff,#fbfcfd);
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
a.contact-page-path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176,8,18,.25);
  box-shadow: 0 20px 38px rgba(20,31,47,.08);
}
.contact-page-path-card-blue {
  background: linear-gradient(180deg,#fff,#f8fbff);
}
.contact-page-path-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.contact-page-path-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.contact-page-path-icon svg {
  width: 38px;
  height: 38px;
}
.contact-page-path-card > small {
  display: block;
  margin-top: 22px;
  color: #976f72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.contact-page-path-card-blue > small {
  color: #5685af;
}
.contact-page-path-card strong {
  display: block;
  margin-top: 8px;
  color: #2f3f52;
  font-size: 23px;
  line-height: 1.18;
}
.contact-page-path-card p {
  margin: 11px 0 0;
  color: #788596;
  font-size: 14px;
  line-height: 1.67;
}
.contact-page-path-link {
  display: block;
  margin-top: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 840;
}
.contact-page-path-card-blue .contact-page-path-link {
  color: #1877d2;
}

/* First conversation */
.contact-page-process {
  padding: 112px 0;
  background: #f6f8fa;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}
.contact-page-process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(54px,7vw,104px);
  align-items: start;
}
.contact-page-process-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.contact-page-process-copy p {
  max-width: 700px;
  margin: 0;
  color: #68778a;
  font-size: 17px;
  line-height: 1.74;
}
.contact-page-process-steps {
  display: grid;
  gap: 14px;
}
.contact-page-process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 128px;
  padding: 20px;
  border: 1px solid #dfe6ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1),transform .5s cubic-bezier(.22,.61,.36,1),border-color .3s ease,box-shadow .3s ease;
}
.contact-page-process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-page-process-step.is-active {
  border-color: rgba(24,119,210,.22);
  box-shadow: 0 18px 34px rgba(24,119,210,.09);
}
.contact-page-process-step-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.contact-page-process-step-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.contact-page-process-step-icon svg {
  width: 34px;
  height: 34px;
}
.contact-page-process-step small {
  display: block;
  color: #997275;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}
.contact-page-process-step:last-child small {
  color: #5685af;
}
.contact-page-process-step strong {
  display: block;
  margin-top: 5px;
  color: #344457;
  font-size: 19px;
}
.contact-page-process-step p {
  margin: 7px 0 0;
  color: #7b8797;
  font-size: 13px;
  line-height: 1.55;
}

/* Office / info */
.contact-page-info {
  position: relative;
  overflow: hidden;
  padding: 112px 0 116px;
  color: #edf4fb;
  background: linear-gradient(135deg,#19202a 0%,#111a26 56%,#0d2236 100%);
}
.contact-page-info-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -290px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(24,119,210,.18),transparent 72%);
}
.contact-page-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(54px,7vw,100px);
  align-items: center;
}
.contact-page-info-copy h2 {
  max-width: 760px;
  margin: 12px 0 21px;
  color: #fff;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.contact-page-info-copy p {
  max-width: 700px;
  margin: 0;
  color: #bdcad8;
  font-size: 17px;
  line-height: 1.74;
}
.contact-page-info-copy p + p {
  margin-top: 16px;
}
.contact-page-info-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 56px rgba(0,10,22,.20);
}
.contact-page-info-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 18px 22px;
  border-bottom: 1px solid #e5eaf0;
}
.contact-page-info-row:last-child {
  border-bottom: 0;
}
.contact-page-info-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--red);
  background: rgba(176,8,18,.07);
}
.contact-page-info-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}
.contact-page-info-icon svg {
  width: 32px;
  height: 32px;
}
.contact-page-info-row small {
  display: block;
  color: #8b98a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
}
.contact-page-info-row strong,
.contact-page-info-row a {
  color: #2f4053;
  font-size: 16px;
  line-height: 1.48;
}
.contact-page-info-row a:hover {
  color: var(--red);
}

/* Topics */
.contact-page-topics {
  padding: 108px 0 112px;
  background: #fff;
}
.contact-page-topic-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.contact-page-topic-card {
  position: relative;
  min-height: 270px;
  display: block;
  padding: 26px 24px 52px;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  background: linear-gradient(180deg,#fff,#fbfcfd);
  box-shadow: 0 14px 30px rgba(20,31,47,.045);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.contact-page-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176,8,18,.24);
  box-shadow: 0 20px 38px rgba(20,31,47,.08);
}
.contact-page-topic-card-blue:hover {
  border-color: rgba(24,119,210,.26);
}
.contact-page-topic-card > span {
  color: #9b7476;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}
.contact-page-topic-card-blue > span {
  color: #5f8cb4;
}
.contact-page-topic-card strong {
  display: block;
  margin-top: 12px;
  color: #304053;
  font-size: 22px;
  line-height: 1.2;
}
.contact-page-topic-card p {
  margin: 12px 0 0;
  color: #788596;
  font-size: 14px;
  line-height: 1.65;
}
.contact-page-topic-card i {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--red);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}
.contact-page-topic-card-blue i {
  color: #1877d2;
}

/* Final CTA */
.contact-page-final {
  padding: 82px 0 88px;
  color: #fff;
  background: linear-gradient(135deg,#1a202a,#111a26 64%,#10243a);
}
.contact-page-final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 46px;
  align-items: center;
}
.contact-page-final .eyebrow {
  color: #ef747c;
}
.contact-page-final h2 {
  max-width: 820px;
  margin: 10px 0 13px;
  color: #fff;
  font-size: clamp(36px,3.7vw,54px);
  line-height: 1.08;
}
.contact-page-final p:last-child {
  max-width: 760px;
  margin: 0;
  color: #b9c7d6;
  font-size: 16px;
  line-height: 1.66;
}
.contact-page-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-page-final-phone {
  color: #e7eef6;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.contact-page-final-phone:hover {
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.08);
}

@media (max-width: 1180px) {
  .contact-page-hero-grid,
  .contact-page-process-grid,
  .contact-page-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-hero-card,
  .contact-page-info-card {
    max-width: 760px;
    justify-self: start;
  }
}
@media (max-width: 900px) {
  .contact-page-path-grid,
  .contact-page-topic-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-path-card,
  .contact-page-topic-card {
    min-height: 0;
  }
  .contact-page-final-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .contact-page-hero {
    padding: 120px 0 78px;
  }
  .contact-page-hero-copy h1 {
    font-size: clamp(46px,13vw,62px);
  }
  .contact-page-actions {
    flex-direction: column;
  }
  .contact-page-actions .button {
    width: 100%;
  }
  .contact-page-hero-card {
    padding: 24px 20px 22px;
  }
  .contact-page-hero-brand {
    display: block;
  }
  .contact-page-hero-brand img {
    width: 190px;
  }
  .contact-page-hero-brand p {
    margin-top: 13px;
    text-align: left;
  }
  .contact-page-paths,
  .contact-page-process,
  .contact-page-info,
  .contact-page-topics {
    padding: 84px 0;
  }
  .contact-page-process-step {
    align-items: flex-start;
  }
}


/* =========================================================
   Rechtliche Seiten – Prototyp 0.14
   ========================================================= */
.page-legal {
  background: #fff;
}
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 162px 0 88px;
  background:
    radial-gradient(circle at 10% 18%, rgba(176,8,18,.075), transparent 28%),
    linear-gradient(180deg,#fff,#f8fafc);
  border-bottom: 1px solid #e7ecf1;
}
.legal-hero-blue {
  background:
    radial-gradient(circle at 88% 30%, rgba(24,119,210,.085), transparent 28%),
    linear-gradient(180deg,#fff,#f8fafc);
}
.legal-hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -300px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(176,8,18,.08),transparent 72%);
  pointer-events: none;
}
.legal-hero-glow-blue {
  left: auto;
  right: -300px;
  background: radial-gradient(circle,rgba(24,119,210,.08),transparent 72%);
}
.legal-hero h1 {
  position: relative;
  z-index: 1;
  margin: 8px 0 18px;
  color: #27374a;
  font-size: clamp(52px,5.2vw,76px);
  line-height: 1.02;
}
.legal-hero .eyebrow,
.legal-hero-lead {
  position: relative;
  z-index: 1;
}
.legal-hero-lead {
  max-width: 820px;
  margin: 0;
  color: #647386;
  font-size: 18px;
  line-height: 1.7;
}

.legal-content {
  padding: 82px 0 106px;
  background: #fff;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0,850px);
  gap: clamp(44px,6vw,92px);
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid #e0e6ec;
  border-radius: 20px;
  background: #fafbfd;
}
.legal-nav p {
  margin: 0 0 8px;
  color: #8794a4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.legal-nav a {
  color: #4f5f72;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}
.legal-nav a:hover {
  color: var(--red);
}
.legal-main {
  min-width: 0;
}
.legal-draft-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid #efc7ca;
  border-radius: 18px;
  background: #fff8f8;
}
.legal-draft-note-blue {
  border-color: #c8ddf2;
  background: #f7fbff;
}
.legal-draft-note > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}
.legal-draft-note-blue > span {
  background: #1877d2;
}
.legal-draft-note strong {
  display: block;
  color: #344457;
  font-size: 15px;
}
.legal-draft-note p {
  margin: 6px 0 0;
  color: #718092;
  font-size: 13px;
  line-height: 1.58;
}

.legal-section {
  scroll-margin-top: 120px;
  padding: 32px 0 36px;
  border-bottom: 1px solid #e7ebef;
}
.legal-section:first-of-type {
  padding-top: 12px;
}
.legal-section:last-of-type {
  border-bottom: 0;
}
.legal-kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.legal-kicker-blue {
  color: #1877d2;
}
.legal-section h2 {
  margin: 0 0 18px;
  color: #2e3e51;
  font-size: clamp(30px,3vw,42px);
  line-height: 1.12;
}
.legal-section h3 {
  margin: 24px 0 8px;
  color: #344457;
  font-size: 19px;
  line-height: 1.25;
}
.legal-section p {
  margin: 0;
  color: #667589;
  font-size: 15px;
  line-height: 1.75;
}
.legal-section p + p {
  margin-top: 14px;
}
.legal-section a {
  color: #315f8c;
  font-weight: 760;
}
.legal-section a:hover {
  color: var(--red);
}

.legal-address-card {
  padding: 22px;
  border: 1px solid #e2e7ed;
  border-left: 4px solid var(--red);
  border-radius: 18px;
  background: #fafbfd;
}
.legal-address-card-blue {
  border-left-color: #1877d2;
}
.legal-address-card strong {
  display: block;
  color: #2e3e51;
  font-size: 17px;
}
.legal-address-card p {
  margin-top: 10px;
  color: #667589;
  font-size: 14px;
  line-height: 1.65;
}

.legal-definition-list {
  margin: 0;
  border: 1px solid #e2e7ed;
  border-radius: 18px;
  overflow: hidden;
}
.legal-definition-list > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #e7ebef;
}
.legal-definition-list > div:last-child {
  border-bottom: 0;
}
.legal-definition-list dt {
  color: #8793a2;
  font-size: 12px;
  font-weight: 820;
}
.legal-definition-list dd {
  margin: 0;
  color: #38485b;
  font-size: 14px;
  font-weight: 700;
}
.legal-placeholder {
  display: inline;
  color: #9b4b51;
  font-weight: 800;
  background: #fff4f4;
  border-radius: 5px;
  padding: 2px 5px;
}
.page-legal .legal-draft-note-blue ~ .legal-section .legal-placeholder {
  color: #356d9f;
  background: #f0f7ff;
}
.legal-small-note {
  margin-top: 14px !important;
  padding-left: 14px;
  border-left: 3px solid #dce3e9;
  color: #8591a0 !important;
  font-size: 12px !important;
}

.legal-tech-status {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #cce0f4;
  border-radius: 18px;
  background: #f7fbff;
}
.legal-tech-status > span {
  color: #4d83b3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal-tech-status strong {
  display: block;
  margin-top: 5px;
  color: #2e4f70;
  font-size: 16px;
}
.legal-tech-status p {
  margin-top: 8px;
  font-size: 13px;
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin: 20px 0;
}
.legal-rights-grid article {
  padding: 16px;
  border: 1px solid #e2e7ed;
  border-radius: 15px;
  background: #fafbfd;
}
.legal-rights-grid strong {
  display: block;
  color: #344457;
  font-size: 14px;
}
.legal-rights-grid span {
  display: block;
  margin-top: 4px;
  color: #7e8b9a;
  font-size: 11px;
}

.legal-update {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
  padding: 17px 20px;
  border-radius: 16px;
  color: #5b6675;
  background: #f5f7f9;
}
.legal-update-blue {
  background: #f2f8fd;
}
.legal-update span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.legal-update strong {
  color: #344457;
  font-size: 14px;
}
.footer-legal a {
  color: #7b8795;
  transition: color .18s ease;
}
.footer-legal a:hover {
  color: var(--red);
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .legal-nav p {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .legal-hero {
    padding: 122px 0 70px;
  }
  .legal-content {
    padding: 60px 0 82px;
  }
  .legal-definition-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .legal-rights-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Navigation – systematische Optimierung 0.15
   ========================================================= */

/* Tastaturbedienung klar sichtbar, ohne das ruhige Erscheinungsbild zu stören. */
.nav-link:focus-visible,
.header-cta:focus-visible,
.mobile-nav-cta:focus-visible,
.menu-toggle:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(24,119,210,.28);
  outline-offset: 4px;
}

/* FIBU AI bleibt Teil derselben Navigation, bekommt aber im aktiven Zustand
   konsequent den bereits etablierten blauen Technologie-Akzent. */
.nav-ai::after {
  background: var(--blue);
}
.nav-ai.active {
  color: #125f9f;
}

/* Mobile CTA ist auf Desktop nicht sichtbar. */
.mobile-nav-cta {
  display: none;
}
.nav-backdrop {
  display: none;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 120;
  }

  .menu-toggle {
    position: relative;
    z-index: 123;
  }

  .main-nav {
    z-index: 122;
    top: 82px;
    left: 14px;
    right: 14px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(210,218,226,.96);
    background: rgba(255,255,255,.995);
    box-shadow: 0 22px 58px rgba(17,28,43,.17);
    transform-origin: top center;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    animation: navPanelIn .18s ease-out both;
  }

  @keyframes navPanelIn {
    from { opacity: 0; transform: translateY(-7px) scale(.992); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .nav-link {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 15px;
  }

  .nav-link:hover {
    background: #f6f8fa;
  }

  .nav-link.active {
    color: #7f0910;
    background: #fff3f4;
  }

  .nav-link.active::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 999px;
    background: var(--red);
  }

  .nav-link.nav-ai.active {
    color: #125f9f;
    background: #eef7ff;
  }

  .nav-link.nav-ai.active::before {
    background: var(--blue);
  }

  .mobile-nav-cta {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding: 0 15px 0 16px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg,var(--red),#ce0909);
    box-shadow: 0 12px 24px rgba(176,8,18,.15);
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-nav-cta span:last-child {
    font-size: 18px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 82px 0 0;
    z-index: 110;
    background: rgba(13,24,38,.26);
    backdrop-filter: blur(2px);
  }

  .nav-backdrop.open {
    display: block;
    animation: navBackdropIn .18s ease-out both;
  }

  @keyframes navBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

@media (max-width: 700px) {
  .main-nav {
    left: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav.open,
  .nav-backdrop.open {
    animation-duration: .01ms;
  }
}


/* =========================================================
   Navigation 0.16 – ruhige Dropdowns / mobile Accordions
   ========================================================= */
@media (min-width: 981px) {
  .main-nav {
    gap: clamp(12px, 1.45vw, 27px);
  }

  .nav-item {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .nav-item-main {
    display: flex;
    align-items: center;
  }

  .nav-item-main > .nav-link {
    padding-right: 4px;
  }

  .nav-submenu-toggle {
    width: 27px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: #758091;
    background: transparent;
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
  }

  .nav-submenu-toggle:hover,
  .nav-submenu-toggle:focus-visible,
  .nav-item.submenu-open .nav-submenu-toggle {
    color: var(--red);
    background: rgba(176,8,18,.055);
  }

  .nav-submenu-toggle-ai:hover,
  .nav-submenu-toggle-ai:focus-visible,
  .nav-item-ai.submenu-open .nav-submenu-toggle {
    color: var(--blue);
    background: rgba(24,119,210,.065);
  }

  .nav-submenu-toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
  }

  .nav-item.submenu-open .nav-submenu-toggle svg,
  .nav-item:focus-within .nav-submenu-toggle svg {
    transform: rotate(180deg);
  }

  .nav-submenu {
    position: absolute;
    left: 50%;
    top: calc(100% - 9px);
    width: 330px;
    padding: 10px;
    border: 1px solid rgba(214,221,229,.98);
    border-radius: 18px;
    background: rgba(255,255,255,.995);
    box-shadow: 0 24px 60px rgba(17,28,43,.15);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  }

  .nav-item:hover > .nav-submenu,
  .nav-item:focus-within > .nav-submenu,
  .nav-item.submenu-open > .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .nav-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    height: 15px;
  }

  .nav-submenu > a:not(.nav-submenu-overview) {
    display: block;
    padding: 11px 12px;
    border-radius: 11px;
    transition: background .16s ease;
  }

  .nav-submenu > a:not(.nav-submenu-overview):hover,
  .nav-submenu > a:not(.nav-submenu-overview):focus-visible {
    background: #f6f8fa;
  }

  .nav-submenu strong {
    display: block;
    color: #29394c;
    font-size: 13.5px;
    line-height: 1.25;
  }

  .nav-submenu small {
    display: block;
    margin-top: 3px;
    color: #7d8998;
    font-size: 11px;
    line-height: 1.38;
  }

  .nav-submenu-ai > a:not(.nav-submenu-overview):hover,
  .nav-submenu-ai > a:not(.nav-submenu-overview):focus-visible {
    background: #f2f8fe;
  }

  .nav-submenu-overview {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 7px;
    padding: 0 12px;
    border-top: 1px solid #e5e9ee;
    color: var(--red);
    font-size: 12.5px;
    font-weight: 850;
  }

  .nav-submenu-ai .nav-submenu-overview {
    color: var(--blue);
  }

  .nav-submenu-overview b {
    font-size: 17px;
  }
}

@media (max-width: 980px) {
  .nav-item {
    width: 100%;
  }

  .nav-item-main {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
    border-radius: 11px;
  }

  .nav-item-main > .nav-link {
    width: 100%;
  }

  .nav-item.active > .nav-item-main {
    background: #fff3f4;
  }

  .nav-item-ai.active > .nav-item-main {
    background: #eef7ff;
  }

  .nav-item.active > .nav-item-main > .nav-link {
    background: transparent;
  }

  .nav-submenu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    justify-self: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    color: #687689;
    background: transparent;
    cursor: pointer;
  }

  .nav-submenu-toggle:focus-visible {
    outline: 3px solid rgba(24,119,210,.25);
    outline-offset: 1px;
  }

  .nav-submenu-toggle svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .18s ease;
  }

  .nav-item.submenu-open .nav-submenu-toggle svg {
    transform: rotate(180deg);
  }

  .nav-submenu {
    display: none;
    margin: 4px 6px 8px 18px;
    padding: 7px 0 7px 14px;
    border-left: 2px solid #e3e8ee;
  }

  .nav-item.submenu-open > .nav-submenu {
    display: grid;
    gap: 3px;
  }

  .nav-item-ai.submenu-open > .nav-submenu {
    border-left-color: #c7dff5;
  }

  .nav-submenu > a {
    display: block;
    padding: 9px 10px;
    border-radius: 9px;
  }

  .nav-submenu > a:hover,
  .nav-submenu > a:focus-visible {
    background: #f6f8fa;
  }

  .nav-submenu strong {
    display: block;
    color: #334357;
    font-size: 13px;
    line-height: 1.3;
  }

  .nav-submenu small {
    display: none;
  }

  .nav-submenu-overview {
    margin-top: 4px;
    color: var(--red);
    font-size: 12.5px;
    font-weight: 850;
  }

  .nav-submenu-ai .nav-submenu-overview {
    color: var(--blue);
  }

  .nav-submenu-overview b {
    margin-left: 7px;
  }
}

/* Sprungziele liegen nach dem Navigieren nicht unter dem festen Header. */
#unser-ansatz,
#finanzbuchhaltung,
#lohnbuchhaltung,
#digitale-prozesse,
#grundprinzip,
#prozess,
#zusammenarbeit,
#digitalisierung,
#was-fibu-ai-leistet,
#buchhaltungsprozess,
#zielgroessen,
#zielgruppen,
#wofuer-wir-stehen,
#unser-verstaendnis,
#persoenlich-digital {
  /*
    Bewusst kleiner als die Höhe des festen Headers:
    Der Zielabschnitt beginnt dadurch direkt unter bzw. leicht hinter dem Header.
    So bleibt beim Anspringen kein schmaler Streifen des vorherigen Abschnitts sichtbar.
  */
  scroll-margin-top: 68px;
}

@media (max-width: 980px) {
  #unser-ansatz,
  #finanzbuchhaltung,
  #lohnbuchhaltung,
  #digitale-prozesse,
  #grundprinzip,
  #prozess,
  #zusammenarbeit,
  #digitalisierung,
  #was-fibu-ai-leistet,
  #buchhaltungsprozess,
  #zielgroessen,
  #zielgruppen,
  #wofuer-wir-stehen,
  #unser-verstaendnis,
  #persoenlich-digital {
    scroll-margin-top: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-submenu,
  .nav-submenu-toggle svg {
    transition-duration: .01ms;
  }
}


/* =========================================================
   Startseite 0.17 – gezielte fotografische Bildmomente
   ========================================================= */

/* Ihr Vorteil */
.benefits-photo {
  position: relative;
  overflow: hidden;
  max-width: 650px;
  margin: 34px 0 0;
  border: 1px solid #dde4eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(20,31,47,.07);
}
.benefits-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 64%, rgba(11,25,42,.08) 100%);
}
.benefits-photo img {
  width: 100%;
  aspect-ratio: 1.83 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
}
.benefits-photo figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 47px;
  padding: 0 16px;
  background: rgba(255,255,255,.96);
}
.benefits-photo figcaption span {
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background: var(--red);
}
.benefits-photo figcaption p {
  margin: 0;
  color: #68778a;
  font-size: 11.5px;
  font-weight: 760;
  line-height: 1.4;
}
.benefits-photo + .benefits-statement {
  margin-top: 28px;
}

/* Unternehmen – Fotografie plus zurückhaltende Prozessüberlagerung */
.company-visual-photo {
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  background: #edf2f6;
}
.company-visual-photo .company-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.88) contrast(.99);
}
.company-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,27,44,.04) 0%, transparent 43%, rgba(13,27,44,.13) 100%),
    linear-gradient(180deg, transparent 52%, rgba(8,22,39,.22) 100%);
}
.company-connectors-photo {
  z-index: 3;
  opacity: .78;
}
.company-visual-photo .company-path-base {
  stroke: rgba(255,255,255,.60);
  stroke-width: 3;
}
.company-visual-photo .company-path-active {
  stroke-width: 3.2;
  filter: drop-shadow(0 2px 5px rgba(9,25,43,.18));
}
.company-photo-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(245px, calc(100% - 48px));
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 38px rgba(14,29,47,.14);
  backdrop-filter: blur(10px);
}
.company-photo-card-personal {
  left: 24px;
  top: 25px;
}
.company-photo-card-digital {
  right: 24px;
  bottom: 92px;
}
.company-photo-card .company-scene-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}
.company-photo-card .company-scene-icon svg {
  width: 28px;
  height: 28px;
}
.company-photo-card strong,
.company-photo-card small {
  display: block;
}
.company-photo-card strong {
  color: #253448;
  font-size: 14px;
  line-height: 1.25;
}
.company-photo-card small {
  margin-top: 4px;
  color: #718092;
  font-size: 11px;
  line-height: 1.38;
}
.company-photo-brand {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 17px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 14px 32px rgba(14,29,47,.14);
  backdrop-filter: blur(10px);
}
.company-photo-brand > img {
  width: 126px;
  height: auto;
  flex: 0 0 126px;
}
.company-photo-brand > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.company-photo-brand span {
  width: 31px;
  height: 2px;
  flex: 0 0 31px;
  background: linear-gradient(90deg,var(--red),var(--blue));
}
.company-photo-brand p {
  margin: 0;
  color: #526276;
  font-size: 11.5px;
  font-weight: 780;
  line-height: 1.4;
}

@media (max-width: 1050px) {
  .benefits-photo {
    max-width: 760px;
  }
  .company-visual-photo {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .benefits-photo {
    margin-top: 28px;
    border-radius: 20px;
  }
  .benefits-photo img {
    aspect-ratio: 1.48 / 1;
  }
  .benefits-photo figcaption {
    min-height: 52px;
  }

  .company-visual.company-visual-photo {
    position: relative;
    min-height: 560px;
    padding: 0;
    display: block;
  }
  .company-visual-photo .company-photo {
    object-position: 44% center;
  }
  .company-photo-overlay {
    background:
      linear-gradient(180deg, rgba(11,25,42,.02) 0%, rgba(11,25,42,.06) 48%, rgba(8,22,39,.34) 100%);
  }
  .company-visual-photo .company-connectors {
    display: block;
  }
  .company-photo-card {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    transform: none !important;
  }
  .company-photo-card-personal {
    top: 16px;
  }
  .company-photo-card-digital {
    bottom: 96px;
  }
  .company-photo-brand {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 11px 12px;
  }
  .company-photo-brand > img {
    width: 105px;
    flex-basis: 105px;
  }
  .company-photo-brand p {
    font-size: 10.5px;
  }
}

@media (max-width: 460px) {
  .company-visual.company-visual-photo {
    min-height: 590px;
  }
  .company-photo-card small {
    font-size: 10.5px;
  }
  .company-photo-brand > div span {
    display: none;
  }
}


/* =========================================================
   Startseite 0.17.2 – Bereich „Ihr Vorteil“ neu ausbalanciert
   ========================================================= */

/* Ziel:
   - linke Seite deutlich ruhiger
   - rechte Seite inhaltlich tragfähiger
   - große Überschrift nicht mehr gequetscht
   - Bild ohne zusätzliche Textfläche
   - rechte Vorteilskarten etwas tiefer gesetzt
*/

.benefits-section {
  padding: 122px 0 128px;
}

.benefits-header {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
}

.benefits-heading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, .72fr);
  gap: 24px 48px;
  align-items: end;
}

.benefits-header .benefits-lead {
  max-width: 420px;
  margin: 0 0 10px;
}

.benefits-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: start;
}

.benefits-media {
  min-width: 0;
}

.benefits-media-frame {
  overflow: hidden;
  min-height: 455px;
  border: 1px solid #dde4eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(17, 28, 43, 0.08);
}

.benefits-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.benefits-list-wrap {
  min-width: 0;
  padding-top: 26px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 22px;
}

.benefits-list .benefit-item {
  min-height: 200px;
}

@media (max-width: 1120px) {
  .benefits-header {
    margin-bottom: 34px;
  }

  .benefits-heading-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits-header .benefits-lead {
    max-width: 760px;
    margin: 0;
  }

  .benefits-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefits-media-frame {
    min-height: 390px;
  }

  .benefits-list-wrap {
    padding-top: 2px;
  }
}

@media (max-width: 700px) {
  .benefits-section {
    padding: 96px 0 102px;
  }

  .benefits-header {
    margin-bottom: 26px;
  }

  .benefits-media-frame {
    min-height: auto;
    border-radius: 24px;
  }

  .benefits-media-frame img {
    aspect-ratio: 4 / 3;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-list .benefit-item {
    min-height: auto;
  }
}


/* =========================================================
   Startseite 0.17.3 – „Ihr Vorteil“ final ausbalanciert
   ========================================================= */

.benefits-header {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.benefits-header h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(43px, 4vw, 62px);
  line-height: 1.08;
}

.benefits-header h2 span {
  color: #344255;
  font-weight: 620;
}

.benefits-body-balanced {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: stretch;
}

.benefits-left,
.benefits-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.benefits-left .benefits-lead {
  max-width: 650px;
  min-height: 96px;
  margin: 0 0 24px;
}

.benefits-right-spacer {
  flex: 0 0 120px;
}

.benefits-media-frame {
  flex: 1 1 auto;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #dde4eb;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(17,28,43,.08);
}

.benefits-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.benefits-right .benefits-list {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  border-top: 1px solid #d7dee6;
}

.benefits-right .benefit-item {
  min-height: 0;
  padding: 28px 0 30px;
}

.benefits-right .benefit-visual {
  margin-bottom: 14px;
}

.benefits-right .benefit-text {
  margin-top: 6px;
}

.benefits-right .benefit-text h3 {
  margin-bottom: 11px;
}

.benefits-statement-wide {
  max-width: none;
  width: min(720px, 100%);
  margin-top: 36px;
}

@media (max-width: 1120px) {
  .benefits-body-balanced {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefits-left .benefits-lead {
    min-height: 0;
    max-width: 800px;
  }

  .benefits-right-spacer {
    display: none;
  }

  .benefits-media-frame {
    min-height: 420px;
  }

  .benefits-right .benefits-list {
    grid-template-rows: auto;
  }
}

@media (max-width: 700px) {
  .benefits-header {
    margin-bottom: 26px;
  }

  .benefits-media-frame {
    min-height: 0;
    border-radius: 24px;
  }

  .benefits-media-frame img {
    aspect-ratio: 4 / 3;
  }

  .benefits-right .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefits-right .benefit-item {
    padding: 27px 0 30px;
  }

  .benefits-statement-wide {
    margin-top: 30px;
  }
}


/* =========================================================
   Startseite 0.17.4 – „Ihr Vorteil“ neu ausgerichtet
   ========================================================= */

.benefits-header {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.benefits-header h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(43px, 4vw, 62px);
  line-height: 1.08;
}

.benefits-header h2 span {
  color: #344255;
  font-weight: 620;
}

.benefits-body-aligned {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: stretch;
}

.benefits-left,
.benefits-right-aligned {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.benefits-left .benefits-lead {
  max-width: 650px;
  margin: 0 0 24px;
}

.benefits-media-frame-wide {
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid #dde4eb;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(17,28,43,.08);
}

.benefits-media-frame-wide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 5 / 4;
}

.benefits-right-aligned .benefits-list-aligned {
  flex: 1 1 auto;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  border-top: 1px solid #d7dee6;
  border-bottom: 1px solid #d7dee6;
}

.benefits-right-aligned .benefit-item {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 0 30px;
}

.benefits-right-aligned .benefit-item:nth-child(-n+2) {
  border-bottom: 1px solid #d7dee6;
}

.benefits-right-aligned .benefit-visual {
  margin-bottom: 14px;
}

.benefits-right-aligned .benefit-text {
  margin-top: 6px;
}

.benefits-right-aligned .benefit-text h3 {
  margin-bottom: 11px;
}

.benefits-statement-wide {
  max-width: none;
  width: min(720px, 100%);
  margin-top: 34px;
}

/* leichte Feinjustierung, damit linker Bildblock und rechte Vorteilsmatrix
   auf Desktop ungefähr gleich hoch wirken */
@media (min-width: 1121px) {
  .benefits-body-aligned {
    min-height: 0;
  }
}

@media (max-width: 1120px) {
  .benefits-body-aligned {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefits-left .benefits-lead {
    max-width: 800px;
  }

  .benefits-media-frame-wide img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .benefits-right-aligned .benefits-list-aligned {
    height: auto;
    grid-template-rows: auto;
  }
}

@media (max-width: 700px) {
  .benefits-header {
    margin-bottom: 26px;
  }

  .benefits-media-frame-wide {
    border-radius: 24px;
  }

  .benefits-media-frame-wide img {
    aspect-ratio: 4 / 3;
  }

  .benefits-right-aligned .benefits-list-aligned {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .benefits-right-aligned .benefit-item {
    padding: 27px 0 30px;
  }

  .benefits-right-aligned .benefit-item:nth-child(-n+2) {
    border-bottom: 0;
  }

  .benefits-right-aligned .benefit-item:not(:last-child) {
    border-bottom: 1px solid #d7dee6;
  }

  .benefits-statement-wide {
    margin-top: 30px;
  }
}


/* =========================================================
   Startseite 0.17.9 – Unternehmen, auf Basis 0.17.3 / 0.17.4
   ========================================================= */

/* Überschrift: gleiche Größen- und Farbwirkung wie in 0.17.3 */
.company-heading-v179 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.company-heading-v179 h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.07;
  white-space: nowrap;
}

.company-heading-v179 h2 span {
  color: #3b4a5d;
  font-weight: 620;
}

/* Unterhalb der Überschrift beginnen beide Seiten exakt auf einer Höhe */
.company-body-v179 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: stretch;
}

.company-copy-v179 {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Textgrößen exakt an die bisherige 0.17.3-Wirkung angelehnt */
.company-copy-v179 .company-lead {
  max-width: 700px;
  margin: 0;
  color: #27374a;
  font-size: 20px;
  line-height: 1.68;
  font-weight: 650;
}

.company-copy-v179 .company-text {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.76;
}

.company-copy-v179 .company-values {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

/* Rechte Seite: ausschließlich das Bild, keine Overlays oder Zusatzobjekte */
.company-image-v179 {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(18,28,44,.09);
  background: #f4f6f8;
}

.company-image-v179 img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center 43%;
}

/* Desktop: erste Überschriftszeile bleibt in einer Zeile */
@media (min-width: 1181px) {
  .company-heading-v179 h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .company-heading-v179 h2 {
    white-space: normal;
  }
}

@media (max-width: 1050px) {
  .company-body-v179 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .company-image-v179 {
    height: auto !important;
  }

  .company-image-v179 img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 700px) {
  .company-heading-v179 {
    margin-bottom: 26px;
  }

  .company-heading-v179 h2 {
    font-size: clamp(37px, 10.7vw, 50px);
  }

  .company-copy-v179 .company-lead {
    font-size: 18px;
  }

  .company-image-v179 {
    border-radius: 24px;
  }

  .company-image-v179 img {
    aspect-ratio: 4 / 3;
  }
}


/* =========================================================
   Startseite 0.17.11 – Bereich „Ihr Vorteil“ Bildupdate
   ========================================================= */

.benefits-media-frame-wide img {
  object-position: center center;
}


/* =========================================================
   Leistungen 0.18.0 – Bereich „Zusammenarbeit“
   Bild links / drei Schritte rechts, beide gleich hoch
   ========================================================= */

.services-collaboration-body {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(34px, 4.2vw, 62px);
  align-items: stretch;
  margin-top: 48px;
}

.services-collaboration-image {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e6eb;
  border-radius: 24px;
  background: #f6f8fa;
  box-shadow: 0 16px 34px rgba(20,31,47,.055);
}

.services-collaboration-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.collaboration-steps.collaboration-steps-stacked {
  height: 100%;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.collaboration-steps.collaboration-steps-stacked article {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Schriftgrößen, Farben und Icongrößen stammen unverändert
   aus den bestehenden .collaboration-* Regeln. */

@media (max-width: 980px) {
  .services-collaboration-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-collaboration-image {
    min-height: 0;
  }

  .services-collaboration-image img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .collaboration-steps.collaboration-steps-stacked {
    height: auto;
    grid-template-rows: auto;
  }
}

@media (max-width: 700px) {
  .services-collaboration-body {
    margin-top: 38px;
  }

  .services-collaboration-image {
    border-radius: 20px;
  }

  .services-collaboration-image img {
    aspect-ratio: 4 / 3;
  }
}


/* =========================================================
   Leistungen 0.18.2 – Bereich „Lohnbuchhaltung“
   Fristen-Board statt linearer Prozessgrafik
   ========================================================= */

.service-detail-payroll .service-detail-grid.service-detail-grid-reverse {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: start;
}

.service-detail-payroll .service-detail-copy {
  max-width: 720px;
}

.service-detail-payroll #payroll-title {
  max-width: 14.2ch;
}

.service-detail-payroll #payroll-title .payroll-headline-line {
  display: inline;
}

.payroll-board-visual {
  position: relative;
}

.payroll-board-shell {
  padding: 24px;
  border: 1px solid #dfe6ed;
  border-radius: 28px;
  background: linear-gradient(180deg, #fcfdff 0%, #f7f9fc 100%);
  box-shadow: 0 22px 48px rgba(20,31,47,.07);
}

.payroll-board-header {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.payroll-board-calendar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(176,8,18,.08);
  border-radius: 16px;
}

.payroll-board-calendar svg {
  width: 32px;
  height: 32px;
}

.payroll-board-intro small {
  display: block;
  margin-bottom: 5px;
  color: #8a97a7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.payroll-board-intro strong {
  display: block;
  color: #334457;
  font-size: 18px;
  line-height: 1.2;
}

.payroll-board-intro span {
  display: block;
  margin-top: 5px;
  color: #607082;
  font-size: 13px;
  line-height: 1.45;
}

.payroll-board-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 18px;
  padding: 8px 2px 0;
}

.payroll-board-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 2px;
  background: linear-gradient(90deg, rgba(51,68,87,.18), rgba(51,68,87,.4));
}

.payroll-board-week {
  position: relative;
  padding-top: 18px;
  text-align: center;
}

.payroll-board-week::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: #c8d0db;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(200,208,219,.65);
}

.payroll-board-week b {
  display: block;
  color: #425264;
  font-size: 12px;
}

.payroll-board-week span {
  display: block;
  margin-top: 3px;
  color: #7b8898;
  font-size: 11px;
  line-height: 1.35;
}

.payroll-board-week-active::before {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(176,8,18,.12);
}

.payroll-board-week-active b,
.payroll-board-week-active span {
  color: var(--red);
}

.payroll-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.payroll-board-card {
  padding: 16px 16px 15px;
  border: 1px solid #e0e6ee;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20,31,47,.035);
}

.payroll-board-card-accent {
  border-color: rgba(176,8,18,.22);
  box-shadow: 0 12px 24px rgba(176,8,18,.06);
}

.payroll-board-card-wide {
  grid-column: 1 / -1;
}

.payroll-board-card-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.payroll-board-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.payroll-board-icon svg {
  width: 24px;
  height: 24px;
}

.payroll-board-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.08);
}

.payroll-board-icon-red {
  color: var(--red);
  background: rgba(176,8,18,.08);
}

.payroll-board-card-head strong {
  display: block;
  color: #36475a;
  font-size: 15px;
  line-height: 1.2;
}

.payroll-board-card-head small {
  display: block;
  margin-top: 4px;
  color: #8a96a5;
  font-size: 11px;
}

.payroll-board-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.payroll-board-card li {
  position: relative;
  padding-left: 16px;
  color: #627286;
  font-size: 12px;
  line-height: 1.45;
}

.payroll-board-card li::before {
  content: "";
  position: absolute;
  top: .45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(24,119,210,.55);
}

.payroll-board-card-accent li::before {
  background: rgba(176,8,18,.7);
}

.payroll-board-footer {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e6ebf1;
}

.payroll-board-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #728093;
  font-size: 11px;
}

.payroll-board-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.payroll-board-legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.payroll-board-legend .is-blue {
  background: rgba(24,119,210,.65);
}

.payroll-board-legend .is-red {
  background: rgba(176,8,18,.72);
}

.payroll-board-next {
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  border-radius: 12px;
  background: rgba(176,8,18,.04);
  color: #56677a;
  font-size: 12px;
  line-height: 1.45;
}

.payroll-board-next strong {
  color: var(--red);
}

@media (max-width: 1180px) {
  .service-detail-payroll .service-detail-grid.service-detail-grid-reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 1120px) {
  .service-detail-payroll .service-detail-grid.service-detail-grid-reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-payroll #payroll-title {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .payroll-board-shell {
    padding: 20px;
  }

  .payroll-board-timeline {
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 14px;
  }

  .payroll-board-grid {
    grid-template-columns: 1fr;
  }

  .payroll-board-card-wide {
    grid-column: auto;
  }
}


/* =========================================================
   Leistungen 0.18.3 – Headline-Korrektur Lohnbuchhaltung
   ========================================================= */

@media (min-width: 1121px) {
  .service-detail-payroll .service-detail-grid.service-detail-grid-reverse {
    grid-template-columns: minmax(0, .70fr) minmax(0, 1.30fr);
    gap: clamp(32px, 3.4vw, 56px);
  }

  .service-detail-payroll .service-detail-copy {
    max-width: none;
  }

  .service-detail-payroll #payroll-title {
    max-width: none;
  }

  .service-detail-payroll #payroll-title .payroll-headline-primary {
    display: inline-block;
    white-space: nowrap;
  }

  .service-detail-payroll #payroll-title .payroll-headline-line {
    display: inline-block;
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .service-detail-payroll #payroll-title .payroll-headline-primary,
  .service-detail-payroll #payroll-title .payroll-headline-line {
    white-space: normal;
  }
}


/* =========================================================
   Leistungen 0.18.4 – Feinschliff Fristen-Board Lohnbuchhaltung
   ========================================================= */

@media (min-width: 1121px) {
  .service-detail-payroll .payroll-board-visual {
    align-self: start;
  }

  .service-detail-payroll .payroll-board-shell {
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .service-detail-payroll .payroll-board-header {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .service-detail-payroll .payroll-board-calendar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .service-detail-payroll .payroll-board-calendar svg {
    width: 27px;
    height: 27px;
  }

  .service-detail-payroll .payroll-board-intro small {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .service-detail-payroll .payroll-board-intro strong {
    font-size: 16px;
  }

  .service-detail-payroll .payroll-board-intro span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.38;
  }

  .service-detail-payroll .payroll-board-timeline {
    gap: 10px;
    margin-bottom: 14px;
    padding: 4px 2px 0;
  }

  .service-detail-payroll .payroll-board-line {
    top: 12px;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg, rgba(51,68,87,.16), rgba(51,68,87,.28));
  }

  .service-detail-payroll .payroll-board-week {
    padding-top: 14px;
    z-index: 1;
  }

  .service-detail-payroll .payroll-board-week::before {
    top: 6px;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(200,208,219,.55);
  }

  .service-detail-payroll .payroll-board-week-active::before {
    box-shadow: 0 0 0 2px rgba(176,8,18,.10);
  }

  .service-detail-payroll .payroll-board-week b {
    font-size: 11px;
  }

  .service-detail-payroll .payroll-board-week span {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.25;
  }

  .service-detail-payroll .payroll-board-grid {
    gap: 10px;
  }

  .service-detail-payroll .payroll-board-card {
    padding: 13px 13px 12px;
    border-radius: 18px;
  }

  .service-detail-payroll .payroll-board-card-head {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 8px;
  }

  .service-detail-payroll .payroll-board-card-head > div:last-child {
    min-width: 0;
  }

  .service-detail-payroll .payroll-board-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .service-detail-payroll .payroll-board-icon svg {
    width: 22px;
    height: 22px;
  }

  .service-detail-payroll .payroll-board-card-head strong {
    font-size: 13px;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .service-detail-payroll .payroll-board-card-head small {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.2;
  }

  .service-detail-payroll .payroll-board-card ul {
    gap: 5px;
  }

  .service-detail-payroll .payroll-board-card li {
    padding-left: 14px;
    font-size: 11px;
    line-height: 1.36;
  }

  .service-detail-payroll .payroll-board-card li::before {
    width: 6px;
    height: 6px;
  }

  .service-detail-payroll .payroll-board-footer {
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .service-detail-payroll .payroll-board-legend {
    gap: 12px;
    font-size: 10px;
  }

  .service-detail-payroll .payroll-board-next {
    padding: 10px 12px;
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-width: 1120px) {
  .service-detail-payroll .payroll-board-card-head > div:last-child {
    min-width: 0;
  }

  .service-detail-payroll .payroll-board-card-head strong {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}


/* =========================================================
   Leistungen 0.18.5 – Digitale Buchhaltungsprozesse
   ========================================================= */

.digital-deep-link {
  margin: 22px 0 0;
}

.digital-deep-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8fc7ff;
  font-weight: 760;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.digital-deep-link a:hover {
  color: #c7e5ff;
  transform: translateX(2px);
}

.digital-system-visual {
  min-height: 0;
  padding: 28px 28px 26px;
  overflow: hidden;
  border-color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top right, rgba(24,119,210,.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
}

.digital-system-stage {
  position: relative;
  display: grid;
  gap: 18px;
}

.digital-system-sources {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.digital-system-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.digital-source-card,
.digital-result-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.digital-result-card {
  background: linear-gradient(180deg, rgba(10,20,32,.12), rgba(255,255,255,.03));
}

.digital-node-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #f5f8fb;
  background: linear-gradient(135deg, rgba(176,8,18,.18), rgba(24,119,210,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.digital-result-card .digital-node-icon {
  background: linear-gradient(135deg, rgba(24,119,210,.18), rgba(176,8,18,.12));
}

.digital-node-icon svg {
  width: 26px;
  height: 26px;
}

.digital-node-copy {
  min-width: 0;
}

.digital-node-copy strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.digital-node-copy small {
  display: block;
  margin-top: 4px;
  color: #aebdcd;
  font-size: 11px;
  line-height: 1.4;
}

.digital-system-hub {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 8px 0;
}

.digital-system-connections {
  position: absolute;
  left: 50%;
  width: min(88%, 620px);
  pointer-events: none;
}

.digital-system-connections span {
  position: absolute;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(176,8,18,.85), rgba(24,119,210,.9));
  box-shadow: 0 0 0 1px rgba(255,255,255,.02), 0 0 14px rgba(24,119,210,.18);
  transform-origin: center center;
}

.digital-system-connections-top {
  top: 8px;
  height: 126px;
  transform: translateX(-50%);
}

.digital-system-connections-top .line-a { height: 132px; transform: translateX(-50%) rotate(-58deg); }
.digital-system-connections-top .line-b { height: 122px; transform: translateX(-50%) rotate(-29deg); }
.digital-system-connections-top .line-c { height: 114px; transform: translateX(-50%) rotate(0deg); }
.digital-system-connections-top .line-d { height: 122px; transform: translateX(-50%) rotate(29deg); }
.digital-system-connections-top .line-e { height: 132px; transform: translateX(-50%) rotate(58deg); }

.digital-system-core {
  position: relative;
  z-index: 2;
  width: min(290px, 76%);
  min-height: 170px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(161,211,255,.24);
  background: linear-gradient(180deg, rgba(248,252,255,.98), rgba(223,238,255,.95));
  box-shadow: 0 26px 42px rgba(0,8,30,.24);
}

.digital-system-core small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.digital-system-core strong {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.04;
}

.digital-system-core p {
  margin: 12px 0 0;
  color: #4c6684;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 620;
  text-align: center;
}

.digital-system-flow-note {
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  color: #dce9f5;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

.digital-system-connections-bottom {
  bottom: 8px;
  height: 122px;
  transform: translateX(-50%);
}

.digital-system-connections-bottom .line-f { top: -12px; height: 126px; transform: translateX(-50%) rotate(-38deg); }
.digital-system-connections-bottom .line-g { top: -12px; height: 118px; transform: translateX(-50%) rotate(0deg); }
.digital-system-connections-bottom .line-h { top: -12px; height: 126px; transform: translateX(-50%) rotate(38deg); }

@media (max-width: 1120px) {
  .digital-system-sources {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .digital-system-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .digital-system-hub {
    min-height: 250px;
  }

  .digital-system-connections-top {
    width: min(82%, 500px);
    height: 108px;
  }

  .digital-system-connections-top .line-a { height: 112px; }
  .digital-system-connections-top .line-b { height: 104px; }
  .digital-system-connections-top .line-c { height: 98px; }
  .digital-system-connections-top .line-d { height: 104px; }
  .digital-system-connections-top .line-e { height: 112px; }

  .digital-system-connections-bottom {
    width: min(76%, 420px);
    height: 108px;
  }

  .digital-system-connections-bottom .line-f,
  .digital-system-connections-bottom .line-h { height: 110px; }

  .digital-system-connections-bottom .line-g { height: 102px; }
}

@media (max-width: 820px) {
  .digital-system-visual {
    padding: 22px 20px 22px;
  }

  .digital-system-sources,
  .digital-system-results {
    grid-template-columns: 1fr;
  }

  .digital-source-card,
  .digital-result-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .digital-node-icon {
    width: 44px;
    height: 44px;
  }

  .digital-system-hub {
    min-height: 210px;
    padding: 2px 0;
  }

  .digital-system-connections {
    display: none;
  }

  .digital-system-flow-note {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .digital-system-core {
    width: min(320px, 100%);
  }

  .digital-system-core strong {
    font-size: 24px;
  }
}


/* =========================================================
   Leistungen 0.18.6 – Digitale Buchhaltungsprozesse Bildupdate
   ========================================================= */

.digital-innovation-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
  padding: 26px;
}

.digital-innovation-frame {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at top right, rgba(24,119,210,.20), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 22px 48px rgba(0, 8, 30, .26);
}

.digital-innovation-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.digital-innovation-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .digital-innovation-frame img {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .digital-innovation-visual {
    padding: 20px;
  }

  .digital-innovation-frame {
    border-radius: 22px;
  }

  .digital-innovation-frame img {
    min-height: 280px;
  }
}


/* =========================================================
   Leistungen 0.18.7 – letzte Detailkorrekturen
   Hero-Sprunglinks + Ausrichtung „Unser Ansatz“
   ========================================================= */

/* Die drei Hero-Leistungsbereiche sind nun als komplette Karten klickbar. */
.services-spectrum .spectrum-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.services-spectrum .spectrum-card-link:focus-visible {
  outline: 3px solid rgba(24,119,210,.28);
  outline-offset: 3px;
}

/* Der rechte Textblock beginnt optisch auf Höhe der Headline,
   nicht bereits auf Höhe der Bereichskennung „UNSER ANSATZ“. */
@media (min-width: 901px) {
  .services-page-overview-copy {
    padding-top: 38px;
  }
}

@media (max-width: 900px) {
  .services-page-overview-copy {
    padding-top: 0;
  }
}

/* =========================================================
   Unterseite Arbeitsweise – Verfeinerung 0.19.0
   Hero und Prozessdarstellung hochwertiger ausgearbeitet
   ========================================================= */
.work-page-title-nowrap {
  display: inline-block;
  white-space: nowrap;
}
.work-hero-visual {
  min-height: 0;
  padding: 30px;
  border: 1px solid #d9e3eb;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 18%, rgba(176,8,18,.07), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(24,119,210,.07), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,254,.98) 100%);
  box-shadow: 0 32px 70px rgba(16,28,44,.10);
}
.work-hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  min-height: 450px;
}
.work-hero-column {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.work-hero-column-sources {
  padding-right: 6px;
}
.work-hero-column-results {
  padding-left: 6px;
}
.work-hero-chip,
.work-hero-result-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid #e2e8ee;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 32px rgba(16,28,44,.05);
}
.work-hero-chip small,
.work-hero-result-card small {
  display: block;
  color: #8b97a6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.work-hero-chip strong,
.work-hero-result-card strong {
  display: block;
  margin-top: 4px;
  color: #334257;
  font-size: 19px;
  line-height: 1.1;
}
.work-hero-chip-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(176,8,18,.95), rgba(215,88,94,.62));
  box-shadow: 0 0 0 5px rgba(176,8,18,.08);
}
.work-hero-core-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.work-hero-core-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.work-hero-core-ring-a {
  width: 336px;
  height: 336px;
  border: 1px solid rgba(176,8,18,.12);
  background: radial-gradient(circle, rgba(176,8,18,.04), rgba(255,255,255,0) 72%);
}
.work-hero-core-ring-b {
  width: 258px;
  height: 258px;
  border: 1px dashed rgba(24,119,210,.22);
}
.work-hero-core {
  position: relative;
  z-index: 2;
  width: min(320px, 92%);
  min-height: 184px;
  margin: 0 auto;
  border: 1px solid #cfe1f2;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 22px 44px rgba(24,119,210,.12);
}
.work-hero-core-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.work-hero-core-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24,119,210,.12);
  background: rgba(255,255,255,.88);
  color: #4a617c;
  font-size: 11px;
  font-weight: 760;
}
.work-hero-result-card {
  justify-content: flex-start;
}
.work-hero-result-card .work-hero-result-icon {
  margin: 0;
  flex: 0 0 42px;
}
.work-hero-connector {
  position: absolute;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(176,8,18,.45), rgba(24,119,210,.55));
  transform: translateY(-50%);
  z-index: 1;
}
.work-hero-connector-left {
  left: 17%;
  width: 23%;
}
.work-hero-connector-right {
  right: 17%;
  width: 23%;
}
.work-hero-connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #1877d2;
  box-shadow: 0 0 0 6px rgba(24,119,210,.08);
}
.work-hero-connector-left::after {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(176,8,18,.08);
}
.work-hero-pulse {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  z-index: 3;
}
.work-hero-pulse-a {
  left: calc(17% + 6%);
  border: 3px solid var(--red);
  animation: workHeroPulseLeft 2.8s ease-in-out infinite;
}
.work-hero-pulse-b {
  right: calc(17% + 6%);
  border: 3px solid #1877d2;
  animation: workHeroPulseRight 2.8s ease-in-out 1.2s infinite;
}
@keyframes workHeroPulseLeft {
  0% { transform: translateX(0); opacity: .2; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateX(120px); opacity: .2; }
}
@keyframes workHeroPulseRight {
  0% { transform: translateX(0); opacity: .2; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateX(-120px); opacity: .2; }
}
.work-hero-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.work-hero-footer span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 15px;
  border: 1px solid #e2e8ee;
  background: rgba(255,255,255,.82);
  color: #4c5f74;
  font-size: 12px;
  font-weight: 760;
}

/* Premium five-step process */
.work-process-board-premium {
  position: relative;
  margin-top: 52px;
  padding: 32px 24px 20px;
  border: 1px solid #e1e7ee;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 14%, rgba(176,8,18,.05), transparent 26%),
    radial-gradient(circle at 94% 82%, rgba(24,119,210,.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 54px rgba(16,28,44,.06);
  overflow: hidden;
}
.work-process-board-premium .work-process-path {
  position: absolute;
  inset: 58px 18px 10px 18px;
  pointer-events: none;
}
.work-process-board-premium .work-process-path svg {
  width: 100%;
  height: 100%;
}
.work-process-path-base,
.work-process-path-fill {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.work-process-path-base {
  stroke: #d9e2ea;
  stroke-width: 7;
}
.work-process-path-fill {
  stroke: url(#workProcessGradient);
  stroke-width: 8;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  filter: drop-shadow(0 0 10px rgba(176,8,18,.12));
  transition: stroke-dashoffset 1.8s cubic-bezier(.22,.61,.36,1);
}
.work-process-board-premium.is-active .work-process-path-fill {
  stroke-dashoffset: 0;
}
.work-process-board-premium .work-process-steps {
  min-height: 430px;
  gap: 18px;
  align-items: stretch;
}
.work-process-board-premium .work-process-step {
  position: relative;
  min-height: 430px;
  padding-top: 0;
}
.work-process-board-premium .work-process-step-top .work-process-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.work-process-board-premium .work-process-step-bottom .work-process-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.work-process-board-premium .work-process-step::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(176,8,18,.26), rgba(24,119,210,.26));
}
.work-process-board-premium .work-process-step-top::after {
  top: 178px;
  height: 34px;
}
.work-process-board-premium .work-process-step-bottom::after {
  top: 222px;
  height: 34px;
}
.work-process-board-premium .work-process-node {
  top: 212px;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border: 5px solid #f9fbfd;
  background: #cfd8e1;
}
.work-process-board-premium .work-process-card {
  min-height: 174px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.97);
}
.work-process-mini {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  border: 1px solid #edf1f5;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f8fb 100%);
}
.work-process-mini span,
.work-process-mini i {
  display: block;
}
.work-process-mini-import .work-mini-file {
  width: 16px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(176,8,18,.18);
  background: linear-gradient(180deg, rgba(176,8,18,.10), rgba(176,8,18,.03));
}
.work-process-mini-import .work-mini-arrow {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(176,8,18,.7), rgba(24,119,210,.65));
  position: relative;
}
.work-process-mini-import .work-mini-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  border-left: 8px solid #1877d2;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.work-process-mini-structure {
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 7px;
}
.work-process-mini-structure .work-mini-line {
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: rgba(176,8,18,.22);
}
.work-process-mini-structure .work-mini-line-short {
  width: 44px;
  background: rgba(24,119,210,.24);
}
.work-process-mini-structure .work-mini-tag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(176,8,18,.9), rgba(24,119,210,.75));
}
.work-process-mini-booking {
  gap: 6px;
}
.work-process-mini-booking .work-mini-ledger {
  width: 18px;
  height: 28px;
  border-radius: 8px;
  background: rgba(176,8,18,.10);
  border: 1px solid rgba(176,8,18,.16);
  box-shadow: inset 0 10px 0 rgba(255,255,255,.7);
}
.work-process-mini-booking .work-mini-ledger-wide {
  width: 28px;
  height: 34px;
  background: rgba(24,119,210,.12);
  border-color: rgba(24,119,210,.18);
}
.work-process-mini-match .work-mini-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(176,8,18,.14);
  border: 1px solid rgba(176,8,18,.22);
}
.work-process-mini-match .work-mini-circle-blue {
  background: rgba(24,119,210,.14);
  border-color: rgba(24,119,210,.22);
}
.work-process-mini-match .work-mini-link {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(176,8,18,.8), rgba(24,119,210,.8));
  position: relative;
}
.work-process-mini-match .work-mini-link::before,
.work-process-mini-match .work-mini-link::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(24,119,210,.7);
}
.work-process-mini-match .work-mini-link::before { left: -2px; }
.work-process-mini-match .work-mini-link::after { right: -2px; }
.work-process-mini-insight {
  align-items: end;
  gap: 7px;
  padding-bottom: 14px;
}
.work-process-mini-insight .work-mini-bar {
  width: 16px;
  height: 18px;
  border-radius: 7px 7px 4px 4px;
  background: rgba(176,8,18,.18);
}
.work-process-mini-insight .work-mini-bar-mid {
  height: 30px;
  background: rgba(215,88,94,.24);
}
.work-process-mini-insight .work-mini-bar-high {
  height: 42px;
  background: rgba(24,119,210,.20);
}
.work-process-board-premium .work-process-card small {
  margin-top: 16px;
}
.work-process-board-premium .work-process-card h3 {
  font-size: 21px;
}
.work-process-board-premium .work-process-card p {
  font-size: 13px;
  line-height: 1.64;
}
.work-process-board-premium .work-process-step.is-active .work-process-node {
  transform: scale(1.16);
}
.work-process-board-premium .work-process-step.is-active .work-process-card {
  transform: translateY(-4px);
}
.work-process-board-premium .work-process-step-bottom.is-active .work-process-card {
  transform: translateY(4px);
}

@media (max-width: 1240px) {
  .work-hero-stage {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.08fr) minmax(0, .86fr);
    gap: 18px;
  }
  .work-hero-chip strong,
  .work-hero-result-card strong {
    font-size: 17px;
  }
  .work-process-board-premium .work-process-card h3 {
    font-size: 19px;
  }
}
@media (max-width: 1180px) {
  .work-hero-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }
  .work-hero-column-sources,
  .work-hero-column-results {
    grid-template-columns: repeat(2, minmax(0,1fr));
    padding: 0;
  }
  .work-hero-column-results {
    order: 3;
  }
  .work-hero-core-wrap {
    order: 2;
    padding: 16px 0 4px;
  }
  .work-hero-connector,
  .work-hero-pulse {
    display: none;
  }
  .work-process-board-premium .work-process-steps {
    min-height: 500px;
  }
  .work-process-board-premium .work-process-card {
    min-height: 196px;
  }
}
@media (max-width: 980px) {
  .work-page-title-nowrap {
    white-space: normal;
  }
  .work-process-board-premium {
    padding: 24px 18px 18px;
  }
  .work-process-board-premium .work-process-path {
    display: none;
  }
  .work-process-board-premium .work-process-steps {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .work-process-board-premium .work-process-step,
  .work-process-board-premium .work-process-step-bottom,
  .work-process-board-premium .work-process-step-top {
    min-height: 0;
    padding-left: 22px;
  }
  .work-process-board-premium .work-process-step::after {
    left: 10px;
    top: 0;
    bottom: 0;
    height: auto;
    margin-left: 0;
  }
  .work-process-board-premium .work-process-card,
  .work-process-board-premium .work-process-step-top .work-process-card,
  .work-process-board-premium .work-process-step-bottom .work-process-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-height: 0;
  }
  .work-process-board-premium .work-process-node {
    top: 104px;
    left: 0;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .work-hero-visual {
    padding: 18px;
    border-radius: 24px;
  }
  .work-hero-column-sources,
  .work-hero-column-results,
  .work-hero-footer {
    grid-template-columns: 1fr;
  }
  .work-hero-core-ring-a {
    width: 260px;
    height: 260px;
  }
  .work-hero-core-ring-b {
    width: 200px;
    height: 200px;
  }
  .work-hero-chip,
  .work-hero-result-card {
    min-height: 74px;
    padding: 14px 15px;
  }
  .work-hero-chip strong,
  .work-hero-result-card strong {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-hero-pulse-a,
  .work-hero-pulse-b {
    animation-duration: 4.2s;
  }
  .work-process-path-fill {
    transition-duration: .3s;
  }
}


/* =========================================================
   Arbeitsweise 0.19.3 – hochwertige Illustrationen
   Bereich „Unser Grundprinzip“
   ========================================================= */

.work-principle-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #e7ebf0;
  border-radius: 20px;
  background: #fbfcfe;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.work-principle-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-principle h3 {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .work-principle-visual {
    max-height: 330px;
  }
}


/* =========================================================
   Unterseite FIBU AI – Update 0.20.2 Hero Visual
   ========================================================= */
.fai-hero-stage {
  position: relative;
  padding-top: clamp(86px, 8vw, 126px);
}
.fai-hero-visual-card {
  position: relative;
  
  width: 110%;
  left: -65px;
  top: 0px;
    
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 64px rgba(0,10,22,.28);
  overflow: hidden;
}
.fai-hero-visual-card::before,
.fai-hero-visual-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fai-hero-visual-card::before {
  width: 300px;
  height: 300px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(213,83,90,.24), transparent 70%);
}
.fai-hero-visual-card::after {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(57,162,255,.28), transparent 70%);
}
.fai-hero-visual-frame {
  position: relative;
  z-index: 1;

  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 48px rgba(0,8,20,.26);
}


.fai-hero-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fai-hero-visual-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.fai-hero-visual-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(7,17,29,.52);
  backdrop-filter: blur(10px);
  color: #f3f7fb;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  box-shadow: 0 14px 26px rgba(0,8,20,.18);
}
.fai-hero-visual-meta-item::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d5535a 0%, #53bcff 100%);
  box-shadow: 0 0 10px rgba(83,188,255,.55);
}
@media (max-width: 1200px) {
  .fai-hero-stage {
    padding-top: 58px;
  }
  .fai-hero-visual-frame {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 960px) {
  .fai-title-line-main {
    white-space: normal;
  }
  .fai-hero-stage {
    padding-top: 24px;
  }
  .fai-hero-visual-card {
    padding: 16px;
  }
  .fai-hero-visual-frame {
    aspect-ratio: 16 / 10;
  }
  .fai-hero-visual-meta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .fai-hero-visual-card {
    padding: 16px;
    border-radius: 28px;
  }
  .fai-hero-visual-frame {
    min-height: 300px;
    aspect-ratio: auto;
    border-radius: 20px;
  }
  .fai-hero-visual-meta {
    gap: 10px;
    margin-top: 14px;
  }
  .fai-hero-visual-meta-item {
    min-height: 54px;
    font-size: 11px;
  }
}



/* KPI figure integration (Version 0.20.6) */
.fai-kpi-stage {
  margin-top: 48px;
}
.fai-kpi-figure-frame {
  border: 1px solid #e0e6ec;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 31, 47, .055);
  overflow: hidden;
}
.fai-kpi-figure-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .fai-kpi-stage {
    margin-top: 40px;
  }
  .fai-kpi-figure-frame {
    border-radius: 22px;
  }
}

/* --- Unternehmen Seite: ruhiger Corporate-Feinschliff (v0.21.0) --- */
.company-page-hero-grid {
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(48px, 6.5vw, 94px);
}
.company-page-stage {
  min-height: 0;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  box-shadow: 0 20px 44px rgba(20,31,47,.075);
}
.company-page-hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f6f8fa;
}
.company-page-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.company-page-stage-caption {
  position: static;
  margin: 16px 4px 2px;
}

.company-page-values-grid {
  gap: 20px;
}
.company-page-value {
  min-height: 270px;
  padding: 28px 26px;
  border-color: #e5eaf0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20,31,47,.035);
}
.company-page-value h3 {
  font-size: 22px;
}

.company-page-balance {
  overflow: hidden;
  padding: 96px 0 100px;
  color: inherit;
  background: linear-gradient(180deg,#ffffff 0%,#f7f9fb 100%);
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}
.company-page-balance-glow {
  width: 520px;
  height: 520px;
  right: -220px;
  top: -180px;
  background: radial-gradient(circle,rgba(24,119,210,.08),transparent 72%);
}
.company-page-balance-copy h2 {
  color: #253548;
}
.company-page-balance-copy p {
  color: #68778a;
}
.company-page-balance-copy .button.button-ai {
  border-color: rgba(24,119,210,.16);
  color: #1877d2;
  background: rgba(24,119,210,.05);
}
.company-page-balance-copy .button.button-ai:hover {
  background: rgba(24,119,210,.1);
}
.company-page-balance-visual {
  align-self: center;
  padding: 14px;
  border: 1px solid #dfe6ed;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(20,31,47,.055);
}
.company-page-balance-visual img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.company-page-clients {
  padding: 108px 0 112px;
  background: #fff;
}
.company-page-clients-layout {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}
.company-page-clients-visual {
  padding: 18px;
  border: 1px solid #dfe6ed;
  border-radius: 30px;
  background: #fbfcfd;
  box-shadow: 0 18px 40px rgba(20,31,47,.05);
}
.company-page-clients-visual img {
  display: block;
  width: 100%;
  border-radius: 22px;
}
.company-page-clients-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px,4.2vw,62px);
  line-height: 1.07;
}
.company-page-clients-copy p:last-child {
  max-width: 700px;
  margin: 0;
  color: #667589;
  font-size: 18px;
  line-height: 1.72;
}

.company-page-person-card small {
  letter-spacing: .1em;
}

.company-page-cta {
  padding: 82px 0 88px;
  color: #253548;
  background: linear-gradient(180deg,#f7f9fb 0%, #ffffff 100%);
  border-top: 1px solid #edf0f3;
}
.company-page-cta .eyebrow {
  color: var(--red);
}
.company-page-cta h2 {
  color: #253548;
}
.company-page-cta p:last-child {
  color: #6c7b8d;
}

@media (max-width: 1180px) {
  .company-page-clients-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .company-page-stage {
    min-height: 0;
    padding: 16px;
  }
  .company-page-balance,
  .company-page-clients {
    padding: 84px 0;
  }
  .company-page-balance-visual,
  .company-page-clients-visual {
    padding: 12px;
    border-radius: 22px;
  }
  .company-page-hero-visual,
  .company-page-balance-visual img,
  .company-page-clients-visual img {
    border-radius: 16px;
  }
}

/* Unternehmen – Wofür wir stehen (Version 0.20.20) */
.company-page-values {
  padding: 110px 0 116px;
  background: #ffffff;
}
.company-page-values-grid {
  gap: 22px;
  margin-top: 50px;
}
.company-page-value {
  position: relative;
  min-height: 254px;
  padding: 30px 28px 28px;
  overflow: hidden;
  border: 1px solid #e3e8ed;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(20,31,47,.028);
}
.company-page-value::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 2px;
  background: rgba(176,8,18,.72);
}
.company-page-value:nth-child(3)::before {
  background: rgba(24,119,210,.72);
}
.company-page-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #a40b14;
  background: rgba(176,8,18,.045);
  border: 1px solid rgba(176,8,18,.08);
}
.company-page-value-icon-blue {
  color: #176fbd;
  background: rgba(24,119,210,.05);
  border-color: rgba(24,119,210,.09);
}
.company-page-value-icon svg {
  width: 30px;
  height: 30px;
}
.company-page-value h3 {
  margin: 24px 0 11px;
  color: #2b3a4c;
  font-size: 22px;
  line-height: 1.2;
}
.company-page-value p {
  color: #6f7d8e;
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .company-page-values-grid {
    gap: 16px;
  }
  .company-page-value {
    min-height: 0;
  }
}

/* Unternehmen – Persönlicher Kontakt: ruhiger Feinschliff v0.20.23 */
.company-page-contact-person {
  padding: 100px 0 104px;
  background: linear-gradient(180deg, #f7f9fb 0%, #f4f7f9 100%);
  border-top: 1px solid #edf0f3;
}
.company-page-contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 410px);
  gap: clamp(56px, 7vw, 96px);
}
.company-page-contact-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
}
.company-page-contact-copy p {
  max-width: 700px;
}
.company-page-person-card {
  position: relative;
  min-width: 0;
  gap: 22px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid #e1e7ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20,31,47,.045);
}
.company-page-person-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--red);
}
.company-page-person-icon {
  width: 70px;
  height: 70px;
  flex-basis: 70px;
  border: 1px solid rgba(176,8,18,.08);
  border-radius: 19px;
  color: var(--red);
  background: rgba(176,8,18,.055);
}
.company-page-person-icon svg {
  width: 39px;
  height: 39px;
}
.company-page-person-card small {
  color: #8b97a5;
  font-size: 9px;
  letter-spacing: .12em;
}
.company-page-person-card strong {
  margin-top: 7px;
  color: #2e3e51;
  font-size: 23px;
  line-height: 1.18;
}
.company-page-person-card a {
  color: #5f6e80;
  font-size: 14px;
  font-weight: 650;
}
.company-page-person-card a:first-of-type {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid #edf0f3;
}
.company-page-person-card a + a {
  margin-top: 7px;
}

@media (max-width: 900px) {
  .company-page-contact-grid {
    grid-template-columns: 1fr;
  }
  .company-page-person-card {
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .company-page-contact-person {
    padding: 82px 0 86px;
  }
  .company-page-person-card {
    padding: 24px 24px 24px 27px;
  }
}

/* Unternehmen – Abschluss CTA: ruhiger Gesprächsabschluss v0.20.24 */
.company-page-cta {
  position: relative;
  padding: 96px 0 102px;
  color: #253548;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  border-top: 1px solid #e9edf1;
}
.company-page-cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(54px, 7vw, 92px);
  align-items: center;
}
.company-page-cta-inner > div {
  position: relative;
  padding-left: 26px;
}
.company-page-cta-inner > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: var(--red);
}
.company-page-cta .eyebrow {
  margin-bottom: 0;
  color: var(--red);
}
.company-page-cta h2 {
  max-width: 800px;
  margin: 11px 0 16px;
  color: #253548;
}
.company-page-cta p:last-child {
  max-width: 720px;
  color: #68778a;
  line-height: 1.72;
}
.company-page-cta .button-primary {
  min-width: 222px;
  justify-content: center;
  box-shadow: 0 9px 22px rgba(176,8,18,.13);
}

@media (max-width: 900px) {
  .company-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .company-page-cta .button-primary {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .company-page-cta {
    padding: 80px 0 84px;
  }
  .company-page-cta-inner > div {
    padding-left: 20px;
  }
  .company-page-cta .button-primary {
    width: 100%;
  }
}

/* --- Kontaktseite: ruhiger, direkter Abschluss (v0.20.25) --- */
.page-contact .contact-page-hero-card {
  padding: 28px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(20,31,47,.075);
}
.page-contact .contact-page-hero-brand {
  padding-bottom: 22px;
}
.page-contact .contact-page-hero-person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 22px;
  border-bottom: 1px solid #e5eaf0;
}
.page-contact .contact-page-hero-person small,
.page-contact .contact-page-hero-contact-row small {
  display: block;
  color: #8b98a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
}
.page-contact .contact-page-hero-person strong {
  display: block;
  margin-top: 5px;
  color: #2f3f52;
  font-size: 23px;
  line-height: 1.2;
}
.page-contact .contact-page-hero-person > div > span {
  display: block;
  margin-top: 5px;
  color: #778495;
  font-size: 13px;
}
.page-contact .contact-page-hero-contact-list {
  display: grid;
  margin-top: 6px;
}
.page-contact .contact-page-hero-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 14px 4px;
  border-bottom: 1px solid #edf1f4;
}
.page-contact .contact-page-hero-contact-row:last-child {
  border-bottom: 0;
}
.page-contact a.contact-page-hero-contact-row:hover strong {
  color: var(--red);
}
.page-contact .contact-page-hero-contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--red);
  background: rgba(176,8,18,.06);
}
.page-contact .contact-page-hero-contact-icon-blue {
  color: #1877d2;
  background: rgba(24,119,210,.07);
}
.page-contact .contact-page-hero-contact-icon svg {
  width: 27px;
  height: 27px;
}
.page-contact .contact-page-hero-contact-row strong {
  display: block;
  margin-top: 4px;
  color: #344457;
  font-size: 15px;
  line-height: 1.45;
}

/* Standort / deutschlandweite Zusammenarbeit */
.page-contact .contact-page-info {
  padding: 104px 0 108px;
  color: inherit;
  background:
    radial-gradient(circle at 90% 18%, rgba(24,119,210,.055), transparent 26%),
    linear-gradient(180deg,#ffffff 0%,#f6f8fa 100%);
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}
.page-contact .contact-page-info-glow {
  display: none;
}
.page-contact .contact-page-info-grid {
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(54px,6.2vw,92px);
}
.page-contact .contact-page-info-copy h2 {
  color: #253548;
}
.page-contact .contact-page-info-copy p {
  color: #68778a;
}
.page-contact .contact-page-info-card {
  border: 1px solid #dfe6ed;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,31,47,.06);
}
.page-contact .contact-page-info-row {
  min-height: 112px;
  padding: 21px 24px;
}

/* Themen bewusst kompakter halten */
.page-contact .contact-page-topics {
  padding: 92px 0 96px;
}
.page-contact .contact-page-topic-grid {
  gap: 16px;
  margin-top: 38px;
}
.page-contact .contact-page-topic-card {
  min-height: 220px;
  padding: 23px 22px 46px;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20,31,47,.035);
}
.page-contact .contact-page-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(20,31,47,.055);
}
.page-contact .contact-page-topic-card strong {
  margin-top: 10px;
  font-size: 20px;
}
.page-contact .contact-page-topic-card p {
  margin-top: 10px;
}
.page-contact .contact-page-topic-card i {
  left: 22px;
  bottom: 18px;
}

/* Ruhiger heller Abschluss */
.page-contact .contact-page-final {
  position: relative;
  padding: 86px 0 92px;
  color: #253548;
  background: linear-gradient(180deg,#f7f9fb 0%,#ffffff 100%);
  border-top: 1px solid #edf0f3;
}
.page-contact .contact-page-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,var(--red),rgba(176,8,18,.12) 62%,transparent);
}
.page-contact .contact-page-final .eyebrow {
  color: var(--red);
}
.page-contact .contact-page-final h2 {
  color: #253548;
}
.page-contact .contact-page-final p:last-child {
  color: #6c7b8d;
}
.page-contact .contact-page-final-phone {
  color: #344457;
  border-color: #dce3ea;
  background: #fff;
}
.page-contact .contact-page-final-phone:hover {
  color: var(--red);
  border-color: rgba(176,8,18,.24);
  background: #fff;
}

@media (max-width: 700px) {
  .page-contact .contact-page-hero-card {
    padding: 22px 18px 18px;
  }
  .page-contact .contact-page-hero-person {
    padding: 20px 0;
  }
  .page-contact .contact-page-info,
  .page-contact .contact-page-topics {
    padding: 82px 0;
  }
}


/* Globaler Leistungs-/Rechtshinweis im Footer – v0.20.26 */
.footer-service-note {
  display: block !important;
  padding-top: 0;
  padding-bottom: 18px;
}
.footer-service-note p {
  margin: 0 !important;
  color: #748190 !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}
@media (max-width: 700px) {
  .footer-service-note {
    padding-bottom: 16px;
  }
}
