/* Inter self-hosted (woff2 lokal) statt Google Fonts: kein externer Request beim
   Seitenaufruf (DSGVO/keine US-Übertragung) und schnellerer, render-blocking-freier
   Font-Load. Variable Font, deckt Gewichte 100-900 ab. Dateien: public/assets/fonts/. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #102033;
  --muted: #5e6b78;
  --line: #dfe7ec;
  --paper: #ffffff;
  --cloud: #f4f8fb;
  --blue: #007fbe;
  --blue-dark: #053f73;
  --cyan: #00a7d8;
  --green: #38a169;
  --amber: #f4a51c;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.16);
  --shadow-soft: 0 18px 48px rgba(16, 32, 51, 0.08);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden würde position: sticky auf Kindelementen brechen
     (impliziertes overflow-y: auto erzeugt einen Scroll-Container).
     clip verhindert horizontales Scrollen, ohne Sticky zu zerstören. */
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
}

/* Mobile-Menü offen → Body-Scroll-Lock (nur Y; die overflow-x: clip oben
   bleibt intakt). Verhindert dass der Content unter dem Overlay mitscrollt. */
html.nav-open,
html.nav-open body {
  overflow-y: hidden;
}

/* .mobile-nav-extras nur im Mobile-Overlay sichtbar. Default aus.
   Die display:flex-Regel im @media (max-width: 1120px)-Block gewinnt dort. */
.mobile-nav-extras {
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.webinar-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 41px;
  padding: 10px clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(0, 127, 190, 0.98), rgba(0, 167, 216, 0.96) 46%, rgba(56, 161, 105, 0.98));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(0, 96, 145, 0.16);
}

.webinar-announcement:hover {
  color: #ffffff;
}

.webinar-announcement__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: #c8f2ff;
  box-shadow: 0 0 0 4px rgba(200, 242, 255, 0.16);
}

.webinar-announcement__cta {
  margin-left: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
}

.site-header {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px max(24px, calc((100vw - 1480px) / 2));
  border-bottom: 1px solid rgba(223, 231, 236, 0.84);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.04);
}

/* Wenn das Mobile-Overlay-Menü offen ist, muss backdrop-filter vom Header
   weg — sonst wird er zum Containing-Block für die eigentlich viewport-
   relative `.main-nav position: fixed` und das Overlay kollabiert auf
   Header-Restraum. Optisch verlustfrei, weil das Panel den Content dahinter
   ohnehin deckt. */
.site-header.nav-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand img {
  width: 118px;
  height: auto;
  transition: transform 220ms ease;
}

.brand {
  min-width: 0;
  flex-shrink: 1;
}

.brand:hover img {
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: #2d4053;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-direct-link[aria-current="page"] {
  color: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-size: 0.95rem;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.12);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #0a1726;
}

.header-end {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 34px;
  padding: 3px;
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 999px;
  background: #f4f9fc;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
}

.language-switcher a[aria-current="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.08);
}

.language-switcher span {
  color: #8a98a6;
  cursor: not-allowed;
}

/* Burger-Button: nur mobil sichtbar */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 167, 216, 0.32), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(0, 127, 190, 0.22), transparent 36%),
    linear-gradient(135deg, #071d30 0%, #0a466f 55%, #0878a8 100%);
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(380px, 1.07fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(780px, calc(100svh - 74px));
  padding: clamp(50px, 7vw, 86px) clamp(20px, 5vw, 72px) clamp(58px, 7vw, 90px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber));
  transform-origin: left center;
  animation: brandLine 1200ms ease-out both;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #91e6ff;
}

p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* Globale Regel: KEINE automatische Silbentrennung in Headlines.
     Auto-Hyphenation lieferte hässliche Brüche wie "Lager-prozesse" /
     "füh-renden". Editoren steuern Umbrüche bei Bedarf gezielt mit
     `&shy;` (Soft-Hyphen) im Quelltext. */
  hyphens: manual;
  -webkit-hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 4.75vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.section-dark p,
.section-dark .hero-copy {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(56, 161, 105, 0.28);
}

.button-primary:hover {
  background: #2d8f5a;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-light {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue-dark);
}

.button-light:hover {
  border-color: rgba(0, 127, 190, 0.42);
  background: #f3faff;
}

.cta-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: min(100%, 760px);
  margin-top: 32px;
}

.proof-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-customer-proof {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.hero-customer-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-customer-proof div {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 10px;
  align-items: center;
}

.hero-customer-proof img {
  width: 100%;
  height: 46px;
  padding: 8px;
  border-radius: 7px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.hero-visual {
  min-width: 0;
  animation: heroVisualIn 760ms ease 180ms both;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-system {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-system img {
  position: absolute;
  right: clamp(20px, 7vw, 96px);
  top: clamp(40px, 8vw, 100px);
  width: clamp(220px, 28vw, 420px);
  opacity: 0.055;
  filter: brightness(0) invert(1);
  animation: logoDrift 9000ms ease-in-out infinite alternate;
}

.brand-system span {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(145, 230, 255, 0.42), transparent);
  animation: scanLine 4600ms ease-in-out infinite;
}

.brand-system span:nth-of-type(1) {
  top: 23%;
  left: 7%;
  width: 46%;
}

.brand-system span:nth-of-type(2) {
  top: 48%;
  right: 4%;
  width: 32%;
  animation-delay: 900ms;
}

.brand-system span:nth-of-type(3) {
  bottom: 19%;
  left: 18%;
  width: 38%;
  animation-delay: 1700ms;
}

.interface-rhythm {
  position: absolute;
  inset: auto 8% -18px 8%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.55fr;
  gap: 10px;
}

.interface-rhythm span {
  height: 5px;
  border-radius: 999px;
  background: rgba(145, 230, 255, 0.58);
  box-shadow: 0 0 24px rgba(0, 167, 216, 0.4);
  animation: rhythm 2200ms ease-in-out infinite;
}

.interface-rhythm span:nth-child(2) {
  animation-delay: 180ms;
}

.interface-rhythm span:nth-child(3) {
  animation-delay: 360ms;
}

.interface-rhythm span:nth-child(4) {
  animation-delay: 540ms;
}

.metric {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 186px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.18);
}

.metric strong {
  font-size: 0.98rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-a {
  top: 10%;
  left: -26px;
}

.metric-b {
  right: 18px;
  bottom: -22px;
}

.numbers-band {
  padding: clamp(30px, 5vw, 52px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(0, 127, 190, 0.1);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 127, 190, 0.08), transparent 28%, rgba(56, 161, 105, 0.07)),
    #f7fbfd;
  color: var(--ink);
}

.numbers-band-head,
.numbers-band-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.numbers-band-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.numbers-band-head .eyebrow {
  margin: 0;
  color: var(--blue);
}

.numbers-band-head strong {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: right;
}

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

.numbers-band-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 132px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 252, 0.92));
  box-shadow: 0 20px 54px rgba(16, 32, 51, 0.08);
}

.numbers-band-item::before {
  content: "";
  width: 32px;
  height: 3px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.numbers-band-item strong {
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.1vw, 1.72rem);
  font-weight: 900;
  line-height: 1.05;
}

.numbers-band-item span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
}

.numbers-band-item small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
}

.logo-strip {
  padding: 28px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 127, 190, 0.06), transparent 18%, transparent 82%, rgba(56, 161, 105, 0.06)),
    white;
}

.logo-strip p {
  margin: 0 0 22px;
  color: #8a96a2;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(76px, 1fr));
  gap: clamp(12px, 3vw, 32px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.logos img {
  justify-self: center;
  max-width: 118px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.66;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.logo-strip-showcase {
  padding-block: 30px 32px;
  background: #fff;
}

.logo-strip-head {
  display: grid;
  justify-items: center;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 22px;
}

.logo-strip-showcase .logo-strip-head p {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
  text-transform: none;
}

/* even-logistics-Hinweis: ruhig gestapelt UNTER den Logos (Ilja 03.07.). */
.logo-strip-showcase .logo-strip-rating--below {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.logo-strip-showcase .logo-strip-award {
  color: var(--blue-dark);
}

.logo-strip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-strip-row button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #f4f8fb;
  color: #8a96a2;
  font-size: 1.9rem;
  line-height: 1;
}

.logo-strip-row .logos {
  max-width: none;
}

.section {
  position: relative;
  padding: clamp(56px, 7vw, 84px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.section-mark {
  pointer-events: none;
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  top: clamp(24px, 5vw, 58px);
  width: clamp(86px, 11vw, 148px);
  opacity: 0.035;
  filter: grayscale(1);
  transform: rotate(-6deg);
}

.section-mark-right {
  left: auto;
  right: clamp(18px, 4vw, 54px);
  transform: rotate(5deg);
}

.intent-section {
  background: #f9fbfc;
  scroll-margin-top: 92px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.intent-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(220, 231, 238, 0.92);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.045);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.intent-grid article:hover,
.segment-grid article:hover,
.pain-grid article:hover,
.outcomes article:hover,
.process-grid article:hover,
.assurance-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 127, 190, 0.28);
  box-shadow: var(--shadow-soft);
}

.intent-grid p {
  margin: 0;
}

.intent-card-link {
  display: grid;
  gap: 14px;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.intent-card-link strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.25;
}

.intent-card-link small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.4;
}

.intent-card-link .go {
  align-self: end;
  color: var(--blue);
  font-weight: 850;
}

.intent-featured {
  grid-column: 1 / -1;
  border-color: rgba(56, 161, 105, 0.44) !important;
  box-shadow: 0 20px 56px rgba(16, 32, 51, 0.1) !important;
}

.intent-featured .intent-card-link {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 28px;
}

.intent-featured .intent-card-link strong {
  grid-column: 1;
  max-width: 12ch;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  letter-spacing: 0;
}

.intent-featured .intent-card-link p {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 42ch;
  font-size: 1.02rem;
}

.intent-featured .intent-card-link small {
  grid-column: 2;
}

.intent-featured .intent-card-link .go {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
}

.intent-label {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e7f6fc;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-check {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(180px, 0.8fr));
  gap: 14px;
  align-items: end;
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 24px;
  border: 1px solid rgba(0, 127, 190, 0.24);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.quick-check > div {
  align-self: center;
}

.quick-check h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.quick-check p {
  margin: 8px 0 0;
}

.quick-check .button {
  min-height: 46px;
}

.quick-result {
  margin: 0;
  color: #607080;
  font-size: 0.88rem;
}

.full {
  grid-column: 1 / -1;
}

.segment-section {
  background: white;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.segment-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.segment-grid p {
  margin: 0;
}

.segment-grid a {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(440px, 1.24fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.split > div:first-child {
  position: sticky;
  top: 104px;
}

.split p {
  max-width: 640px;
  margin: 24px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue-dark);
  font-weight: 850;
}

.section-anchor {
  position: relative;
  top: -92px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subpage-jumpbar {
  position: sticky;
  top: 74px;
  z-index: 18;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 231, 236, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.05);
  overflow-x: auto;
  scrollbar-width: none;
  backdrop-filter: blur(18px);
}

.subpage-jumpbar::-webkit-scrollbar {
  display: none;
}

/* Scroll-Affordanz: Fade-Maske rechts signalisiert "mehr Items rechts".
   Nur unter 720px aktiv (Overflow-Grenze ~701px), Desktop unverändert.
   mask-image wirkt auf den sichtbaren Container-Bereich und lässt Klicks intakt. */
@media (max-width: 720px) {
  .subpage-jumpbar {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 36px), transparent 100%);
            mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 36px), transparent 100%);
  }
}

.subpage-jumpbar span {
  flex: 0 0 auto;
  color: #778899;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.subpage-jumpbar a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #3b5268;
  font-size: 0.88rem;
  font-weight: 760;
  white-space: nowrap;
}

.subpage-jumpbar a:hover,
.subpage-jumpbar a.is-active {
  border-color: rgba(0, 127, 190, 0.24);
  background: #f3faff;
  color: var(--blue-dark);
}

.subpage-snapshot {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
}

.subpage-snapshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.subpage-snapshot-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 18px;
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.subpage-snapshot-items {
  display: grid;
  gap: 12px;
}

.subpage-snapshot-items article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(220, 231, 238, 0.92);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.045);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.subpage-snapshot-items article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 127, 190, 0.28);
  box-shadow: var(--shadow-soft);
}

.subpage-snapshot-items article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e7f6fc;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.subpage-snapshot-items h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.subpage-snapshot-items p {
  margin: 0;
  color: #516274;
}

.subpage-flow-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(0, 127, 190, 0.08), transparent 30%),
    #f7fafc;
}

.subpage-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.subpage-flow.flow-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.subpage-flow li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.04);
}

.subpage-flow li::after {
  content: "";
  position: absolute;
  top: 46px;
  /* Verbindungsstrich mittig im Gap zwischen den Karten (Gap = 14px),
     nicht mehr angeklebt / halb in der Karte. */
  right: -11px;
  width: 8px;
  height: 1px;
  background: rgba(0, 127, 190, 0.28);
}

.subpage-flow li:nth-child(3n)::after,
.subpage-flow li:last-child::after {
  display: none;
}

.subpage-flow.flow-count-4 li:nth-child(3n)::after {
  display: block;
}

.subpage-flow.flow-count-4 li:nth-child(4n)::after,
.subpage-flow.flow-count-4 li:last-child::after {
  display: none;
}

.subpage-flow span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.subpage-flow h3 {
  font-size: 1.05rem;
}

.subpage-flow p {
  margin: 0;
  color: #526477;
  font-size: 0.95rem;
}

.subpage-flow-section > .text-link {
  display: flex;
  max-width: 1180px;
  margin: 22px auto 0;
}

.media-split-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.media-split-section[id] {
  scroll-margin-top: 96px;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.media-split > * {
  min-width: 0;
}

.media-split-text {
  display: grid;
  gap: 16px;
}

.media-split-text p {
  margin: 0;
}

.media-split-text .button {
  justify-self: start;
  margin-top: 8px;
}

.media-split-copy {
  max-width: 520px;
}

.media-split-copy h2 {
  margin-bottom: 16px;
}

.media-split-copy > p {
  color: var(--muted);
  line-height: 1.65;
}

.media-split-points {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.media-split-points li {
  display: grid;
  gap: 6px;
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(0, 127, 190, 0.28);
}

.media-split-points strong {
  color: var(--ink);
  font-size: 1rem;
}

.media-split-points span {
  color: #526477;
  line-height: 1.55;
}

.media-placeholder-frame {
  min-width: 0;
}

.media-placeholder-frame img,
.media-placeholder-preview {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f8fbfd;
}

.media-placeholder-frame img {
  height: auto;
  object-fit: contain;
}

.media-split .button-secondary,
.job-card .button-secondary {
  border-color: rgba(0, 127, 190, 0.22);
  background: white;
  color: var(--blue);
}

.media-split-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 52px rgba(16, 32, 51, 0.1);
}

.media-split-visual img,
.media-split-visual video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.career-iu-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.career-iu-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
}

.career-iu-visual {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-color: rgba(0, 127, 190, 0.14);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 167, 216, 0.12), transparent 42%),
    linear-gradient(145deg, #ffffff, #f4f9fc);
}

.career-iu-visual img {
  width: min(220px, 58%);
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.08);
}

.company-video {
  aspect-ratio: 16 / 9;
}

.company-video iframe {
  width: 100%;
  height: 100%;
}

.webinar-feature-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.webinar-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.webinar-feature-media,
.webinar-card-media,
.webinar-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(16, 32, 51, 0.1);
}

.webinar-feature-media a,
.webinar-card-media {
  display: block;
  color: inherit;
}

.webinar-feature-media img,
.webinar-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.webinar-play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: auto;
  border-radius: 999px;
  background: rgba(0, 127, 190, 0.95);
  color: #fff;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
}

.webinar-play-badge svg {
  margin-left: 4px;
}

.webinar-feature-media a:hover .webinar-play-badge,
.webinar-feature-media a:focus-visible .webinar-play-badge,
.webinar-card-media:hover .webinar-play-badge,
.webinar-card-media:focus-visible .webinar-play-badge {
  transform: scale(1.06);
  background: var(--green);
}

.webinar-feature-highlight {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(147, 209, 231, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 167, 216, 0.18), rgba(52, 165, 106, 0.1)),
    linear-gradient(135deg, #08365b 0%, #075f82 100%);
  color: #fff;
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.16);
}

.webinar-feature-highlight .eyebrow {
  color: #8feaff;
}

.webinar-feature-highlight h3 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.webinar-highlight-list {
  display: grid;
  gap: 10px;
}

.webinar-highlight-list span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
  line-height: 1.32;
}

.webinar-highlight-list svg {
  width: 20px;
  height: 20px;
  color: #7ee0a8;
}

.webinar-feature-note {
  max-width: 520px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.webinar-feature-copy {
  display: grid;
  gap: 14px;
}

.webinar-feature-copy p,
.webinar-card-body p,
.webinar-detail-lead p,
.webinar-content-card p {
  color: #526477;
  line-height: 1.65;
}

.webinar-feature-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.webinar-subtitle {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.webinar-speaker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}

.webinar-speaker-row span,
.webinar-card-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(0, 127, 190, 0.09);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.webinar-speaker-row span {
  padding: 7px 10px;
}

.webinar-card-kicker {
  margin: 0;
  padding: 5px 9px;
}

.webinar-overview-section,
.webinar-related-section {
  background: #fff;
}

.webinar-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.webinar-card-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webinar-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 32, 51, 0.07);
}

.webinar-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 24px);
}

.webinar-card-body h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.28;
}

.webinar-card-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.webinar-card-body p {
  margin: 0;
}

.webinar-card-body .text-link {
  margin-top: auto;
}

.webinar-detail-intro,
.webinar-speakers-section {
  background: #fff;
}

.webinar-detail-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.webinar-detail-lead > div {
  display: grid;
  gap: 14px;
}

.webinar-detail-lead p {
  max-width: 820px;
  margin: 0;
  font-size: 1.04rem;
}

.webinar-recording-section {
  background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
}

.webinar-recording {
  display: grid;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.webinar-recording-heading {
  margin-bottom: 0;
}

.webinar-video {
  aspect-ratio: 16 / 9;
}

.webinar-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.webinar-gate {
  display: grid;
  gap: 18px;
}

.webinar-gate-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 18px 22px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(145, 230, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eff8fc 100%);
  box-shadow: 0 20px 54px rgba(16, 32, 51, 0.08);
}

.webinar-gate-form > div {
  align-self: center;
}

.webinar-gate-form h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.webinar-gate-form p {
  margin: 0;
  color: #526477;
  line-height: 1.6;
}

.webinar-gate-form label:not(.hp-field) {
  display: grid;
  gap: 8px;
  color: #34495d;
  font-size: 0.9rem;
  font-weight: 850;
}

.webinar-gate-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d4e2ec;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.webinar-gate-consent {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start;
  color: #526477 !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.webinar-gate-consent input {
  margin-top: 3px;
}

.webinar-gate-consent a {
  color: var(--blue);
  font-weight: 750;
}

.webinar-gate-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.form-status {
  padding: 12px 14px;
  border-radius: 8px;
  background: #eef4f8;
  color: #3a4b5c;
  font-weight: 750;
  line-height: 1.45;
}

.form-status[data-state="loading"] {
  border: 1px solid #d4e2ec;
}

.form-status[data-state="error"] {
  border: 1px solid rgba(193, 78, 78, 0.28);
  background: #fff1f1;
  color: #9b2c2c;
}

.webinar-gate-form .button {
  justify-self: start;
  min-height: 50px;
}

.webinar-gate-note {
  align-self: center;
  font-size: 0.9rem;
}

.webinar-speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.webinar-speaker-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.06);
}

.webinar-speaker-card img,
.webinar-speaker-initial {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.webinar-speaker-card img {
  object-fit: cover;
}

.webinar-speaker-initial {
  display: grid;
  place-items: center;
  background: rgba(0, 127, 190, 0.1);
  color: var(--blue);
  font-weight: 900;
  font-size: 1.4rem;
}

.webinar-speaker-card h3,
.webinar-speaker-card p {
  margin: 0;
}

.webinar-speaker-card p {
  color: #526477;
}

.webinar-content-section {
  background: #f7fafc;
}

.webinar-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.webinar-content-card,
.webinar-quote-card {
  margin: 0;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.06);
}

.webinar-content-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
}

.webinar-content-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.webinar-content-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.55;
}

.webinar-content-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(56, 161, 105, 0.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2338a169' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

.webinar-content-card p {
  margin: 16px 0 0;
}

.webinar-quote-card {
  display: grid;
  align-content: center;
  background: var(--ink);
  color: #fff;
}

.webinar-quote-card p {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.5;
}

.webinar-quote-card cite {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-weight: 750;
}

.webinar-why-card {
  background: #edf8fc;
}

.events-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 127, 190, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 32, 51, 0.075);
}

.event-date {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(145, 230, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #07314c 0%, #0878a8 100%);
  color: #fff;
}

.event-date span {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #dcf8ff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.event-date strong {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.08;
}

.event-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
}

.event-copy h3 {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
}

.event-copy p {
  margin: 0;
  color: #526477;
}

.event-copy .button {
  margin-top: auto;
  min-height: 46px;
}

.media-placeholder-preview {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(rgba(16, 32, 51, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 51, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbfd 0%, #edf5f9 100%);
  background-size: 28px 28px, 28px 28px, auto;
}

.media-placeholder-preview span {
  max-width: 32ch;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.media-placeholder-preview small {
  color: #617385;
  font-size: 0.82rem;
  line-height: 1.45;
}

.lead-benefits {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.lead-benefits li {
  position: relative;
  padding-left: 24px;
  color: #4f6070;
  line-height: 1.55;
}

.lead-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

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

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.info-grid.grid-count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid.grid-count-8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 12px;
  background: #e7f6fc;
  color: var(--blue-dark);
}

.info-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 127, 190, 0.28);
  box-shadow: var(--shadow-soft);
}

.info-grid p {
  margin: 0;
  color: #526477;
}

.pain-grid article,
.outcomes article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.pain-grid article {
  padding: 26px;
}

.pain-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e7f6fc;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.pain-grid p,
.outcomes p,
.process-grid p {
  margin: 12px 0 0;
}

.outcome-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 127, 190, 0.08), transparent 24%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading-left {
  max-width: 1180px;
  text-align: left;
}

.section-heading-left p {
  margin-left: 0;
  margin-right: auto;
  max-width: 680px;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.company-values-band .outcomes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcomes article {
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16, 32, 51, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(56, 161, 105, 0.12);
  color: var(--green);
  font-weight: 900;
}

/* product-showcase nutzt den dunklen Verlauf (.section-dark) als Bühne –
   der helle KPI-Screenshot leuchtet darauf, bringt Rhythmus in die obere Hälfte. */
.product-showcase .feature-shot {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.product-showcase .feature-shot strong {
  color: #fff;
}

.product-showcase .feature-shot figcaption {
  color: rgba(255, 255, 255, 0.74);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-shot {
  display: grid;
  align-content: start;
  gap: 16px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.045);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.feature-shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature-shot-large {
  grid-row: span 2;
}

.feature-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  object-position: left top;
  background: white;
}

.feature-shot:not(.feature-shot-large) img {
  aspect-ratio: 16 / 7.6;
}

.feature-shot figcaption {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-shot strong {
  color: var(--ink);
  font-size: 1rem;
}

.process-section {
  background: var(--cloud);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid.grid-count-8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid.grid-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

/* „Mehr erfahren →" immer am Kartenboden ausrichten, damit die Links über
   unterschiedlich lange Karten hinweg auf einer Linie sitzen (global). */
.process-grid article > .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #e7f6fc;
  color: var(--blue);
}

/* Karte komplett klickbar machen, ohne das Karten-Markup zu aendern */
.card-stretch::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Echtes Kundenzitat (z. B. Google-Bewertung) unterhalb eines Karten-Grids */
.testimonial {
  max-width: 820px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.testimonial-standalone {
  margin-top: 0;
}

.testimonial-stars {
  margin-bottom: 12px;
  color: #f5a623;
  font-size: 1.15rem;
  letter-spacing: 3px;
}

.testimonial blockquote {
  margin: 0;
  color: #34495d;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.testimonial figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 16px;
}

.testimonial figcaption strong {
  color: var(--ink);
}

.testimonial figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.proof-module {
  background:
    linear-gradient(135deg, rgba(0, 127, 190, 0.07), transparent 34%),
    #f9fbfc;
}

.proof-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-module-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.055);
}

.proof-module-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.proof-module-meta img {
  width: 64px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
}

.proof-module-meta span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e7f6fc;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.proof-module-grid p {
  margin: 0;
  color: #34495d;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.proof-module-grid strong {
  align-self: end;
  color: var(--ink);
  font-size: 0.9rem;
}

.cards-dark .testimonial {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.cards-dark .testimonial blockquote {
  color: rgba(255, 255, 255, 0.9);
}

.cards-dark .testimonial figcaption strong {
  color: white;
}

.cards-dark .testimonial figcaption span {
  color: rgba(255, 255, 255, 0.66);
}

/* Mikro-CTA zwischen Content-Sektionen */
.micro-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 127, 190, 0.07), transparent 60%),
    #eef5fa;
  text-align: center;
}

.micro-cta p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.micro-cta .button {
  min-height: 50px;
}

.micro-cta-note {
  width: 100%;
  color: var(--muted);
  font-size: 0.9rem;
}

.career-teaser {
  padding-top: 36px;
}

.career-teaser-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 127, 190, 0.08) 0%, rgba(255, 255, 255, 0) 46%),
    #fff;
  box-shadow: 0 18px 50px rgba(16, 32, 51, 0.07);
}

.career-teaser-card h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.career-teaser-card p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

/* Einzelner Produkt-Screenshot in der Seitenmitte */
.feature-shot-solo {
  max-width: 960px;
  margin: 0 auto;
}

.feature-shot.feature-shot-solo img {
  height: auto;
  aspect-ratio: 800 / 519;
  object-fit: contain;
}

/* Dunkle Karten-Sektion (z. B. Proof) */
.cards-dark .info-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.cards-dark .info-grid article:hover {
  border-color: rgba(145, 230, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.cards-dark h3 {
  color: white;
}

.cards-dark .info-grid p,
.cards-dark .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid article:hover {
  border-color: rgba(0, 127, 190, 0.35);
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.08);
}

.module-matrix-section {
  background:
    linear-gradient(180deg, rgba(245, 250, 253, 0.92), rgba(255, 255, 255, 0.98));
}

.module-matrix-wrap {
  max-width: 1180px;
  margin: 28px auto 0;
  overflow-x: auto;
  border: 1px solid rgba(0, 167, 216, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.08);
}

.module-matrix-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--navy);
}

.module-matrix-table th,
.module-matrix-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  vertical-align: top;
  text-align: left;
}

.module-matrix-table thead th {
  background: rgba(0, 167, 216, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.module-matrix-table tbody th {
  width: 24%;
  font-size: 1rem;
  font-weight: 800;
}

.module-matrix-table tbody td {
  color: var(--muted);
  line-height: 1.55;
}

.module-matrix-table tbody td:last-child {
  width: 150px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.module-matrix-table a {
  color: var(--blue);
  font-weight: 900;
}

.module-matrix-table tr:last-child th,
.module-matrix-table tr:last-child td {
  border-bottom: 0;
}

.pillar-topic-flow .subpage-flow {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.pillar-module-grid .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wms-intro-criteria-grid {
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.wms-intro-criteria-grid .info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.wms-intro-criteria-grid .info-grid article {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  border-color: rgba(0, 127, 190, 0.14);
}

.wms-intro-criteria-grid .info-grid article:nth-child(1),
.wms-intro-criteria-grid .info-grid article:nth-child(4) {
  background: #f4f9fc;
}

.wms-intro-flow .section-heading {
  margin-bottom: 28px;
}

.wms-intro-flow .subpage-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 940px;
}

.wms-intro-flow .subpage-flow::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 127, 190, 0.12), rgba(56, 161, 105, 0.32));
}

.wms-intro-flow .subpage-flow li {
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0 22px;
  align-items: start;
  min-height: 0;
  padding: 22px 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(220, 231, 238, 0.9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wms-intro-flow .subpage-flow li:last-child {
  border-bottom: 0;
}

.wms-intro-flow .subpage-flow li::after {
  display: none;
}

.wms-intro-flow .subpage-flow span {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 66px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.06);
}

.wms-intro-flow .subpage-flow h3 {
  margin: 2px 0 6px;
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
}

.wms-intro-flow .subpage-flow p {
  max-width: 720px;
  font-size: 1rem;
}

.wms-intro-process-modules {
  background: #fff;
}

.wms-intro-process-modules .process-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.wms-intro-process-modules .process-grid article {
  grid-column: span 2;
  min-height: 230px;
}

.wms-intro-process-modules .process-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.wms-intro-process-modules .process-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.roi-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.roi-copy p {
  max-width: 640px;
}

.calculator {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.calculator .button {
  width: 100%;
}

label {
  display: grid;
  gap: 8px;
  color: #34495d;
  font-size: 0.93rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdbe4;
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 167, 216, 0.18);
  border-color: var(--cyan);
}

.calc-output {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.calc-output span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.calc-output strong {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.integration {
  width: 100%;
  padding-top: clamp(54px, 6vw, 76px);
  padding-bottom: clamp(54px, 6vw, 76px);
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 167, 216, 0.1), transparent 34%),
    linear-gradient(180deg, #f8fbfd 0%, #edf6fb 100%);
}

.integration-inner {
  display: grid;
  gap: clamp(20px, 3.2vw, 34px);
  justify-items: center;
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.integration-copy,
.integration-visual {
  max-width: none;
}

.integration-copy {
  width: 100%;
  max-width: 850px;
}

.integration-copy h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  hyphens: none;
  overflow-wrap: normal;
}

.integration-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.integration-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
}

.integration-link:hover {
  color: var(--blue-dark);
}

.integration-flowline {
  display: grid;
  grid-template-columns: auto minmax(32px, 1fr) auto minmax(32px, 1fr) auto;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.integration-flowline span,
.integration-flowline strong {
  display: inline-flex;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #123b5c;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.integration-flowline strong {
  border-color: rgba(56, 161, 105, 0.34);
  background: #edf9f2;
  color: #145736;
}

.integration-flowline i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9ed6ec, #35a46b);
}

.integration-visual {
  width: 100%;
  max-width: 1030px;
  margin: 0;
  padding: clamp(8px, 1.4vw, 14px) clamp(12px, 2vw, 22px);
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 70px rgba(16, 32, 51, 0.05);
}

.integration-visual figcaption {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #667789;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.integration-visual img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

.integration-system-board {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(0, 167, 216, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 167, 216, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f8fcfe 0%, #ffffff 54%, #edf7fb 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

.integration-system-board__core {
  display: grid;
  justify-items: center;
  width: min(280px, 100%);
  margin: 0 auto;
  padding: 16px 20px;
  border: 1px solid rgba(53, 164, 107, 0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, #edf9f2, #e7f7fc);
  color: #145736;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
}

.integration-system-board__core span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.integration-system-board__core strong {
  color: #102033;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1;
}

.integration-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.integration-logo-tile {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid #d3e7f1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: #123b5c;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
}

.integration-logo-tile.is-sap {
  background: linear-gradient(135deg, #e7f6ff, #ffffff);
  color: #0066b3;
}

.integration-logo-tile.is-microsoft {
  color: #224a7a;
}

.integration-logo-tile.is-api {
  color: #145736;
}

.integration-logo-tile.is-carrier {
  color: #102033;
}

.integration-logo-tile.is-shop {
  color: #007fbe;
}

.integration-logo-tile.is-hardware,
.integration-logo-tile.is-automation {
  color: #475569;
}

.integration-visual-flow {
  display: grid;
  grid-template-columns: 1fr 26px 1.25fr 26px 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfe 100%);
}

.integration-visual-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #cfe6f3;
  border-radius: 999px;
  background: #ffffff;
  color: #123b5c;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.integration-visual-flow i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #96cfe8, #008fd3);
  position: relative;
}

.integration-visual-flow i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #008fd3;
  border-right: 2px solid #008fd3;
  transform: translateY(-50%) rotate(45deg);
}

.integration-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.integration-groups article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid #d8e7ef;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.06);
}

.integration-groups article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 0;
}

.integration-groups h3 {
  margin: 0 0 12px;
  color: #102033;
  font-size: 0.88rem;
  font-weight: 900;
}

.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.integration-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 127, 190, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf6fc 100%);
  color: #123b5c;
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
}

.glossary-hero {
  padding-top: clamp(88px, 10vw, 134px);
  padding-bottom: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(0, 127, 190, 0.1), rgba(145, 230, 255, 0.22) 42%, rgba(255, 255, 255, 0.95) 100%);
}

.glossary-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.glossary-hero-copy {
  max-width: 780px;
}

.glossary-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.glossary-hero-copy > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: #43556a;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.glossary-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
  margin: 0;
}

.glossary-hero-facts div {
  display: grid;
  gap: 4px;
  min-width: 128px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.glossary-hero-facts dt {
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.glossary-hero-facts dd {
  margin: 0;
  color: #536477;
  font-size: 0.88rem;
  font-weight: 800;
}

.glossary-topic-nav {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px clamp(20px, 3vw, 28px);
  overflow-x: auto;
  border-bottom: 1px solid rgba(223, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

/* Konsistente Scroll-Affordanz wie bei .subpage-jumpbar: rechte Fade-Maske
   nur unter 720px, damit auf Touch die versteckten Tabs (Branchen/Kosten
   & Optimierung) sichtbar suggeriert werden. */
@media (max-width: 720px) {
  .glossary-topic-nav {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 36px), transparent 100%);
            mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 36px), transparent 100%);
  }
}

.glossary-topic-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 999px;
  color: #203449;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.glossary-topic-nav a:hover {
  border-color: rgba(0, 127, 190, 0.36);
  background: #f4f9fc;
  color: var(--blue-dark);
}

.glossary-featured-section {
  padding-bottom: clamp(24px, 4vw, 42px);
}

.glossary-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.glossary-featured-grid a {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.055);
  text-decoration: none;
}

.glossary-featured-grid strong {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.glossary-featured-grid p {
  margin: 0;
  color: #536477;
  line-height: 1.6;
}

.glossary-featured-grid span {
  align-self: end;
  color: var(--blue-dark);
  font-weight: 900;
}

.glossary-group {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(34px, 5vw, 62px);
}

.glossary-group:nth-of-type(even) {
  background: #f8fbfd;
}

.glossary-group-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.glossary-group-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.glossary-group-heading > p {
  max-width: 640px;
  margin: 0;
  color: #536477;
  font-size: 1.02rem;
  line-height: 1.65;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 236, 0.95);
  border-radius: 8px;
  background: rgba(223, 231, 236, 0.95);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.05);
}

.glossary-grid a {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 176px;
  padding: 22px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.glossary-grid a:hover {
  background: #f4f9fc;
  box-shadow: inset 3px 0 0 var(--blue);
}

.glossary-grid strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.glossary-grid p {
  margin: 0;
  color: #536477;
  font-size: 0.94rem;
  line-height: 1.55;
}

.glossary-grid span {
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.trust-proof-section {
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(48px, 6vw, 76px);
  background:
    linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
}

.price-anchor {
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(44px, 6vw, 74px);
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 167, 216, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(0, 127, 190, 0.08), transparent 42%, rgba(56, 161, 105, 0.08)),
    #f7fbfd;
}

.price-anchor-shell {
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
  max-width: 1160px;
  margin: 0 auto;
}

.price-anchor-head {
  display: grid;
  gap: 10px;
  max-width: 1120px;
}

.price-anchor-head .eyebrow {
  color: var(--blue);
}

.price-anchor-head h2 {
  max-width: none;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.75rem, 2.45vw, 2.24rem);
  line-height: 1.1;
}

.price-anchor-head p {
  max-width: 1040px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  font-weight: 620;
  line-height: 1.58;
}

@media (min-width: 1060px) {
  .price-anchor-head h2 {
    white-space: nowrap;
  }
}

.price-anchor-cta {
  width: fit-content;
}

.price-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(12px, 1.8vw, 18px);
}

.price-package-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 255, 0.94));
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}

.price-package-card > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 127, 190, 0.09);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.price-package-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.24;
}

.price-package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.42;
}

.price-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.price-anchor-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px clamp(20px, 3vw, 36px);
  /* Band nur ueber die zwei linken Paket-Kaesten spannen (Christoph): schmaler,
     links ausgerichtet, Preis + CTA an den Enden -> kein Leerraum-Loch mittig. */
  max-width: calc(66.66% - 6px);
  margin-right: auto;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 248, 252, 0.92));
  box-shadow: 0 18px 52px rgba(16, 32, 51, 0.08);
}

.price-anchor-action > div {
  display: grid;
  gap: 4px;
}

.price-anchor-action strong {
  color: var(--blue-dark);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.price-anchor-action strong span {
  color: #5d6a77;
  font-size: 0.43em;
  font-weight: 850;
}

.price-anchor-action p {
  margin: 0;
  color: #5f6f7e;
  font-size: 0.94rem;
  font-weight: 800;
}

.roi-teaser-section {
  background: #fff;
}

.roi-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 246, 252, 0.95), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 18px 50px rgba(16, 32, 51, 0.07);
}

.roi-teaser h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.roi-teaser p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: #4f6070;
}

.closing-reference-section,
.closing-tour-section {
  background: #fff;
}

.closing-reference,
.closing-tour-card {
  display: grid;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(0, 127, 190, 0.13);
  border-radius: 14px;
  background: linear-gradient(135deg, #f7fbfd 0%, #ffffff 60%);
  box-shadow: 0 14px 40px rgba(16, 32, 51, 0.05);
}

/* Schlank-Variante (ohne Video): Logo · Copy · CTA in einer Reihe */
.closing-reference {
  grid-template-columns: minmax(80px, 0.14fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(20px, 2.6vw, 32px) clamp(22px, 3vw, 38px);
}

/* Enhanced-Variante (mit Video): 2-Spalten – links Copy, rechts Video,
   gleichberechtigt, ruhige Hierarchie, kein riesiger Zitatblock. */
.closing-reference-enhanced {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 38px);
  align-items: center;
}

.closing-reference-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.closing-reference-copy .closing-reference-logo {
  margin-bottom: 18px;
}

.closing-reference-copy .button {
  width: fit-content;
  margin-top: 6px;
}

.closing-reference-logo {
  display: grid;
  place-items: center;
  width: 128px;
  height: 96px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.06);
}

.closing-reference-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.closing-reference-logo span {
  color: var(--blue-dark);
  font-weight: 900;
}

.closing-reference h2,
.closing-tour-card h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.25;
}

.closing-reference p:not(.eyebrow):not(.case-proof-badge),
.closing-tour-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 6px 0 0;
  color: #526477;
  font-size: 0.95rem;
  line-height: 1.55;
}

.closing-reference .case-proof-badge {
  border-color: rgba(0, 127, 190, 0.2);
  background: rgba(0, 127, 190, 0.08);
  color: var(--blue-dark);
}

/* Kompakter Zitat-Block ohne Quotation-Glyph-Drama */
.closing-reference-quote {
  display: grid;
  gap: 6px;
  margin: 6px 0 0;
  padding: 10px 0 4px 14px;
  border-left: 2px solid var(--cyan);
}

.closing-reference-quote span {
  display: none;
}

.closing-reference-quote p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.closing-reference-quote footer {
  color: #6e7f90;
  font-size: 0.85rem;
  font-weight: 700;
}

.closing-reference-video {
  align-self: center;
  margin: 0;
  width: 100%;
}

.closing-reference-video .video-facade {
  border-color: rgba(0, 127, 190, 0.16);
  border-radius: 10px;
  background: #071d30;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.12);
}

.closing-reference-video .video-facade img {
  min-height: 0;
  border-radius: 10px;
}

.closing-reference-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.12);
}

@media (max-width: 860px) {
  .closing-reference-enhanced {
    grid-template-columns: 1fr;
  }
  .closing-reference {
    grid-template-columns: auto 1fr;
    gap: 14px 20px;
  }
  .closing-reference .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.closing-tour-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 42px);
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 230, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #f7fbfd, #fff);
}

.closing-tour-cta {
  min-width: 190px;
  box-shadow: 0 16px 34px rgba(56, 161, 105, 0.24);
}

.lead-magnet-inline-section {
  background:
    linear-gradient(180deg, #fff 0%, #f4f8fb 100%);
}

.lead-magnet-inline {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(145, 230, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 251, 0.96));
  box-shadow: 0 22px 58px rgba(16, 32, 51, 0.08);
}

.lead-magnet-mark {
  display: grid;
  place-items: center;
  width: clamp(96px, 10vw, 132px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 127, 190, 0.11), rgba(112, 185, 60, 0.12)),
    #fff;
  color: var(--blue-dark);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.72);
}

.lead-magnet-mark span {
  max-width: 82px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.lead-magnet-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.14;
}

.lead-magnet-copy p:not(.eyebrow) {
  max-width: 790px;
  margin: 10px 0 0;
  color: #4f6070;
}

.lead-magnet-context {
  color: var(--ink) !important;
  font-weight: 780;
}

.lead-magnet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lead-magnet-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #355064;
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-magnet-action {
  display: grid;
  gap: 12px;
  justify-items: end;
  min-width: 188px;
}

.lead-magnet-action .button {
  width: 100%;
}

.lead-magnet-action .text-link {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.roi-calculator-section {
  background:
    linear-gradient(180deg, var(--cloud), #fff 58%);
}

.roi-calculator-hero {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 167, 216, 0.24), transparent 36%),
    linear-gradient(135deg, #0b253d 0%, #064266 52%, #0b253d 100%);
}

.roi-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.roi-calculator-copy {
  position: sticky;
  top: 108px;
}

.roi-calculator-hero .roi-calculator-copy {
  position: static;
  display: grid;
  align-content: center;
  min-height: clamp(520px, 42vw, 650px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.roi-calculator-copy h1,
.roi-calculator-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

.roi-calculator-copy h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
  line-height: 0.98;
}

.roi-calculator-copy > p {
  color: #4f6070;
  font-size: 1.05rem;
}

.roi-calculator-hero .roi-calculator-copy .eyebrow {
  color: #8fe6ff;
}

.roi-calculator-hero .roi-calculator-copy h1,
.roi-calculator-hero .roi-calculator-copy > p,
.roi-calculator-hero .roi-proof-list li {
  color: #fff;
}

.roi-calculator-hero .roi-calculator-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.68;
}

.roi-proof-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.roi-proof-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
}

.roi-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(56, 161, 105, 0.14);
}

.roi-calculator {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.roi-calculator-hero .roi-calculator {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

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

.roi-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.roi-results article {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 63, 115, 0.98), rgba(0, 127, 190, 0.92)),
    var(--blue-dark);
  color: #fff;
}

.roi-results span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roi-results strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.roi-results small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.35;
}

.roi-result-handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(56, 161, 105, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef9f1, #f8fcfa);
}

.roi-result-handoff p {
  margin: 0;
  color: #244f36;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.42;
}

.roi-result-handoff .button {
  white-space: nowrap;
}

.roi-assumptions {
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 8px;
  background: #f8fbfd;
}

.roi-assumptions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

.roi-assumptions summary small {
  color: #647382;
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: right;
}

.roi-assumptions div {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.roi-assumption-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 !important;
}

.roi-assumption-grid span {
  padding: 10px 11px;
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #4f6070;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.roi-assumptions p {
  margin: 0;
  color: #4f6070;
  font-size: 0.92rem;
  line-height: 1.5;
}

.roi-assumptions strong {
  color: var(--ink);
}

.roi-assumption-note {
  padding-top: 10px;
  border-top: 1px solid rgba(207, 219, 228, 0.9);
  font-weight: 700;
}

.roi-email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  padding-top: 2px;
}

.roi-email-form label {
  min-width: 0;
}

.roi-email-form .button {
  min-height: 48px;
  white-space: nowrap;
}

.roi-print-link {
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.roi-print-link:hover {
  color: var(--blue);
}

.roi-email-form .button-secondary {
  border: 1px solid rgba(0, 127, 190, 0.22);
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
}

.roi-email-form .button-secondary:hover {
  background: #f4f8fb;
  border-color: rgba(0, 127, 190, 0.36);
}

.roi-email-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #647382;
  font-size: 0.86rem;
  font-weight: 700;
}

.roi-transfer-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(56, 161, 105, 0.24);
  border-radius: 8px;
  background: #eef9f1;
  color: #216c3f;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.42;
}

.fit-wizard-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(145, 230, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(112, 185, 60, 0.12), transparent 30%),
    linear-gradient(135deg, #102033 0%, #053f73 58%, #102033 100%);
  color: #fff;
}

.fit-wizard-page {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    radial-gradient(circle at 12% 0%, rgba(145, 230, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(112, 185, 60, 0.12), transparent 30%),
    linear-gradient(135deg, #102033 0%, #053f73 58%, #102033 100%);
}

.fit-wizard-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  gap: clamp(20px, 3.5vw, 38px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.fit-wizard-page .fit-wizard-shell {
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  align-items: stretch;
  max-width: 1180px;
}

.fit-wizard-shell:not(.has-result) .fit-wizard-card {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 720px;
  justify-self: center;
}

.fit-wizard-page .fit-wizard-shell:not(.has-result) .fit-wizard-card {
  grid-column: auto;
  max-width: none;
}

.fit-wizard-intro {
  grid-column: 1 / -1;
  max-width: 840px;
  margin: 0 auto clamp(8px, 1.4vw, 14px);
  text-align: center;
}

.fit-wizard-intro .eyebrow {
  color: #91e6ff;
}

.fit-wizard-page .fit-wizard-intro {
  grid-column: auto;
  display: grid;
  align-content: center;
  box-sizing: border-box;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.fit-wizard-intro h1,
.fit-wizard-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.fit-wizard-intro h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
  line-height: 0.98;
}

.fit-wizard-page .fit-wizard-intro h1 {
  max-width: 10.5em;
  font-size: clamp(1.82rem, 2.35vw, 2.55rem);
  line-height: 1.12;
}

.fit-wizard-intro > p {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.7;
}

.fit-wizard-page .fit-wizard-intro > p {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.55;
}

.fit-wizard-badges,
.fit-wizard-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.fit-wizard-page .fit-wizard-badges,
.fit-wizard-page .fit-wizard-steps {
  justify-content: flex-start;
}

.fit-wizard-page .fit-wizard-badges {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.fit-wizard-page .fit-wizard-steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fit-wizard-badges {
  margin-top: 20px;
}

.fit-wizard-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(145, 230, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 850;
}

.fit-wizard-steps {
  margin: 24px 0 0;
  padding: 0;
  counter-reset: fitstep;
}

.fit-wizard-steps li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 13px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 850;
  list-style: none;
  counter-increment: fitstep;
}

.fit-wizard-steps li::before {
  content: counter(fitstep);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 950;
}

.fit-wizard-card,
.fit-result-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 251, 0.98)),
    #fff;
  color: var(--ink);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.fit-wizard-card {
  display: grid;
  gap: 22px;
  min-height: 430px;
  padding: clamp(22px, 3.2vw, 34px);
}

.fit-wizard-page .fit-wizard-card {
  box-sizing: border-box;
  min-height: clamp(500px, 38vw, 620px);
  align-content: center;
}

.fit-progress {
  display: grid;
  gap: 8px;
}

.fit-progress span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fit-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4eef4;
}

.fit-progress i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.24s ease;
}

.fit-step h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.38rem, 2vw, 1.82rem);
  line-height: 1.12;
}

.fit-step-note {
  margin: -6px 0 16px;
  color: #607080;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.fit-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fit-options + .fit-options {
  margin-top: 12px;
}

.fit-options-volume button:last-child:nth-child(odd),
.fit-wizard-page .fit-wizard-steps li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.fit-options button {
  position: relative;
  min-height: 82px;
  padding: 17px 42px 17px 17px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f7fbfd);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fit-options button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 127, 190, 0.36);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.07);
}

.fit-options button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 15px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 127, 190, 0.09);
  color: var(--blue-dark);
  font-weight: 950;
  transform: translateY(-50%);
}

.fit-options button.is-selected {
  border-color: var(--blue-dark);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  box-shadow: 0 12px 28px rgba(5, 63, 115, 0.16);
}

.fit-options button.is-selected::after {
  content: "✓";
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.fit-wizard-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-self: end;
}

.fit-wizard-actions .button {
  width: 100%;
}

.fit-wizard-actions .button[hidden] {
  display: none;
}

.fit-wizard-actions:has(.button[hidden] + .button[hidden]) {
  display: none;
}

.fit-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
  grid-column: 1 / -1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  justify-self: center;
  min-height: auto;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border-color: rgba(145, 230, 255, 0.34);
  background:
    radial-gradient(circle at 4% 0%, rgba(145, 230, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 56%, #edf8f6 100%);
}

.fit-result-card[hidden] {
  display: none;
}

.fit-result-summary {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(10px, 1.4vw, 16px) clamp(4px, 1vw, 8px);
  background: transparent;
}

.fit-result-card h3 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.12;
}

.fit-result-summary > p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
  color: #4f6070;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.fit-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.fit-result-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 999px;
  background: #e7f6fc;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.fit-case-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #f8fcfe, #eef6fa);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.07);
}

.fit-case-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.fit-case-logo {
  display: grid;
  width: 76px;
  min-height: 42px;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 900;
}

.fit-case-logo img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.fit-case-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 820;
  line-height: 1.45;
}

.fit-case-card figcaption {
  display: grid;
  gap: 2px;
}

.fit-case-card figcaption small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit-case-card figcaption span {
  color: #5d6d7c;
  font-size: 0.82rem;
}

.fit-case-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

/* Proof-Badge sitzt hier auf hellem Card-Hintergrund. Die globale Badge-Optik
   ist für dunkle Kontexte (helltürkise Schrift) und wäre hier unlesbar,
   deshalb dunkle Schrift auf hellem Chip. */
.fit-case-card .case-proof-badge {
  border-color: rgba(0, 127, 190, 0.22);
  background: #e7f6fc;
  color: #053f73;
}
.fit-case-card .case-proof-badge-unconfirmed {
  border-color: rgba(186, 117, 23, 0.32);
  background: #fbf1dd;
  color: #7a4d0b;
}

.fit-lead-form {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 14px;
  background: #102033;
  color: #fff;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.16);
}

.fit-lead-email {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 850;
}

.fit-lead-email > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.fit-lead-email input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.fit-lead-email input:focus {
  outline: 2px solid #91e6ff;
  outline-offset: 1px;
}

.fit-lead-email .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

/* Auf sehr schmalen Screens Feld + Button stackable, damit der Submit-Button
   nicht auf ein Icon-Format zusammengequetscht wird. */
@media (max-width: 520px) {
  .fit-lead-email > span {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .fit-lead-email .button {
    width: 100%;
  }
}

.fit-lead-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fit-lead-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #38a169;
  cursor: pointer;
}

.fit-lead-consent a {
  color: #91e6ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fit-lead-status {
  margin: 0;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(145, 230, 255, 0.12);
  color: #d7f7ff;
  font-size: 0.82rem;
  font-weight: 750;
}

.fit-lead-status[data-state="error"] {
  background: rgba(245, 177, 37, 0.14);
  color: #ffe8ae;
}

.fit-lead-status[data-state="success"] {
  background: rgba(56, 161, 105, 0.18);
  color: #dff8e7;
}

.fit-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
}

/* CTA-Duplikat auf Mobile vermeiden: sobald die Sticky-Bottom-Bar mit
   „Testzugang anfordern" sichtbar ist, blenden wir den zweiten, identisch
   benannten Sekundärbutton im Wizard-Ergebnis aus (Fit-CTA + Sticky = 2 gleiche
   primäre Handlungsoptionen im Viewport). ROI-Button bleibt sichtbar, falls
   /wms-roi-rechner/ je live geht. */
@media (max-width: 840px) {
  body:has(.sticky-actions.sticky-visible) .fit-result-actions [data-fit-demo],
  body.sticky-cta-visible .fit-result-actions [data-fit-demo] {
    display: none;
  }
}

.fit-result-actions .button {
  width: 100%;
  min-height: 50px;
  padding-inline: 16px;
  border: 1.5px solid rgba(0, 127, 190, 0.55);
  color: var(--blue-dark);
  background: #fff;
  font-size: 0.96rem;
  font-weight: 850;
  box-shadow: 0 2px 8px rgba(16, 32, 51, 0.06);
}

.fit-result-actions .button:hover {
  border-color: var(--blue);
  background: #f3faff;
  box-shadow: 0 6px 18px rgba(0, 127, 190, 0.14);
}

@media (max-width: 620px) {
  .fit-result-actions {
    grid-template-columns: 1fr;
  }
}

.inline-lead-section {
  background: #fff;
}

.inline-lead-mini {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 63, 115, 0.96), rgba(0, 127, 190, 0.9)),
    var(--blue-dark);
  color: #fff;
  box-shadow: 0 22px 58px rgba(16, 32, 51, 0.12);
}

.inline-lead-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.14;
}

.inline-lead-copy > p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.inline-lead-action {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.inline-lead-action .button {
  justify-content: center;
  width: 100%;
  min-height: 50px;
}

.inline-lead-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.inline-lead-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 850;
}

.inline-lead-form label > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.inline-lead-form input[type="email"] {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
}

.inline-lead-form .button {
  min-height: 48px;
  white-space: nowrap;
}

.inline-lead-note,
.inline-lead-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.inline-lead-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-lead-status[data-state="error"] {
  color: #ffd7d7;
}

.conversion-section {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 560px)
    minmax(24px, 54px)
    minmax(360px, 520px)
    minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(5, 63, 115, 0.94), rgba(0, 127, 190, 0.9)),
    url("assets/hero-tablet.jpg") center / cover;
  color: white;
}

.lead-copy {
  grid-column: 2;
  max-width: 620px;
}

.conversion-section > .lead-form {
  grid-column: 4;
  justify-self: stretch;
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.lead-benefits li {
  color: rgba(255, 255, 255, 0.84);
}

.lead-benefits li::before {
  color: #9df0b8;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 800;
}

.job-section {
  background: var(--cloud);
}

.job-section + .job-section {
  padding-top: 0;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.job-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 44px rgba(16, 32, 51, 0.06);
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 999px;
  background: #eaf7fc;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.22;
}

.job-card p {
  margin: 0;
  font-size: 0.95rem;
}

.job-card .button,
.career-detail-aside .button,
.lead-form .button.full {
  width: 100%;
}

.career-detail-section {
  background: var(--paper);
}

.career-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.career-detail-content {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(16, 32, 51, 0.06);
}

.career-detail-content .eyebrow {
  color: var(--blue);
}

.career-detail-content h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.career-detail-content h2:first-of-type {
  margin-top: 10px;
}

.career-detail-content p {
  margin: 14px 0 0;
}

.career-detail-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.career-detail-content li {
  position: relative;
  padding-left: 22px;
  color: #4f6070;
  line-height: 1.58;
}

.career-detail-content li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.career-detail-aside {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 127, 190, 0.2);
  border-radius: var(--radius);
  background: #f7fbfd;
  box-shadow: 0 16px 44px rgba(16, 32, 51, 0.08);
}

.career-detail-aside h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.career-detail-aside dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.career-detail-aside dl div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.career-detail-aside dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.career-detail-aside dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.career-application {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(360px, 560px);
  justify-content: center;
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 167, 216, 0.13), transparent 34%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.career-application .lead-copy,
.career-application > .lead-form {
  grid-column: auto;
}

.career-application .lead-copy {
  display: grid;
  gap: 18px;
  max-width: none;
  justify-self: end;
  color: var(--ink);
}

.career-application .lead-copy h2 {
  max-width: 460px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.05;
}

.career-application .lead-copy .eyebrow {
  color: var(--blue);
}

.career-application .lead-copy p,
.career-application .lead-benefits {
  margin: 0;
  color: var(--muted);
}

.career-application .lead-benefits {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}

.career-application .lead-benefits li {
  display: grid;
  position: static;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #415367;
  line-height: 1.55;
}

.career-application .lead-benefits li::before {
  content: none;
}

.career-application .lead-benefits strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.career-application .lead-benefits span {
  color: #526477;
}

.career-application .lead-benefits a {
  color: var(--blue-dark);
  font-weight: 850;
}

.career-application > .lead-form {
  width: 100%;
  max-width: 560px;
  border: 1px solid rgba(0, 127, 190, 0.16);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 24px 66px rgba(16, 32, 51, 0.13);
}

.career-application--job .form-head strong {
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.28;
}

.career-application--job input[readonly] {
  border-color: rgba(0, 127, 190, 0.18);
  background: #f4f9fc;
  color: #415367;
}

.career-application .intent-segment {
  grid-column: 1 / -1;
}

.career-application .intent-cards-segment {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.career-application .intent-cards-segment label {
  min-height: 46px;
  padding: 9px 10px;
  gap: 2px;
}

.career-application .intent-cards-segment .opt-head {
  font-size: 0.86rem;
  line-height: 1.1;
}

.career-application .form-note {
  padding: 12px 14px;
  border: 1px dashed rgba(0, 127, 190, 0.24);
  border-radius: 8px;
  background: #f4fafc;
}

.rating {
  width: 244px;
  margin-top: 28px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: 0 22px 64px rgba(16, 32, 51, 0.18);
}

.form-head {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid #c8e8f5;
  border-radius: 8px;
  background: linear-gradient(135deg, #eff8fc, #f8fcfe);
}

.form-head span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-head strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.form-progress-label {
  margin: 0;
  color: #587084;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.form-step {
  display: grid;
  gap: 20px;
}

.form-step[hidden] {
  display: none;
}

.form-step-primary {
  grid-template-columns: 1fr;
}

.email-step-field {
  max-width: 100%;
}

.step-two-head {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 8px;
  background: #f7fbfd;
}

.step-two-head span {
  color: var(--blue-dark);
  font-weight: 900;
}

.step-two-head p {
  margin: 0;
  color: #536271;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-score {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: var(--radius);
  background: #eff8fc;
  border: 1px solid #c8e8f5;
}

.form-score span,
.form-score small {
  color: #5f7284;
}

.form-score strong {
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.challenge-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid #cfdbe4;
  border-radius: 6px;
}

.challenge-group legend {
  padding: 0 6px;
  color: #34495d;
  font-size: 0.93rem;
  font-weight: 750;
}

.challenge-group label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #4f6070;
  font-weight: 650;
}

.challenge-group input {
  width: 18px;
  min-height: 18px;
}

.lead-form .button {
  width: 100%;
}

.form-skip-details {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-skip-details[hidden] {
  display: none;
}

.form-skip-details:disabled {
  cursor: progress;
  opacity: 0.56;
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: #637382;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.lead-form .consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 2px;
  padding-top: 2px;
  list-style: none;
}

.lead-form .consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green, #38a169);
  cursor: pointer;
}

.lead-form .consent span {
  min-width: 0;
  line-height: 1.55;
}

/* Sicherheitsnetz: Checkboxen und Labels dürfen sitewide NIE als Listen-Bullet
   rendern (Chrome/Safari zeigten auf ≤430 px im /demo/-Formular Standard-Disc). */
.lead-form label,
.fit-lead-form label,
.lead-form .challenge-group label {
  list-style: none;
}
.lead-form input[type="checkbox"],
.fit-lead-form input[type="checkbox"] {
  flex-shrink: 0;
}

.lead-form .button.full {
  min-height: 54px;
  margin-top: 2px;
}

.calendar-fallback {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  border: 1px dashed rgba(0, 127, 190, 0.38);
  border-radius: 8px;
  background: #f7fbfd;
}

.calendar-fallback[hidden] {
  display: none;
}

.calendar-fallback strong {
  color: var(--blue-dark);
}

.calendar-fallback p {
  margin: 0;
  color: #566778;
  font-size: 0.9rem;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #6c7984;
  font-size: 0.88rem;
}

.assurance-section {
  background: white;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.assurance-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.assurance-grid p {
  margin: 12px 0 0;
}

/* --- FAQ: nummerierte Karten-Accordions --- */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.05);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item[open] {
  border-color: rgba(0, 127, 190, 0.35);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.09);
}

.faq-item > summary {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 800;
  transition: color 0.16s ease;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover {
  color: var(--blue);
}

.faq-q {
  flex: 1;
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--blue);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle {
  background: var(--blue);
  border-color: var(--blue);
}

.faq-item[open] .faq-toggle::before {
  background: #fff;
}

.faq-item[open] .faq-toggle::after {
  background: #fff;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
  padding: 0 24px 22px;
}

.faq-a p {
  margin: 0;
  color: #4f6070;
  line-height: 1.65;
}

.faq-contact {
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
}

.faq-contact a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 620px) {
  .faq-item > summary {
    padding: 16px;
    gap: 12px;
  }
  .faq-a {
    padding: 0 16px 18px;
  }
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #f7fafc;
  color: #607080;
}

.site-footer img {
  width: 112px;
}

.site-footer p {
  margin: 0 auto 0 0;
  color: #607080;
}

.site-footer a {
  color: #425467;
  font-weight: 750;
}

.site-footer .footer-col a {
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════════
   FIXED-LAYER Z-HIERARCHIE (Blick von oben, tiefer = sichtbarer)
   · 18/20    Sticky-Nav (.subpage-jumpbar 18, .glossary-topic-nav 20)
              — position:sticky, hängt unter dem Site-Header.
   · 25       .sticky-actions "Testzugang anfordern" (Mobile ≤840px)
   · 39       .exit-intent-layer (Desktop >840px only)
   · 40       .chat-launcher (Bubble)
   · 41       .chat-panel (offen)
   · 1000     .video-modal
   Sicherheitsabstand: Chat rutscht auf Mobile über die Sticky-CTA
   (siehe :has(.sticky-actions.sticky-visible)-Regel unten).
   Chat wird zusätzlich auf /kontakt/, /demo/, /danke/ nicht gerendert
   (SiteLayout.astro, M1-Kollision mit Consent-Checkbox/Form-Bottom). */
.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  grid-template-columns: minmax(0, 1fr);
}

.sticky-demo {
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.22);
  font-weight: 850;
}

.sticky-primary {
  display: inline-flex;
  background: var(--green);
  color: white;
}

.exit-intent-layer {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 39;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  width: min(440px, calc(100vw - 44px));
  padding: 20px;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 0%, rgba(145, 230, 255, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 251, 0.98));
  box-shadow: 0 26px 70px rgba(16, 32, 51, 0.18);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.exit-intent-layer[hidden] {
  display: none;
}

.exit-intent-layer.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.exit-intent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #657789;
  cursor: pointer;
}

.exit-intent-close:hover {
  color: var(--blue-dark);
  border-color: rgba(0, 127, 190, 0.28);
}

.exit-intent-close svg {
  width: 16px;
  height: 16px;
}

.exit-intent-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 127, 190, 0.12), rgba(112, 185, 60, 0.14));
  color: var(--blue-dark);
}

.exit-intent-icon svg {
  width: 27px;
  height: 27px;
}

.exit-intent-layer h2 {
  max-width: 300px;
  margin: 0;
  padding-right: 24px;
  font-size: 1.22rem;
  line-height: 1.14;
}

.exit-intent-layer p:not(.eyebrow) {
  margin: 8px 0 14px;
  color: #4f6070;
  font-size: 0.94rem;
  line-height: 1.5;
}

.exit-intent-layer .button {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.9rem;
}

/* Sticky-CTA: auf Mobile immer sichtbar (direkter Conversion-Punkt) */
@media (max-width: 840px) {
  .sticky-actions {
    display: grid;
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .exit-intent-layer {
    display: none !important;
  }
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 250ms ease-out,
    transform 250ms ease-out;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes brandLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes logoDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  to {
    transform: translate3d(-18px, 14px, 0) rotate(2deg);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.12;
    transform: translateX(-16px) scaleX(0.72);
  }

  50% {
    opacity: 0.9;
    transform: translateX(18px) scaleX(1);
  }
}

@keyframes rhythm {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .proof-module-grid,
  .roi-section,
  .roi-calculator-shell,
  .fit-wizard-shell,
  .fit-wizard-page .fit-wizard-shell,
  .inline-lead-mini,
  .integration-inner,
  .conversion-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .roi-calculator-copy,
  .fit-wizard-intro {
    position: static;
  }

  .lead-copy,
  .conversion-section > .lead-form,
  .demo-form-column,
  .demo-trust-column {
    grid-column: 1;
  }

  .hero {
    min-height: auto;
  }

  .glossary-hero-inner,
  .glossary-group-heading {
    grid-template-columns: 1fr;
  }

  .glossary-hero-facts,
  .glossary-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split > div:first-child {
    position: static;
  }

  .integration-copy,
  .integration-visual {
    justify-self: stretch;
    max-width: none;
  }

  .integration-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glossary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .integration-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-groups {
    grid-template-columns: 1fr;
  }

  .integration-groups article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .integration-visual-flow {
    grid-template-columns: 1fr;
  }

  .integration-visual-flow i {
    width: 2px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, #96cfe8, #008fd3);
  }

  .integration-visual-flow i::after {
    top: auto;
    right: 50%;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 66px;
  }

  .logo-strip-head,
  .reference-video-deck {
    grid-template-columns: 1fr;
  }

  .logo-strip-showcase .logo-strip-rating {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobiles Menü: Fullscreen-Overlay ab Header-Bottom bis Viewport-Boden.
     Deckendes weißes Panel (Content darunter scrollt nicht durch), inkl.
     Body-Scroll-Lock via html.nav-open (siehe Header.astro-Script). */
  .main-nav {
    position: fixed;
    top: 66px; /* deckt sich mit .site-header min-height im Mobile-Modus */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px clamp(20px, 4vw, 58px) 32px;
    background: var(--surface, #fff);
    box-shadow: 0 18px 32px rgba(16, 32, 51, 0.08);
  }

  .nav-open .main-nav {
    display: flex;
  }

  /* Scrim: unterhalb des Header-Bottoms halbtransparent, damit auch bei
     schmalen Panels der Rest des Viewports optisch als "Overlay" gelesen wird.
     Da .main-nav bereits full-width/height ist, ist der Scrim nur ein sanfter
     Übergang oben — sichtbar, wenn das Panel unterhalb der Header-Kante steht. */
  .nav-open::before {
    content: "";
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(16, 32, 51, 0.32);
    pointer-events: none;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(223, 231, 236, 0.6);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  /* Mobile-Nav-Extras (Telefon / DE-EN / CTA): unten im Panel gebündelt,
     mit auto-margin nach oben abgesetzt vom Nav-Content. */
  .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(223, 231, 236, 0.7);
  }

  .mobile-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--blue-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 0;
  }

  .mobile-nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .mobile-nav-lang a,
  .mobile-nav-lang span {
    padding: 6px 12px;
    border-radius: 8px;
    color: #567;
    text-decoration: none;
    border: 1px solid rgba(223, 231, 236, 0.8);
  }

  .mobile-nav-lang a[aria-current="true"] {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .mobile-nav-lang span[aria-disabled="true"] {
    opacity: 0.5;
  }

  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    margin-top: 6px;
    border-radius: var(--radius);
    background: var(--green);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(56, 161, 105, 0.28);
    border-bottom: 0;
  }

  .subpage-jumpbar {
    top: 66px;
    gap: 6px;
    padding-inline: 16px;
  }

  .subpage-jumpbar span {
    font-size: 0.72rem;
  }

  .subpage-jumpbar a {
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .logos {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
  }

  .subpage-snapshot-grid,
  .subpage-flow {
    grid-template-columns: 1fr;
  }

  .subpage-flow li {
    min-height: 0;
  }

  .subpage-flow li::after {
    display: none;
  }

  .outcomes,
  .process-grid,
  .info-grid,
  .process-grid.grid-count-4,
  .process-grid.grid-count-8,
  .info-grid.grid-count-4,
  .info-grid.grid-count-8,
  .glossary-grid,
  .glossary-featured-grid,
  .showcase-grid,
  .pain-grid,
  .intent-grid,
  .segment-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .intent-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .intent-featured .intent-card-link,
  .intent-featured .intent-card-link strong,
  .intent-featured .intent-card-link p,
  .intent-featured .intent-card-link small,
  .intent-featured .intent-card-link .go {
    grid-column: auto;
    grid-row: auto;
  }

  .intent-featured .intent-card-link {
    grid-template-columns: 1fr;
  }

  .glossary-topic-nav {
    top: 66px;
  }

  .glossary-hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .quick-check {
    grid-template-columns: 1fr 1fr;
  }

  .feature-shot-large {
    grid-row: auto;
  }

  .wms-intro-criteria-grid .info-grid,
  .wms-intro-process-modules .process-grid {
    grid-template-columns: 1fr;
  }

  .wms-intro-process-modules .process-grid article,
  .wms-intro-process-modules .process-grid article:nth-child(4),
  .wms-intro-process-modules .process-grid article:nth-child(5) {
    grid-column: auto;
    min-height: 0;
  }

  .wms-intro-flow .subpage-flow::before {
    left: 26px;
  }

  .wms-intro-flow .subpage-flow li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0 16px;
  }

  .wms-intro-flow .subpage-flow span {
    width: 52px;
    height: 40px;
  }

  .metric-a {
    left: 12px;
  }

  .numbers-band-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

  .price-anchor-shell {
    grid-template-columns: 1fr;
  }

  .price-package-grid {
    grid-template-columns: 1fr;
  }

  .roi-teaser,
  .closing-reference,
  .closing-tour-card,
  .lead-magnet-inline,
  .roi-email-form,
  .fit-wizard-actions,
  .career-teaser-card,
  .inline-lead-form label > span {
    grid-template-columns: 1fr;
  }

  .roi-teaser .button,
  .closing-reference .button,
  .closing-tour-card .button,
  .lead-magnet-action .button,
  .roi-email-form .button,
  .fit-wizard-actions .button,
  .career-teaser-card .button,
  .inline-lead-form .button {
    width: 100%;
  }

  .lead-magnet-mark {
    width: 108px;
  }

  .lead-magnet-action {
    justify-items: stretch;
  }
}

@media (max-width: 620px) {
  .webinar-announcement {
    gap: 7px;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .webinar-announcement > span:not(.webinar-announcement__dot):not(.webinar-announcement__cta) {
    display: none;
  }

  .site-header {
    gap: 12px;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-cta {
    display: none;
  }

  .brand img {
    width: 112px;
  }

  .logo-strip-row {
    grid-template-columns: 1fr;
  }

  .logo-strip-row button {
    display: none;
  }

  .logo-strip-row .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-width: 0;
    width: 100%;
    padding-top: 42px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-strip,
  .section,
  .site-footer {
    width: 100%;
  }

  .hero-content,
  .hero-copy,
  .cta-note,
  .hero-actions,
  .proof-points,
  .hero-customer-proof,
  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-customer-proof div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .proof-points span {
    width: 100%;
    min-width: 0;
  }

  .metric {
    position: static;
    min-width: 0;
    margin-top: 10px;
  }

  .numbers-band {
    padding: 14px 20px 18px;
  }

  .numbers-band-head {
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
    text-align: center;
  }

  .numbers-band-head strong {
    font-size: 0.78rem;
  }

  .numbers-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 390px;
  }

  .numbers-band-item {
    min-height: auto;
    padding: 13px 12px 12px;
    text-align: center;
  }

  .numbers-band-item strong {
    font-size: 1.28rem;
  }

  .numbers-band-item span {
    font-size: 0.74rem;
  }

  .numbers-band-item small {
    font-size: 0.68rem;
  }

  .numbers-band-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .price-anchor {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price-package-card {
    padding: 20px;
  }

  .price-anchor-head h2 {
    font-size: 1.72rem;
  }

  .price-anchor-action {
    align-items: stretch;
    flex-direction: column;
    max-width: 100%;
  }

  .price-anchor-action .button {
    width: 100%;
  }

  .price-anchor-action strong {
    font-size: 2rem;
    white-space: normal;
  }

  .roi-calculator-section,
  .roi-teaser-section,
  .closing-reference-section,
  .closing-tour-section,
  .lead-magnet-inline-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .roi-calculator {
    padding: 18px;
  }

  .roi-inputs,
  .roi-results,
  .roi-result-handoff,
  .roi-assumption-grid,
  .fit-options {
    grid-template-columns: 1fr;
  }

  .roi-result-handoff .button {
    width: 100%;
  }

  .roi-assumptions summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .roi-assumptions summary small {
    text-align: left;
  }

  .fit-wizard-section,
  .fit-wizard-page,
  .inline-lead-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fit-wizard-shell,
  .fit-wizard-page .fit-wizard-shell {
    width: 100%;
    max-width: 100%;
    gap: 18px;
  }

  .fit-wizard-page .fit-wizard-intro {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .fit-wizard-intro h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .fit-wizard-card,
  .fit-result-card {
    padding: 18px;
    width: 100%;
    min-height: auto;
  }

  .fit-wizard-page .fit-wizard-card {
    min-height: auto;
  }

  .fit-result-card {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .fit-result-summary {
    padding: 18px 18px 0;
  }

  .fit-case-card,
  .fit-lead-form,
  .fit-result-actions {
    margin-inline: 18px;
  }

  .fit-result-actions {
    margin-bottom: 18px;
  }

  .fit-lead-email > span,
  .fit-result-actions {
    grid-template-columns: 1fr;
  }

  .fit-options button {
    min-height: 64px;
  }

  .inline-lead-mini {
    padding: 20px;
  }

  .lead-magnet-inline {
    padding: 20px;
  }

  .lead-magnet-mark {
    width: 94px;
  }

  .inline-lead-form {
    padding: 16px;
  }

  .roi-results article {
    min-height: 132px;
  }

  .logos {
    grid-template-columns: repeat(2, minmax(86px, 1fr));
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .quick-check,
  .challenge-group {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 82px;
  }

  .sticky-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
  }

  .sticky-demo {
    padding: 0 12px;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .numbers-band-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header-shell,
  .site-header,
  .site-footer,
  .chat-launcher,
  .chat-panel,
  .exit-intent-layer,
  .sticky-actions,
  .hero,
  .trust-badge-section,
  .answer-section,
  .faq-section,
  .cta-band,
  .roi-calculator-copy,
  .roi-email-form {
    display: none !important;
  }

  .roi-calculator-section {
    background: #fff;
    padding: 0;
  }

  .roi-calculator-hero {
    padding: 44px 0 28px;
    background:
      radial-gradient(circle at 82% 8%, rgba(0, 167, 216, 0.22), transparent 38%),
      linear-gradient(135deg, #0b253d 0%, #064266 100%);
  }

  .roi-calculator-shell,
  .roi-calculator {
    display: block;
    max-width: none;
    box-shadow: none;
    border: 0;
  }

  .roi-calculator-hero .roi-calculator-shell {
    display: grid;
    gap: 18px;
    max-width: min(100%, 720px);
    padding-inline: 18px;
  }

  .roi-calculator-hero .roi-calculator-copy {
    display: grid !important;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .roi-calculator-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .roi-calculator-hero .roi-proof-list {
    gap: 8px;
    margin-top: 18px;
  }

  .roi-calculator-hero .roi-calculator {
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .roi-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- Demo: Trust-Flanke neben dem Formular --- */
.lead-copy .testimonial {
  margin: 28px 0 0;
  padding: 20px 22px;
  text-align: left;
}

.lead-copy .testimonial blockquote {
  font-size: 0.98rem;
}

.lead-copy .testimonial figcaption {
  justify-content: flex-start;
}

.lead-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 18px;
}

.lead-logos span {
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-logos img {
  height: 32px;
  width: auto;
  padding: 5px 10px;
  border-radius: 6px;
  background: white;
}

/* --- Lead-Form: optionale Qualifizierungsfelder (Stufe 2) --- */
.intent-segment {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.intent-segment legend {
  display: block;
  margin-bottom: 14px;
  padding: 0;
  color: #34495d;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.intent-cards-segment {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.intent-cards-segment label {
  position: relative;
  min-height: 86px;
  align-content: center;
  gap: 6px;
  padding: 15px 12px;
  border-radius: 8px;
  text-align: center;
}

.intent-cards-segment label:has(input:checked) {
  border-color: var(--blue-dark);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 12px 28px rgba(5, 63, 115, 0.18);
}

.intent-cards-segment label:has(input:checked) span {
  color: #fff;
}

.intent-cards-segment input {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  cursor: pointer;
}

.intent-cards-segment .opt-head {
  justify-content: center;
  color: var(--blue-dark);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.intent-cards-segment span {
  font-size: 0.8rem;
  line-height: 1.32;
}

.lead-form .form-more {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cloud);
}

.lead-form .form-more summary {
  padding: 14px 16px;
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 800;
}

.lead-form .form-more summary span {
  color: #6c7984;
  font-weight: 650;
}

.lead-form .form-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 2px 16px 16px;
}

/* --- Sticky-CTA: erst nach Scroll einblenden (per JS-Klasse) --- */
.sticky-actions.sticky-wait {
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-actions.sticky-wait.sticky-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Intent-Kacheln: Wörter wie „Integrationscheck" dürfen nicht mitten im Wort
   getrennt werden, und ungleiche Zeilenhöhen sind visuell unruhig. */
.intent-cards-segment label {
  align-content: start;
  hyphens: manual;
  -webkit-hyphens: manual;
  word-break: keep-all;
}
.intent-cards-segment .opt-head {
  hyphens: manual;
  -webkit-hyphens: manual;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 620px) {
  .intent-cards.intent-cards-segment {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intent-cards-segment label {
    min-height: 74px;
  }

  .lead-form .form-more-grid {
    grid-template-columns: 1fr;
  }
}

/* Unter ~480 px reicht der Platz für „Integrationscheck" in 2 Spalten nicht;
   1 Spalte gibt volle Wortlänge + gleichmäßige Höhen. */
@media (max-width: 480px) {
  .intent-cards.intent-cards-segment {
    grid-template-columns: 1fr;
  }
  .intent-cards-segment label {
    min-height: 0;
    padding: 14px 16px;
  }
}

/* --- Referenzen-Sektion: Kundenvideo + Zitat + Branchen --- */
/* Einheit: Kundenvideo + passendes Zitat, gleiche Höhe */
.proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 44px;
}

.featured-video-block + .featured-video-block {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.video-card {
  margin: 0;
  display: flex;
  width: 100%;
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.video-facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-facade-logo {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 76% 12%, rgba(145, 230, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #f7fbfd 0%, #e7f6fc 100%);
}

.video-facade-logo img {
  width: min(58%, 360px);
  height: auto;
  max-height: 180px;
  object-fit: contain;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(0, 127, 190, 0.94);
  color: white;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s ease, background 0.18s ease;
}

.video-play svg {
  margin-left: 4px;
}

.video-facade:hover .video-play,
.video-facade:focus-visible .video-play {
  transform: scale(1.08);
  background: var(--green);
}

.video-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 29, 48, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(4px);
}

.proof-feature iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* Zitat als eigenständige, ruhige Karte */
.proof-quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-quote-mark {
  font-size: 4rem;
  line-height: 0.4;
  color: var(--cyan);
  height: 28px;
}

.proof-quote-card blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 650;
  line-height: 1.45;
}

.proof-quote-card .case-proof-badge {
  margin-top: -4px;
}

.proof-quote-card figcaption {
  display: grid;
  gap: 2px;
}

.proof-quote-logo {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-quote-card figcaption strong {
  color: #fff;
  font-size: 1.02rem;
}

.proof-quote-card figcaption span:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

/* Getrennter Block: Branchen */
.proof-branches-head {
  max-width: 1180px;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.branch-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.branch-grid h3 {
  margin-bottom: 6px;
  color: white;
  font-size: 0.96rem;
}

.branch-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .branch-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .proof-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .proof-points span {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }
}

/* --- Header-Telefon (nur Desktop) --- */
.header-phone {
  display: none;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--blue);
}

.header-phone:hover {
  color: var(--blue);
}

@media (min-width: 1024px) {
  .header-phone {
    display: inline-flex;
  }
}

/* --- Hero: Risk-Reducer-Microcopy unter den CTAs --- */
.hero-cta-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 400;
}


/* --- even logistics: unabhängiges Bewertungs-Trustsignal --- */
.even-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.05);
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.even-rating:hover {
  border-color: rgba(0, 127, 190, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.even-stars {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 2px;
}
.even-stars-base {
  color: #d6dde3;
}
.even-stars-fill {
  position: absolute;
  inset: 0;
  width: var(--pct);
  overflow: hidden;
  color: #f5a623;
  white-space: nowrap;
}
.even-rating strong {
  color: var(--ink);
  font-weight: 850;
}
.even-rating-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
}
.even-rating-logo {
  height: 14px;
  width: auto;
  transform: translateY(1px);
}
.even-rating-ext {
  color: #9aa6b1;
}
.even-rating-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

/* Trust-Zeile unter dem Logo-Strip */
.logo-strip-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 24px;
}
.logo-strip-award {
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
}
.logo-strip-award::first-letter {
  color: var(--amber);
}

/* --- COGLAS Chat-Widget (Lead-Vorqualifizierung) --- */
.chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(56, 161, 105, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(56, 161, 105, 0.42);
}
.chat-launcher svg {
  width: 20px;
  height: 20px;
}
.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 41;
  display: none;
  flex-direction: column;
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 40px));
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(8, 20, 35, 0.34);
  animation: chatIn 0.22s ease-out;
}
.chat-open .chat-panel {
  display: flex;
}
.chat-open .chat-launcher {
  display: none;
}

/* Sicherheitsabstand zur Sticky-CTA (Mobile ≤840px): sobald die Sticky-Bar
   eingeblendet ist (.sticky-visible), rutscht die Chat-Bubble/das Chat-Panel
   nach oben, damit beide Fixed-Layer sich nicht überlagern. Beide sind grün —
   sonst Farbdopplung. Zusätzlich zum :has()-Fallback (Firefox 121+, Safari
   15.4+, Chrome 105+) versteckt eine JS-getriggerte Body-Klasse
   `.sticky-cta-visible` den Chat-Launcher zuverlässig auf Mobile — kein
   Overlap, keine Farbkollision. */
@media (max-width: 840px) {
  body:has(.sticky-actions.sticky-visible) .chat-launcher,
  body.sticky-cta-visible .chat-launcher {
    display: none;
  }
  body:has(.sticky-actions.sticky-visible) .chat-panel,
  body.sticky-cta-visible .chat-panel {
    bottom: 84px;
  }
}
@keyframes chatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 167, 216, 0.4), transparent 45%),
    linear-gradient(135deg, #071d30 0%, #0a466f 70%);
  color: #fff;
}
.chat-head img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.chat-head-meta {
  flex: 1;
  min-width: 0;
}
.chat-head-meta strong {
  display: block;
  font-size: 0.98rem;
}
.chat-head-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}
.chat-head-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}
.chat-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
}
.chat-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background: #f4f7fa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  display: flex;
  gap: 9px;
  align-items: flex-end;
}
.chat-msg img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.chat-bubble {
  max-width: 80%;
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(16, 32, 51, 0.06);
}
.chat-msg-user {
  justify-content: flex-end;
}
.chat-msg-user .chat-bubble {
  border-radius: 16px 16px 4px 16px;
  background: var(--blue);
  color: #fff;
}
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.chat-quick button {
  padding: 9px 14px;
  border: 1px solid rgba(0, 127, 190, 0.3);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}
.chat-quick button:hover {
  background: #eef6fb;
  border-color: var(--blue);
}
.chat-quick-followup {
  margin-top: 6px;
}
.chat-quick button.chat-quick-cta {
  background: var(--green, #16a34a);
  border-color: var(--green, #16a34a);
  color: #fff;
}
.chat-quick button.chat-quick-cta:hover {
  background: #128a3d;
  border-color: #128a3d;
}
.chat-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat-foot p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
}
.chat-foot form {
  display: grid;
  gap: 8px;
}
.chat-foot input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
}
.chat-foot button {
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.chat-foot button:hover {
  background: #2d8f5a;
}
.chat-foot small {
  display: block;
  margin-top: 8px;
  color: #8a96a2;
  font-size: 0.74rem;
}
.chat-foot small a {
  color: var(--blue-dark);
  text-decoration: underline;
}
@media (max-width: 840px) {
  .chat-launcher {
    bottom: 84px;
  }
  .chat-panel {
    bottom: 12px;
    right: 12px;
  }
}

/* --- Demo-Seite: conversion-section als prominenter Seitenstart --- */
.conversion-top {
  padding-top: clamp(38px, 5vw, 60px);
}
.conversion-top .lead-copy h1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 6px;
  color: #fff;
}

.demo-conversion {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(480px, 650px)
    minmax(300px, 400px)
    minmax(0, 1fr);
  gap: 22px clamp(20px, 3vw, 44px);
  align-items: start;
  background: linear-gradient(135deg, #042f56 0%, #075483 52%, #0b6f9b 100%);
}

.demo-hero-copy {
  grid-column: 2 / 4;
  max-width: 960px;
}

.demo-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2.05rem, 3.15vw, 3rem);
  line-height: 1.05;
}

.demo-hero-copy > p:not(.eyebrow) {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.55;
}

.demo-form-column {
  grid-column: 2;
  align-self: start;
  max-width: 650px;
}

.demo-form-column .lead-form {
  border: 1px solid rgba(223, 231, 236, 0.88);
  background: var(--paper);
}

.demo-conversion .lead-form,
.demo-trust-column,
.demo-faq .section-heading {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Trust-Column: flex statt grid, damit direct-contact via margin-top:auto am
   unteren Rand sitzt und der Leerraum unter der even°-Card nach Aufklappen von
   „Weitere Angaben" absorbiert wird (CG-Feedback 2026-07-09). */
.demo-trust-column {
  grid-column: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(223, 231, 236, 0.95);
  border-radius: var(--radius);
  background: #f8fbfd;
  box-shadow: 0 24px 60px rgba(3, 31, 58, 0.2);
}
.demo-trust-column .direct-contact {
  margin-top: auto;
}

.demo-rating-card,
.demo-trust-list li,
.demo-next-card,
.demo-contact-card {
  border: 1px solid rgba(207, 219, 228, 0.95);
  border-radius: 8px;
  background: #fff;
}

.demo-rating-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 18px;
  background: linear-gradient(135deg, #ffffff, #f3f9fd);
}

.demo-rating-score {
  display: grid;
  gap: 5px;
}

.demo-stars {
  color: #f5b125;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.demo-rating-card strong {
  color: var(--blue-dark);
  font-size: clamp(1.85rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.demo-rating-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 167, 216, 0.16);
  border-radius: 999px;
  background: rgba(238, 248, 255, 0.9);
}

.demo-rating-brand img {
  display: block;
  width: 82px;
  height: auto;
}

.demo-trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-trust-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: start;
  padding: 13px 15px;
  position: relative;
}

.demo-trust-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #e8f7fc;
  color: var(--blue);
}

.demo-trust-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.demo-trust-list span {
  color: #536271;
  font-size: 0.88rem;
  line-height: 1.38;
}

.demo-trust-list li > span:not(.demo-trust-icon) {
  grid-column: 2;
}

.demo-next-card {
  display: grid;
  gap: 6px;
  padding: 15px 17px;
  border-color: rgba(0, 127, 190, 0.22);
  background: linear-gradient(135deg, #eef9fd, #ffffff);
}

.demo-next-card span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.demo-next-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.demo-next-card p {
  margin: 0;
  color: #536271;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.38;
}

.demo-contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 16px;
}

.demo-contact-photo {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 900;
}

.demo-contact-card figcaption {
  display: grid;
  gap: 3px;
}

.demo-contact-card strong {
  color: var(--ink);
}

.demo-contact-card span {
  color: #536271;
  font-size: 0.86rem;
  line-height: 1.35;
}

.demo-trust-column .direct-contact {
  align-self: end;
  gap: 8px;
  margin-top: 0;
}

.demo-trust-column .direct-contact a {
  min-height: 38px;
  min-width: 0;
  padding: 0 11px;
  border-color: rgba(0, 127, 190, 0.22);
  background: #fff;
  color: var(--blue-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Trust-Spalte bleibt bis 900 px neben dem Formular (deckt iPad-Landscape 1024
   sowie schmalere Desktops ab). Erst darunter stackt sie unter das Formular. */
@media (max-width: 900px) {
  .demo-conversion {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .demo-hero-copy,
  .demo-form-column,
  .demo-trust-column {
    grid-column: 1;
    max-width: none;
  }

  .demo-trust-column {
    order: 2;
  }
}

@media (max-width: 620px) {
  .demo-conversion {
    padding-top: 38px;
  }

  .demo-hero-copy h1 {
    font-size: 2rem;
  }

  .demo-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .demo-trust-column {
    padding: 18px;
  }
}

/* --- Screenshot-Feature-Reihen (alternierend Bild/Text) --- */
.feature-rows {
  display: grid;
  gap: clamp(48px, 6vw, 84px);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.feature-row-reverse .feature-row-text {
  order: 2;
}

.feature-row-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e7f6fc;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-row-text h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.16;
}

.feature-row-text > p {
  margin: 14px 0 0;
  max-width: 460px;
  font-size: 1.04rem;
}

.feature-row-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-row-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 650;
}

.feature-row-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(56, 161, 105, 0.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2338a169' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* Browser-Frame um Produkt-Screenshots */
.browser-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px rgba(16, 32, 51, 0.13);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 12px 16px;
  background: #f1f5f8;
  border-bottom: 1px solid var(--line);
}

.browser-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cdd7df;
}

.browser-bar i:nth-child(1) { background: #f5a8a3; }
.browser-bar i:nth-child(2) { background: #f5d28a; }
.browser-bar i:nth-child(3) { background: #a3d8b0; }

.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .media-split {
    grid-template-columns: 1fr;
  }

  .job-list,
  .career-detail-layout,
  .career-application {
    grid-template-columns: 1fr;
  }

  .career-application .lead-copy,
  .career-application > .lead-form {
    justify-self: stretch;
    max-width: none;
  }

  .media-split-copy {
    max-width: none;
  }

  .career-detail-aside {
    position: static;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-row-reverse .feature-row-text {
    order: 0;
  }
}

@media (max-width: 1100px) {
  .company-values-band .outcomes,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .company-values-band .outcomes,
  .events-grid,
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 0;
  }

  .event-date {
    min-height: 150px;
  }

  .event-date strong {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-split *,
  .media-placeholder-frame * {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* --- Dropdown-Navigation nach Entscheidungswegen --- */
.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: #2d4053;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-group-trigger:hover,
.nav-group:focus-within .nav-group-trigger,
.nav-group.is-hover-open .nav-group-trigger,
.nav-group.is-open .nav-group-trigger {
  color: var(--blue);
}

.nav-group-trigger[aria-current="true"] {
  color: var(--blue-dark);
}

.nav-group-trigger:focus-visible,
.nav-direct-link:focus-visible,
.nav-dropdown a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(0, 127, 190, 0.45);
  outline-offset: 3px;
}

.nav-chevron {
  transition: transform 0.2s ease;
}

.nav-group:hover .nav-chevron,
.nav-group.is-hover-open .nav-chevron,
.nav-group.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 330px;
  padding: 8px;
  border: 1px solid rgba(198, 211, 222, 0.72);
  border-radius: 12px;
  background: var(--surface, #fff);
  box-shadow: 0 12px 32px rgba(10, 30, 50, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 110;
}

.nav-group:hover .nav-dropdown,
.nav-group.is-hover-open .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: grid;
  gap: 1px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.14s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #eef8ff;
}

.nav-dropdown a[aria-current="page"] {
  background: #eef6fb;
}

.nav-dropdown strong {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-dropdown span {
  color: var(--muted);
  font-size: 0.81rem;
}

.nav-dropdown-knowledge {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  min-width: 560px;
}

.nav-dropdown-product {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  min-width: min(820px, calc(100vw - 40px));
}

.nav-dropdown-section {
  display: grid;
  gap: 2px;
  align-content: start;
}

.nav-dropdown-section:first-child {
  grid-row: span 2;
}

.nav-dropdown-product .nav-dropdown-section:first-child {
  grid-row: auto;
}

.nav-dropdown-label {
  margin: 0;
  padding: 6px 12px 4px;
  color: #778695;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-dropdown-section-links {
  display: grid;
  gap: 2px;
}

@media (max-width: 1120px) {
  /* Im Burger-Panel: Gruppen als ausklappbare Listen, kein Overlay */
  .nav-group {
    width: 100%;
  }
  .nav-group-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(223, 231, 236, 0.6);
    font-size: 1rem;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    padding: 4px 0 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-dropdown-knowledge {
    grid-template-columns: 1fr;
    gap: 8px;
    min-width: 0;
  }
  .nav-dropdown-product {
    grid-template-columns: 1fr;
    gap: 8px;
    min-width: 0;
  }
  .nav-dropdown-section:first-child {
    grid-row: auto;
  }
  .nav-dropdown-label {
    padding: 10px 10px 2px;
  }
  .nav-group.is-open .nav-dropdown {
    display: grid;
  }
  .nav-dropdown a {
    padding: 10px 10px;
    border-bottom: 0;
  }
}

/* --- Kundenstimmen-Wall (Masonry, rankscale-Prinzip) --- */
.testimonial-wall {
  background: linear-gradient(180deg, #ffffff 0%, var(--cloud) 100%);
}

.tw-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.tw-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  margin: 0;
  padding: 24px 24px 22px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 0%, rgba(0, 167, 216, 0.22), transparent 52%),
    linear-gradient(150deg, #0a2f52 0%, #08395f 60%, #07314c 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(8, 28, 48, 0.18);
}

.tw-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  margin-bottom: 0;
  /* N2-Fix 2026-07-09: Wenn die Karte zu schmal wird, sollen Sterne und
     "Verifiziert"-Pill sauber umbrechen (nicht ineinander gedrückt oder
     mitten in der Pill zerrissen). */
  flex-wrap: wrap;
}

.tw-stars {
  color: #f5b125;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.tw-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.16);
  color: #8ff0b0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  /* N2-Fix 2026-07-09: Pill nie in sich zerreißen. */
  white-space: nowrap;
}

.tw-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.6;
  /* Feste Zitat-Höhe (4 Zeilen): kurze Zitate werden aufgefüllt, sehr lange sauber
     begrenzt. So sitzen Badge und Name auf allen Karten auf identischer Höhe und die
     Wand wirkt ruhig statt springend. */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.4em;
}

.tw-card .case-proof-badge {
  margin: 0;
}

.reference-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.reference-case-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.045);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.reference-case-card:hover,
.reference-case-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 127, 190, 0.28);
  box-shadow: var(--shadow-soft);
}

.reference-case-card .label {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e7f6fc;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reference-case-card strong {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.28;
}

.reference-case-card p {
  margin: 0;
  font-size: 0.95rem;
}

.reference-card-proof {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 127, 190, 0.2);
  border-radius: 999px;
  background: rgba(0, 127, 190, 0.08);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

.reference-case-card .go {
  margin-top: 4px;
  color: var(--blue);
  font-weight: 850;
}

.reference-case-video .go {
  color: var(--green);
}

.news-case-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(0, 167, 216, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.news-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.news-case-hero-copy {
  display: grid;
  gap: 18px;
}

.news-case-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.06;
}

.news-case-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #435568;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.62;
}

.news-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-case-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.news-case-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 190, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(16, 32, 51, 0.14);
}

.news-case-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-case-main {
  display: grid;
  grid-template-columns: minmax(190px, 0.26fr) minmax(0, 0.74fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.news-case-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.06);
}

.news-case-toc strong {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-case-toc a {
  color: #526477;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.news-case-toc a:hover {
  color: var(--blue);
}

.news-case-article {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  max-width: 840px;
}

.news-case-intro,
.news-case-section {
  display: grid;
  gap: 16px;
}

.news-case-intro p,
.news-case-section p,
.news-case-section li {
  margin: 0;
  color: #435568;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.news-case-section {
  scroll-margin-top: 96px;
  padding-top: 4px;
}

.news-case-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.news-case-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-case-section li {
  position: relative;
  padding-left: 24px;
}

.news-case-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.news-case-video {
  margin: 0;
}

.news-case-video .video-facade {
  border-color: rgba(0, 127, 190, 0.16);
  border-radius: 8px;
  background: #071d30;
  box-shadow: 0 24px 62px rgba(16, 32, 51, 0.16);
}

.news-case-video .video-facade img {
  aspect-ratio: 16 / 9;
}

.news-case-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(16, 32, 51, 0.16);
}

.news-case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 0;
}

.news-case-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 190, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 32, 51, 0.08);
}

.news-case-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.case-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 8px 11px;
  border: 1px solid rgba(145, 230, 255, 0.24);
  border-radius: 999px;
  background: rgba(145, 230, 255, 0.1);
  color: #d7f7ff;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

.case-proof-badge-unconfirmed {
  border-color: rgba(245, 177, 37, 0.38);
  background: rgba(245, 177, 37, 0.14);
  color: #fff3d5;
}

.proof-review-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f5b125;
  color: #102033;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cluster-grid .case-proof-badge {
  margin-top: 2px;
  border-color: rgba(0, 127, 190, 0.2);
  background: rgba(0, 127, 190, 0.08);
  color: var(--blue-dark);
}

.cluster-grid .case-proof-badge-unconfirmed,
.closing-reference .case-proof-badge-unconfirmed {
  border-color: rgba(245, 177, 37, 0.42);
  background: rgba(245, 177, 37, 0.16);
  color: #7a5200;
}

.tw-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tw-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.tw-meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.tw-meta strong {
  color: #fff;
  font-size: 0.94rem;
}

.tw-meta > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .tw-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reference-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-case-hero-grid,
  .news-case-main {
    grid-template-columns: 1fr;
  }
  .news-case-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .tw-grid { grid-template-columns: 1fr; }
  .reference-case-grid { grid-template-columns: 1fr; }
  .reference-case-card { min-height: 0; }
  .news-case-gallery {
    grid-template-columns: 1fr;
  }
  .news-case-hero-copy .hero-actions,
  .references-final-cta .hero-actions {
    align-items: stretch;
  }
}

@media (max-width: 1120px) {
  .site-header .header-end {
    margin-left: auto;
  }

  .site-header .nav-toggle {
    display: flex !important;
    flex: 0 0 42px;
  }
}

@media (max-width: 620px) {
  .site-header .header-end {
    gap: 8px;
  }

  .language-switcher {
    display: none;
  }
}

/* --- Interaktiver Tool-Showcase (Tabs + Screenshot-Bühne) --- */
.ts-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 38px;
}
.ts-tab {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.ts-tab:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}
.ts-tab[aria-selected="true"] {
  background: #fff;
  border-color: #fff;
  color: var(--blue-dark);
}

.ts-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.ts-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  animation: tsfade 0.32s ease;
}
.ts-panel[hidden] {
  display: none;
}
@keyframes tsfade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.ts-text h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.16;
  margin-bottom: 20px;
}
.ts-tour-hint {
  margin: -8px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}
.ts-points {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ts;
}
.ts-points li {
  counter-increment: ts;
  position: relative;
  min-height: 54px;
  padding: 13px 16px 13px 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 34px rgba(3, 16, 35, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.42;
}
.ts-points li::before {
  content: counter(ts);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 167, 216, 0.2);
  color: #9fe9ff;
  font-weight: 850;
  font-size: 0.82rem;
}
.ts-cta-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.ts-cta-group .button {
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}
.ts-frame {
  position: relative;
  margin: 0;
}
.ts-screen {
  position: relative;
  background: #eef3f7;
}
.ts-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ts-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(16, 32, 51, 0.22),
    0 0 0 8px rgba(56, 161, 105, 0.22);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.ts-hotspot:hover,
.ts-hotspot.is-active {
  background: var(--blue-dark);
  box-shadow:
    0 16px 34px rgba(16, 32, 51, 0.3),
    0 0 0 10px rgba(0, 167, 216, 0.2);
  transform: translate(-50%, -50%) scale(1.08);
}
.ts-hotspot.is-active::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: inherit;
  animation: hotspotPulse 1.8s ease infinite;
}
@keyframes hotspotPulse {
  0% {
    opacity: 0.78;
    transform: scale(0.88);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
.ts-tooltip {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 63, 115, 0.96);
  color: #fff;
}
.ts-tooltip span {
  grid-column: 1 / -1;
  color: #9fe9ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ts-tooltip strong {
  color: #fff;
  font-size: 1rem;
}
.ts-tooltip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}
.ts-tooltip button {
  justify-self: end;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}
.ts-dot.is-active {
  width: 26px;
  background: #fff;
}

@media (max-width: 860px) {
  .ts-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ts-text {
    order: 0;
  }
  .ts-tooltip {
    grid-template-columns: 1fr;
  }
  .ts-hotspots {
    inset: 0;
  }
}

@media (max-width: 520px) {
  .ts-cta-group {
    grid-template-columns: 1fr;
  }
}

/* Tool-Showcase: einheitliche Frame-Höhe, damit beim Tab-Wechsel nichts springt.
   Screenshots haben verschiedene Seitenverhältnisse -> feste ratio + contain. */
.ts-frame img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #eef3f7;
}
.ts-panel {
  align-items: stretch;
}
.ts-text {
  align-self: center;
}

/* Firmenlogo-Chip in den Kundenstimmen-Karten (statt Initialen-Avatar) */
.tw-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 42px;
  flex-shrink: 0;
  padding: 6px 8px;
  border-radius: 8px;
  background: #fff;
}
.tw-logo img {
  max-width: 100%;
  /* Feste Kappung statt max-height:100% (greift im Grid nicht -> Hochkant-Logos
     sprengten das Kästchen); normiert alle Testimonial-Logos einheitlich. */
  max-height: 26px;
  width: auto;
  object-fit: contain;
}

/* "Alle Referenzen"-Link unter der Kundenstimmen-Wall */
.tw-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.home-references-cta {
  min-height: 56px;
  padding-inline: clamp(24px, 4vw, 34px);
  box-shadow: 0 18px 42px rgba(56, 161, 105, 0.3);
}

.home-references-cta:hover,
.home-references-cta:focus-visible {
  box-shadow: 0 22px 48px rgba(56, 161, 105, 0.38);
}

/* --- Startseite: Why COGLAS, eigenständiger Relaunch-Look --- */
.home-why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 249, 252, 0.96) 0%, rgba(255, 255, 255, 1) 42%, rgba(235, 247, 252, 0.9) 100%);
}

.home-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 127, 190, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 127, 190, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.22;
  pointer-events: none;
}

.home-why-section::after {
  content: none;
}

.home-why-head,
.home-why-grid {
  position: relative;
  z-index: 1;
}

.home-why-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.home-why-title {
  position: relative;
  padding-left: clamp(18px, 2vw, 26px);
}

.home-why-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.home-why-title h2 {
  max-width: 560px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.home-why-title h2 span {
  display: block;
  color: var(--blue);
}

.home-why-copy {
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.07);
  backdrop-filter: blur(10px);
}

.home-why-copy p {
  margin: 0;
  color: #4e6072;
  font-size: 1.02rem;
  line-height: 1.68;
}

.home-why-made {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(56, 161, 105, 0.12);
  color: var(--green-dark) !important;
  font-size: 0.86rem !important;
  font-weight: 900;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.home-why-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(0, 127, 190, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.055);
}

.home-why-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-radius: 10px;
  background: #eff8fc;
  color: var(--blue);
}

.home-why-card h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.22;
}

.home-why-card p {
  margin: 0;
  color: #5a6b7b;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .home-why-head,
  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-why-title h2 {
    max-width: 720px;
  }

  .home-why-copy {
    max-width: none;
  }

  .home-why-card {
    min-height: 0;
  }
}

/* --- Startseite: 5-Zonen-Hintergrundmodell --- */
.home-zone-c {
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.home-product-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 167, 216, 0.18), transparent 30%),
    radial-gradient(circle at 86% 46%, rgba(56, 161, 105, 0.1), transparent 32%),
    linear-gradient(160deg, #0b2239 0%, #0e3a5c 100%);
}

.home-product-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber));
}

.home-product-stage > * {
  position: relative;
  z-index: 1;
}

.home-proof-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  color: var(--ink);
}

.home-proof-band .section-heading p {
  color: var(--muted);
}

.home-proof-band .video-facade {
  border-color: rgba(16, 32, 51, 0.1);
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.12);
}

.home-proof-band .proof-quote-card {
  border-color: rgba(0, 127, 190, 0.16);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 167, 216, 0.13), transparent 38%),
    #fff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.09);
}

.home-proof-band .proof-quote-card blockquote {
  color: var(--ink);
}

.home-proof-band .proof-quote-card figcaption strong {
  color: var(--ink);
}

.home-proof-band .proof-quote-card figcaption span:last-child {
  color: #5d6c7b;
}

.home-proof-band .proof-quote-logo {
  color: var(--blue);
}

.reference-video-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 40px auto 0;
}

/* Mobile: 1 Spalte (drei Cards à 98px auf 375 px waren unbrauchbar klein).
   Der ältere Media-Query bei ~Zeile 6127 wurde durch diese spätere Basis-
   Regel überschrieben — deshalb hier direkt hinter der Basis erneut setzen. */
@media (max-width: 900px) {
  .reference-video-deck {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    max-width: 640px;
  }
}

.reference-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.1);
}

.reference-video-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  background: #0b2239;
  color: #fff;
  cursor: pointer;
}

.reference-video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 220ms ease;
}

.reference-video-logo-card img {
  width: 68%;
  height: 68%;
  margin: 8% auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.reference-video-media::after {
  position: absolute;
  inset: auto 0 0;
  /* Verstärkter Scrim für Kontrast über eingebrannten Video-Captions
     (M3-Fix 2026-07-09): Höhe von 58% → 72%, Bottom-Alpha 0.88 → 0.94. */
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 30, 0.94));
  content: "";
}

.reference-video-media:hover img {
  opacity: 0.94;
  transform: scale(1.025);
}

.reference-video-media .video-play {
  z-index: 2;
}

.reference-video-company {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* Zusätzliche Absicherung neben dem Scrim (M3): bewahrt Lesbarkeit
     auch dort, wo eingebrannte Video-Untertitel durchscheinen. */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.reference-video-copy {
  display: grid;
  grid-template-rows: auto minmax(3.55em, auto) minmax(5em, 1fr) auto auto;
  align-content: stretch;
  gap: 12px;
  padding: 22px;
}

.reference-video-copy > strong {
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 950;
  line-height: 0.95;
}

.reference-video-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.18;
}

.reference-video-copy blockquote {
  margin: 0;
  color: #304356;
  font-size: 0.98rem;
  line-height: 1.55;
}

.reference-video-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.reference-video-copy a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  color: var(--blue-dark);
  font-weight: 850;
}

@media (max-width: 980px) {
  .reference-video-copy {
    grid-template-rows: auto;
  }
}

.home-faq-upgrade {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 167, 216, 0.09), transparent 34%),
    #fff;
}

.home-faq-upgrade .section-heading {
  max-width: 820px;
}

.home-faq-upgrade .faq-list {
  max-width: 980px;
}

.home-testimonials-band {
  border-top: 1px solid #e4edf3;
  background:
    linear-gradient(180deg, #f4f8fb 0%, #eef5f8 100%);
}

.home-testimonials-band .section-heading p {
  color: var(--muted);
}

.home-testimonials-band .tw-card {
  grid-template-rows: 24px minmax(58px, auto) minmax(32px, auto) 46px;
  gap: 4px;
  padding: 18px 20px 17px;
  border: 1px solid rgba(0, 127, 190, 0.13);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.08);
}

.home-testimonials-band .tw-card blockquote {
  color: #26384a;
  font-size: 0.96rem;
  line-height: 1.48;
}

.home-testimonials-band .tw-card figcaption {
  min-height: 46px;
  padding-top: 5px;
  border-top-color: rgba(16, 32, 51, 0.1);
}

.home-testimonials-band .tw-meta strong {
  color: var(--ink);
}

.home-testimonials-band .tw-meta > span {
  color: #657382;
}

.home-testimonials-band .tw-avatar {
  background: #e7f6fc;
  color: var(--blue-dark);
}

.home-testimonials-band .tw-verified {
  background: rgba(56, 161, 105, 0.12);
  color: #1d7a45;
}

.home-testimonials-band .case-proof-badge {
  align-self: end;
  justify-content: center;
  min-height: 34px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 5px 9px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
  border-color: rgba(0, 127, 190, 0.18);
  background: #eef8fc;
  color: var(--blue-dark);
}

.home-testimonials-band .case-proof-badge-unconfirmed {
  border-color: rgba(245, 177, 37, 0.35);
  background: #fff7e7;
  color: #7a5200;
}

.home-industry-router {
  padding-top: clamp(46px, 5vw, 68px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-block: 1px solid rgba(0, 127, 190, 0.12);
  background:
    linear-gradient(rgba(0, 127, 190, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 127, 190, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #edf6fa 0%, #f8fbfd 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.home-industry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.home-industry-copy {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.home-industry-copy .eyebrow {
  margin-bottom: 0;
}

.home-industry-copy h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.65rem, 2.25vw, 2.25rem);
}

.home-industry-copy > p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: #4f6172;
  font-size: 0.98rem;
  line-height: 1.58;
}

.home-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.home-industry-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 4px 11px;
  min-height: 96px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-industry-card:hover,
.home-industry-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 127, 190, 0.34);
  background: #fff;
}

.home-industry-card:first-child {
  grid-row: auto;
  min-height: 96px;
  align-content: normal;
}

.home-industry-card:last-child {
  min-height: 96px;
}

.home-industry-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 127, 190, 0.18);
  border-radius: 8px;
  background: #eef8fc;
  color: var(--blue);
}

.home-industry-label {
  align-self: center;
  color: #617283;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.35;
}

.home-industry-card h3 {
  align-self: start;
  margin: 0;
  color: var(--ink);
  font-size: 0.99rem;
  line-height: 1.25;
}

.home-industry-card p {
  grid-column: 2 / 3;
  margin: 0;
  color: #536577;
  font-size: 0.8rem;
  line-height: 1.38;
}

.home-industry-link {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  margin-top: 0;
  color: var(--blue-dark);
  font-size: 0;
  font-weight: 900;
}

.home-industry-link span {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .home-industry-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-industry-copy {
    max-width: 760px;
  }

  .home-industry-copy h2,
  .home-industry-copy > p:not(.eyebrow) {
    max-width: 760px;
  }

  .home-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home-industry-grid {
    grid-template-columns: 1fr;
  }

  .home-industry-card,
  .home-industry-card:first-child {
    min-height: 0;
  }

  .home-industry-card:last-child {
    grid-column: auto;
  }
}

.home-proof-band {
  background: #fff;
}

.home-zone-d {
  background: #fff;
  color: var(--ink);
}

.home-challenge-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(0, 167, 216, 0.26), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(56, 161, 105, 0.18), transparent 32%),
    linear-gradient(145deg, #0b223a 0%, #102033 56%, #082b48 100%);
  color: #fff;
}

.home-challenge-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  content: "";
  pointer-events: none;
}

.home-challenge-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.home-challenge-intro {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.home-challenge-intro .eyebrow {
  color: #65d8ff;
}

.home-challenge-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.7vw, 3.65rem);
  line-height: 1.07;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.home-challenge-intro > p:not(.eyebrow) {
  margin: 0;
  color: rgba(232, 242, 248, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.home-challenge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.home-challenge-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(101, 216, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.home-challenge-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 244px;
  padding: 20px;
  border: 1px solid rgba(101, 216, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-challenge-card:hover,
.home-challenge-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(101, 216, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(0, 167, 216, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.05);
}

.home-challenge-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(101, 216, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 167, 216, 0.12);
  color: #65d8ff;
}

.home-challenge-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 1.9rem;
  font-weight: 950;
  line-height: 1;
}

.home-challenge-card h3 {
  margin: 4px 0 0;
  max-width: 82%;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.home-challenge-card p {
  margin: 0;
  color: rgba(232, 242, 248, 0.76);
  font-size: 0.91rem;
  line-height: 1.55;
}

.home-challenge-card strong {
  align-self: end;
  margin-top: 4px;
  color: #8ff0b0;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .home-challenge-shell {
    grid-template-columns: 1fr;
  }

  .home-challenge-intro {
    max-width: 780px;
  }
}

@media (max-width: 680px) {
  .home-challenge-grid {
    grid-template-columns: 1fr;
  }

  .home-challenge-card {
    min-height: 0;
  }

  .home-challenge-card h3 {
    max-width: none;
    padding-right: 46px;
  }
}

.home-zone-d .numbers-band {
  border-top: 0;
  border-bottom: 0;
  background: #f4f9fc;
}

.home-zone-d .fit-wizard-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(145, 230, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(112, 185, 60, 0.12), transparent 30%),
    linear-gradient(135deg, #102033 0%, #053f73 58%, #102033 100%);
  color: #fff;
}

.home-zone-d .fit-wizard-intro .eyebrow {
  color: #91e6ff;
}

.home-zone-d .fit-wizard-intro h2 {
  color: #fff;
}

.home-zone-d .fit-wizard-intro > p {
  color: rgba(255, 255, 255, 0.78);
}

.home-zone-d .fit-wizard-badges span,
.home-zone-d .fit-wizard-steps li {
  border-color: rgba(145, 230, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.home-zone-d .fit-wizard-steps li::before {
  background: #fff;
  color: var(--blue-dark);
}

.home-zone-d .fit-wizard-card,
.home-zone-d .fit-result-card {
  border: 1px solid rgba(0, 127, 190, 0.16);
  background: #fff;
  box-shadow: 0 24px 68px rgba(16, 32, 51, 0.12);
}

.home-zone-d .fit-wizard-card .button-secondary,
.home-zone-d .fit-result-actions .button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-dark);
}

.home-zone-d .fit-wizard-card .button-secondary:hover,
.home-zone-d .fit-result-actions .button-secondary:hover {
  background: #f3faff;
}

.home-zone-d .outcome-band,
.home-zone-d .faq-section {
  background: #fff;
}

.home-zone-d .integration,
.home-zone-d .trust-proof-section {
  background: #f4f9fc;
}

.cta-band.section-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 167, 216, 0.18), transparent 46%),
    linear-gradient(135deg, #0b1f31 0%, #0b2239 100%);
}

.references-final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(145, 230, 255, 0.42), transparent 32%),
    radial-gradient(circle at 10% 92%, rgba(56, 161, 105, 0.24), transparent 38%),
    linear-gradient(135deg, #0878a8 0%, #09a4cf 100%);
}

.references-final-cta .eyebrow {
  color: #dcf8ff;
}

.references-final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.references-final-cta .hero-actions {
  justify-content: center;
}

.references-final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 32, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.video-modal-frame {
  overflow: hidden;
  border-radius: 14px;
  background: #071d30;
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

html.video-modal-open {
  overflow: hidden;
}

/* --- Referenzseite: Logo-Wall --- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo-wall-item {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.logo-wall-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.logo-wall-item img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.ref-rating {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Kontakt & Rechtliches --- */
.contact-section {
  background: var(--cloud);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.055);
}
.contact-card-primary {
  border-color: rgba(0, 127, 190, 0.25);
  box-shadow: var(--shadow-soft);
}
.contact-card h3 {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}
.contact-card a {
  width: fit-content;
  color: var(--blue);
  font-weight: 850;
}
.contact-card address {
  color: #3a4b5c;
  font-style: normal;
  line-height: 1.7;
}
.contact-card p:last-child {
  margin: 6px 0 0;
  color: #4f6070;
}
.legal-page {
  background: var(--cloud);
}
.legal-page .section-heading {
  text-align: center;
}
.legal-page .section-heading h1,
.legal-page .section-heading .eyebrow {
  margin-right: auto;
  margin-left: auto;
}
.legal-page .section-heading h1 {
  color: #102033;
  font-weight: 700;
  max-width: min(100%, 980px);
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.legal-page .section-heading .eyebrow {
  color: var(--blue);
  font-weight: 700;
}
.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.legal-content h2 {
  margin: 30px 0 10px;
  color: #102033;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  margin: 24px 0 8px;
  color: #102033;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 700;
  line-height: 1.3;
}
.legal-content p {
  color: #3a4b5c;
  font-weight: 400;
  line-height: 1.75;
}
.legal-entry {
  margin: 0 0 26px;
}
.legal-entry:last-child {
  margin-bottom: 0;
}
.legal-entry-level-2 {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal-entry-level-2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-content-long p {
  margin: 0 0 14px;
}
.legal-content ul {
  margin: 10px 0 18px;
  padding-left: 1.25rem;
  color: #3a4b5c;
}
.legal-content li {
  margin: 7px 0;
  line-height: 1.65;
}
.legal-content a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: auto;
  }
}

/* --- Footer: dezente Trust-Badges (even logistics + Google) --- */
.site-footer .footer-award {
  display: inline-grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  width: fit-content;
  transition: color 0.18s ease;
}
.site-footer .footer-award:hover {
  color: #fff;
}
.footer-award:hover span:not(.footer-award-star) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-award strong {
  color: #fff;
  font-weight: 700;
}
.footer-award-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5b125;
  font-size: 1rem;
  line-height: 1;
}
.site-footer .footer-award.footer-award-google {
  margin-top: 6px;
}
.footer-google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  vertical-align: -3px;
}
.footer-google-g svg {
  display: block;
}

.thank-you-hero {
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 92px);
  overflow-x: clip;
  background:
    linear-gradient(135deg, rgba(4, 33, 60, 0.96), rgba(7, 86, 132, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(0, 167, 216, 0.24), transparent 34%);
}

.thank-you-hero-inner,
.thank-you-reference-inner,
.thank-you-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.thank-you-confirmation,
.thank-you-next,
.thank-you-action-grid article,
.thank-you-contact-inner {
  min-width: 0;
  border: 1px solid rgba(214, 226, 235, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 64px rgba(16, 32, 51, 0.12);
}

.thank-you-confirmation {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(30px, 5vw, 56px);
}

.thank-you-status {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(56, 161, 105, 0.13);
  color: var(--green);
}

.thank-you-confirmation h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1.02;
}

.thank-you-confirmation > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #536271;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.thank-you-confirmation .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 26px;
}

.thank-you-confirmation .button-secondary {
  border-color: rgba(0, 127, 190, 0.24);
  background: #fff;
  color: var(--blue-dark);
}

.thank-you-confirmation .button-secondary:hover {
  border-color: rgba(0, 127, 190, 0.4);
  background: #eef7fb;
  color: var(--blue-dark);
}

.thank-you-next {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3.5vw, 34px);
  background: linear-gradient(180deg, #ffffff, #f4f9fc);
}

.thank-you-next ol {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: thank-step;
}

.thank-you-next li {
  display: grid;
  grid-template-columns: auto 38px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(211, 224, 233, 0.88);
  border-radius: 8px;
  background: #fff;
}

.thank-you-step-number {
  grid-row: 1 / span 2;
  color: rgba(0, 127, 190, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.thank-you-step-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #e8f7fc;
  color: var(--blue);
}

.thank-you-next strong {
  color: var(--ink);
  line-height: 1.25;
}

.thank-you-next li p {
  grid-column: 3;
  margin: 0;
  color: #536271;
  font-size: 0.9rem;
  line-height: 1.45;
}

.thank-you-actions {
  overflow-x: clip;
  background: #f8fbfd;
}

.thank-you-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.thank-you-action-grid article {
  display: grid;
  align-content: start;
  min-height: 310px;
  padding: 26px;
}

.thank-you-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e8f7fc;
  color: var(--blue);
}

.thank-you-action-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.22;
}

.thank-you-action-grid p:not(.eyebrow) {
  margin: 0;
  color: #536271;
  line-height: 1.58;
}

.thank-you-action-grid a {
  align-self: end;
  margin-top: 22px;
  color: var(--blue-dark);
  font-weight: 900;
}

.thank-you-reference {
  overflow-x: clip;
  background: var(--paper);
}

.thank-you-reference-inner {
  align-items: center;
}

.thank-you-reference-copy {
  display: grid;
  align-content: center;
  max-width: 520px;
}

.thank-you-reference-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.thank-you-reference-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #536271;
  font-size: 1rem;
  line-height: 1.65;
}

.thank-you-reference-copy .button {
  width: fit-content;
}

.thank-you-video {
  width: 100%;
  margin: 0;
}

.thank-you-video .video-facade,
.thank-you-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
}

.thank-you-video .video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thank-you-contact {
  padding-top: 0;
  overflow-x: clip;
  background: var(--paper);
}

.thank-you-contact-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(135deg, #f7fbfd, #ffffff);
}

.thank-you-contact-inner h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.thank-you-contact-inner p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #536271;
  line-height: 1.58;
}

.thank-you-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.thank-you-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 127, 190, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .thank-you-hero-inner,
  .thank-you-reference-inner,
  .thank-you-contact-inner,
  .thank-you-action-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-confirmation {
    min-height: auto;
  }

  .thank-you-contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .thank-you-hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .thank-you-hero-inner,
  .thank-you-reference-inner,
  .thank-you-contact-inner,
  .thank-you-action-grid {
    width: calc(100vw - 28px);
    max-width: 360px;
    margin-left: 14px;
    margin-right: 14px;
    gap: 18px;
  }

  .thank-you-confirmation,
  .thank-you-next,
  .thank-you-action-grid article,
  .thank-you-contact-inner {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .thank-you-confirmation > *,
  .thank-you-next *,
  .thank-you-action-grid *,
  .thank-you-reference-copy *,
  .thank-you-contact-inner * {
    min-width: 0;
  }

  .thank-you-confirmation h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 8.2vw, 1.9rem);
    line-height: 1.08;
    text-wrap: auto;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .thank-you-confirmation > p:not(.eyebrow),
  .thank-you-next li p,
  .thank-you-action-grid p:not(.eyebrow) {
    max-width: 100%;
    text-wrap: auto;
  }

  .thank-you-confirmation .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .thank-you-confirmation .button,
  .thank-you-reference-copy .button,
  .thank-you-contact-links a {
    width: 100%;
    justify-content: center;
  }

  .thank-you-next li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 12px;
  }

  .thank-you-step-number {
    display: none;
  }

  .thank-you-next li p {
    grid-column: 2;
  }
}

.news-index-hero {
  padding-bottom: clamp(28px, 5vw, 56px);
}

.news-index-grid .reference-case-card {
  min-height: 320px;
}

@media (max-width: 960px) {
  .subpage-jumpbar {
    justify-content: flex-start;
  }

  .webinar-feature,
  .webinar-detail-lead,
  .webinar-card-grid,
  .webinar-card-grid.compact,
  .webinar-content-grid,
  .webinar-gate-form {
    grid-template-columns: 1fr;
  }

  .webinar-speaker-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .webinar-play-badge {
    width: 58px;
    height: 58px;
  }

  .webinar-card-body {
    padding: 18px;
  }

  .webinar-speaker-card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 16px;
  }

  .webinar-speaker-card img,
  .webinar-speaker-initial {
    width: 56px;
    height: 56px;
  }
}

/* ============================================================================
   Referenzen: Video-Showcase im COGLAS-Standard-Look (helles Theme)
   Umgestellt 2026-07-01 nach Ansage Enrico + Fazal: schwarzer Cinema-Stil
   ist raus, Inhalt und Anordnung bleiben. Poster/Feature-Overlay sind
   inhaltsgetrieben (Vimeo-Poster) und bleiben in ihrer Framing-Logik.
   ============================================================================ */
.page-referenzen {
  background: #ffffff;
}
.reference-cinema {
  background:
    radial-gradient(circle at 20% 14%, rgba(0, 167, 216, 0.08), transparent 32%),
    linear-gradient(180deg, #f6fafc 0%, #ffffff 60%, #f6fafc 100%);
  color: var(--ink, #102033);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
}
.reference-cinema-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(32px, 4vw, 48px);
}
.reference-cinema-eyebrow {
  margin: 0;
  color: var(--blue, #007fbe);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* Hero-Video: großes Poster mit dezentem Text-Overlay unten (funktional
   nötig, damit die Video-Metadaten auf dem farbigen Vimeo-Poster lesbar
   bleiben). Rahmung ist jetzt hell/dezent im COGLAS-Standard-Look. */
.reference-cinema-feature {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f5;
  color: #fff;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  padding: 0;
  text-align: left;
  box-shadow: 0 20px 40px rgba(16, 32, 51, 0.14);
}
.reference-cinema-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.reference-cinema-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  /* M3-Fix 2026-07-09: Scrim früher deckend (35%→25%, 65%→55%) damit
     Titel + Zitat auch dort lesbar sind, wo das Video einen hellen
     Frame oder eingebrannten Untertitel zeigt. */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.94) 100%);
  pointer-events: none;
}
.reference-cinema-feature:hover img {
  transform: scale(1.02);
  filter: brightness(0.95);
}
.reference-cinema-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: #0a0a0a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}
.reference-cinema-feature:hover .reference-cinema-play {
  transform: scale(1.08);
  background: #fff;
}
.reference-cinema-feature-meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: clamp(20px, 3vw, 36px);
  color: #fff;
}
.reference-cinema-branche {
  display: inline-block;
  width: fit-content;
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.reference-cinema-feature-meta strong {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 850;
  line-height: 1.1;
}
.reference-cinema-speaker {
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 650;
}
.reference-cinema-quote {
  max-width: 720px;
  color: #f3f4f6;
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 6px;
}
.reference-cinema-duration {
  margin-top: 6px;
  color: #9ca3af;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Tile-Grid: weitere Videos im Vimeo-Showcase-Stil */
.reference-cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.reference-cinema-tile {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink, #102033);
  cursor: pointer;
  text-align: left;
}
.reference-cinema-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #eef2f5;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reference-cinema-tile:hover .reference-cinema-poster {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(16, 32, 51, 0.2);
}
.reference-cinema-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.reference-cinema-tile:hover .reference-cinema-poster img {
  transform: scale(1.04);
  filter: brightness(0.95);
}
.reference-cinema-play-sm {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
}
.reference-cinema-tile-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.74);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 2;
}
.reference-cinema-tile-meta {
  display: grid;
  gap: 4px;
  color: var(--ink, #102033);
}
.reference-cinema-tile-meta .reference-cinema-branche {
  color: var(--blue, #007fbe);
}
.reference-cinema-tile-meta strong {
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.25;
  color: var(--ink, #102033);
}
.reference-cinema-tile-meta .reference-cinema-speaker {
  font-size: 0.82rem;
  color: #4f6070;
}

@media (max-width: 640px) {
  .reference-cinema-play {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
  }
  .reference-cinema-feature-meta strong {
    font-size: 1.3rem;
  }
  .reference-cinema-quote {
    font-size: 0.92rem;
  }
}

/* ============================================================================
   Referenzen: COGLAS-Standard-Look (helles Theme).
   Der frühere schwarze Cinema-Stil ist am 2026-07-01 entfernt worden
   (Ansage Enrico + Fazal: schwarz nicht einheitlich zur Homepage). Struktur
   und Inhalt bleiben unverändert. Header/Navigation nutzen jetzt automatisch
   den Standard-Site-Look; alle Sektionen sitzen auf weißem/hellem Grund.
   ============================================================================ */

/* Cinema-Headline im Site-Schriftstil (h1) im Standard-COGLAS-Look */
.page-referenzen .reference-cinema-headline {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
}
.page-referenzen .reference-cinema-headline .eyebrow {
  margin: 0;
  color: var(--blue, #007fbe);
}
.page-referenzen .reference-cinema-headline h1 {
  margin: 0;
  color: var(--ink, #102033);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.page-referenzen .reference-cinema-headline > p {
  margin: 0 auto;
  max-width: 720px;
  color: #4f6070;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

/* Logo-Wall + Testimonial-Wall + ihre Headings auf Cinema-Breite (1280px)
   ziehen, damit die Blöcke bündig mit den oberen Videos abschließen. */
.page-referenzen .logo-wall,
.page-referenzen .tw-grid,
.page-referenzen .ref-logos .section-heading,
.page-referenzen .testimonial-wall .section-heading {
  max-width: 1280px;
}

/* Dezente "Story lesen"-Verlinkung von Videos auf die Detailseiten,
   im COGLAS-Standard-Blau statt Cinema-Cyan. */
.reference-cinema-feature-wrap {
  display: grid;
  gap: 14px;
}
.reference-cinema-tile-wrap {
  /* M4-Fix 2026-07-09: flex-column + height:100% + margin-top:auto auf
     der Story-Zeile → alle "Story lesen"-Links fluchten auf einer
     gemeinsamen Baseline, unabhängig davon ob die Kategorie 1- oder
     2-zeilig ist. */
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.reference-cinema-tile-wrap .reference-cinema-story-sm {
  margin-top: auto;
}
.reference-cinema-story {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--blue, #007fbe);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}
.reference-cinema-story:hover {
  color: var(--blue-dark, #005f8c);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reference-cinema-story-sm {
  font-size: 0.84rem;
}

/* Testimonial-Karte: Case-Story-Link am Fuß im Standard-Blau. */
.tw-story {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: #91e6ff;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}
.tw-story:hover {
  color: var(--blue-dark, #005f8c);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Klickbare Logo-Kacheln (führen auf Story/News). */
.logo-wall-item-link {
  text-decoration: none;
  cursor: pointer;
}
.logo-wall-item-link:hover {
  border-color: rgba(0, 167, 216, 0.4);
}

/* ============================================================
   Dark-Theme für Case- & News-Detailseiten (page-ref-dark).
   Greift den Look des Referenzbereichs auf: schwarzer Grund,
   helle Navigation, dunkle FAQ-/Teaser-/CTA-Bausteine.
   ============================================================ */
.page-ref-dark,
body.page-ref-dark {
  background: #0a0a0a;
  color: #fff;
}
.page-ref-dark .site-header {
  background: rgba(10, 10, 10, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.page-ref-dark .brand img {
  filter: brightness(0) invert(1);
}
.page-ref-dark .main-nav,
.page-ref-dark .main-nav a,
.page-ref-dark .nav-group-trigger,
.page-ref-dark .nav-direct-link {
  color: rgba(255, 255, 255, 0.92);
}
.page-ref-dark .main-nav a:hover,
.page-ref-dark .nav-group-trigger:hover,
.page-ref-dark .nav-group:focus-within .nav-group-trigger,
.page-ref-dark .nav-group.is-hover-open .nav-group-trigger,
.page-ref-dark .nav-group.is-open .nav-group-trigger,
.page-ref-dark .nav-direct-link:hover,
.page-ref-dark .nav-group-trigger[aria-current="true"],
.page-ref-dark .nav-direct-link[aria-current="page"] {
  color: #91e6ff;
}
.page-ref-dark .nav-toggle span {
  background: #fff;
}
.page-ref-dark .header-cta {
  background: #fff;
  color: #0a0a0a;
}
.page-ref-dark .header-cta:hover {
  background: #91e6ff;
  color: #0a0a0a;
}
/* Dropdown-Panels bleiben hell lesbar (eigener heller Karten-Look) */
.page-ref-dark .nav-dropdown {
  color: var(--ink);
}

/* News-Detailseite: Hero, Sektionen, TOC, Galerie auf schwarz */
.page-ref-dark .news-case-hero {
  background:
    radial-gradient(circle at 80% 16%, rgba(0, 167, 216, 0.14), transparent 36%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.page-ref-dark .news-case-hero-copy h1,
.page-ref-dark .news-case-section h2 {
  color: #fff;
}
.page-ref-dark .news-case-hero-copy > p:not(.eyebrow),
.page-ref-dark .news-case-intro p,
.page-ref-dark .news-case-section p,
.page-ref-dark .news-case-section li {
  color: rgba(255, 255, 255, 0.74);
}
.page-ref-dark .eyebrow {
  color: #91e6ff;
}
.page-ref-dark .news-case-meta span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}
.page-ref-dark .news-case-hero-media,
.page-ref-dark .news-case-toc,
.page-ref-dark .news-case-gallery figure {
  border-color: rgba(255, 255, 255, 0.1);
  background: #111;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.page-ref-dark .news-case-toc strong {
  color: #fff;
}
.page-ref-dark .news-case-toc a {
  color: rgba(255, 255, 255, 0.7);
}
.page-ref-dark .news-case-toc a:hover {
  color: #91e6ff;
}

/* Gemeinsame Bausteine (FAQ, Related-Links, CTA-Band) dunkel */
.page-ref-dark .faq-section .section-heading h2,
.page-ref-dark .section-heading h2 {
  color: #fff;
}
.page-ref-dark .section-heading > p,
.page-ref-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}
.page-ref-dark .faq-item {
  background: #131313;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.page-ref-dark .faq-item[open] {
  border-color: rgba(0, 167, 216, 0.4);
}
.page-ref-dark .faq-item > summary {
  color: #fff;
}
.page-ref-dark .faq-item > summary:hover {
  color: var(--cyan, #00a7d8);
}
.page-ref-dark .faq-toggle {
  border-color: rgba(255, 255, 255, 0.2);
}
.page-ref-dark .faq-toggle::before,
.page-ref-dark .faq-toggle::after {
  background: #fff;
}
.page-ref-dark .faq-item[open] .faq-toggle {
  background: var(--cyan, #00a7d8);
  border-color: var(--cyan, #00a7d8);
}
.page-ref-dark .faq-a p {
  color: rgba(255, 255, 255, 0.78);
}
.page-ref-dark .faq-contact {
  color: rgba(255, 255, 255, 0.72);
}
.page-ref-dark .faq-contact a {
  color: #91e6ff;
}
.page-ref-dark .related-links {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}
.page-ref-dark .related-links a {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
}
.page-ref-dark .related-links a:hover {
  border-color: rgba(0, 167, 216, 0.4);
  background: rgba(0, 167, 216, 0.12);
  color: #fff;
}
.page-ref-dark .references-final-cta .button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}
.page-ref-dark .references-final-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* --- Legal-Pages: ergänzende Typografie für Iljas Preview-Feedback (30.06.) --- */
/* Iljas Pin: einzelne Subsections müssen als h3 / h4 sichtbar werden,
   nicht nur als Bold im Fließtext. */
.legal-content h4 {
  margin: 18px 0 6px;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.legal-content-long p {
  margin: 0 0 16px;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: #3a4b5c;
  line-height: 1.75;
}
.legal-content li {
  margin: 0 0 6px;
}
.legal-content strong,
.legal-content b {
  color: var(--blue-dark);
  font-weight: 700;
}
.legal-content a {
  word-break: break-word;
}

/* =====================================================================
   MOBILE TAP-TARGETS (2026-07-03) — greift ausschliesslich <= 620px.
   Ziel: beruehrungsfreundliche Trefferflaechen auf Smartphones, ohne den
   Desktop-Stand zu veraendern (alle Regeln liegen im Media-Query).
   Betrifft Footer-Navigation, Standalone-CTA-Textlinks und Tour-Steuerung,
   die im Audit unter ~40px Hoehe lagen.
   ===================================================================== */
@media (max-width: 620px) {
  .site-footer .footer-col a,
  .site-footer .footer-contact a,
  .site-footer .footer-legal a,
  .site-footer .footer-award {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .site-footer .footer-col a {
    width: 100%;
  }

  .integration-link,
  .award-link-button,
  .reference-video-copy > a,
  .ts-tooltip button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Tour-Hotspots etwas groesser antippbar, ohne sich zu ueberlappen. */
  .ts-hotspot {
    width: 40px;
    height: 40px;
  }
}

/* =====================================================================
   Closing-Referenz (Video-Variante) im dunklen Verlauf wie die Kunden-
   stimmen auf /referenzen/ (Christoph 7f3d8bad, 03.07.). Betrifft NUR die
   enhanced-Variante mit Video; die schlanke Logo-Copy-CTA-Variante bleibt hell.
   ===================================================================== */
.closing-reference.closing-reference-enhanced {
  border-color: rgba(145, 230, 255, 0.16);
  background:
    radial-gradient(circle at 85% 0%, rgba(0, 167, 216, 0.22), transparent 52%),
    linear-gradient(150deg, #0a2f52 0%, #08395f 60%, #07314c 100%);
  box-shadow: 0 22px 60px rgba(8, 28, 48, 0.22);
  color: #fff;
}
.closing-reference-enhanced h2 {
  color: #fff;
}
.closing-reference-enhanced p:not(.eyebrow):not(.case-proof-badge) {
  color: rgba(255, 255, 255, 0.82);
}
.closing-reference-enhanced .eyebrow {
  color: #91e6ff;
}
.closing-reference-enhanced .closing-reference-quote p {
  color: #fff;
}
.closing-reference-enhanced .closing-reference-quote footer {
  color: rgba(255, 255, 255, 0.66);
}
.closing-reference-enhanced .closing-reference-quote span {
  color: rgba(145, 230, 255, 0.55);
}
.closing-reference-enhanced .case-proof-badge {
  border-color: rgba(145, 230, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #d6f4ff;
}

/* === News-Detail (WP-migrierte Beiträge, /news/<slug>/) =================== */
/* Global (nicht scoped): DE- und EN-News-Detailseiten teilen diese Klassen. */
.news-article-hero {
  padding: clamp(44px, 5.5vw, 72px) clamp(20px, 5vw, 72px) clamp(20px, 3vw, 32px);
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 167, 216, 0.12), transparent 32%),
    linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
}
.news-article-hero-inner {
  display: grid;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
/* Textzeilen bleiben lesbar begrenzt (Bringhurst-Sweet-Spot), aber der
   Container richtet sich am Content-Grid (1180) links aus — nicht mehr
   mittig zu 820. */
.news-article-hero h1,
.news-article-hero-inner > p {
  max-width: 820px;
}
.news-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #6e7f90;
  font-size: 0.84rem;
  font-weight: 700;
}
.news-breadcrumb a {
  color: var(--blue-dark);
  text-decoration: none;
}
.news-breadcrumb a:hover {
  text-decoration: underline;
}
.news-article-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
  hyphens: manual;
}
.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #6e7f90;
  font-size: 0.86rem;
  font-weight: 700;
}
.news-article-cat {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 167, 216, 0.12);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.news-article-cover {
  width: min(1180px, 100%);
  max-width: 900px;
  margin: clamp(20px, 3vw, 32px) auto 0;
  padding: 0 clamp(20px, 5vw, 24px);
}
.news-article-cover img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(16, 32, 51, 0.12);
}
.news-article-summary {
  display: grid;
  gap: 8px;
  width: min(1180px, 100%);
  max-width: 820px;
  margin: clamp(24px, 4vw, 42px) auto 0;
  padding: 22px clamp(20px, 4vw, 30px);
  border: 1px solid rgba(0, 127, 190, 0.16);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #f7fbfd;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.05);
}
.news-article-summary .eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.news-article-summary p:last-child {
  margin: 0;
  color: #31485d;
  font-size: 1.03rem;
  line-height: 1.65;
}
.news-article-main {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 760px);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
  width: min(1180px, 100%);
  margin: clamp(30px, 4.5vw, 52px) auto 0;
  padding: 0 clamp(20px, 5vw, 24px);
}
.news-article-main-single {
  display: block;
  max-width: 808px;
}
.news-article-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(0, 127, 190, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.04);
}
.news-article-toc strong {
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.news-article-toc a {
  color: #526477;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
.news-article-toc a:hover {
  color: var(--blue-dark);
}
.news-article-toc .is-sub {
  padding-left: 12px;
  font-size: 0.84rem;
  font-weight: 650;
}
.news-article-body {
  min-width: 0;
  color: #2f4356;
  font-size: 1.06rem;
  line-height: 1.75;
}
.news-article-body h2 {
  margin: 36px 0 14px;
  color: var(--ink);
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  line-height: 1.25;
  scroll-margin-top: 104px;
}
.news-article-body h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.3;
  scroll-margin-top: 104px;
}
.news-article-body p {
  margin: 0 0 16px;
}
.news-article-body ul,
.news-article-body ol {
  margin: 0 0 18px;
  padding-left: 1.3em;
}
.news-article-body li {
  margin: 7px 0;
}
.news-article-body a {
  color: var(--blue-dark);
  font-weight: 700;
}
.news-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 8px 0;
}
.news-article-body strong {
  color: var(--ink);
}
.news-article-cta {
  margin-top: clamp(40px, 6vw, 68px);
  padding: clamp(28px, 4vw, 42px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
  border-top: 1px solid rgba(0, 127, 190, 0.1);
}
.news-article-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, 100%);
  max-width: 920px;
  margin: 0 auto;
}
.news-article-cta .eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.news-article-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.2;
}
.news-article-cta p {
  margin: 0;
  color: #4f6070;
  line-height: 1.65;
}
.news-article-cta .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}
@media (max-width: 960px) {
  .news-article-main {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 808px;
  }
  .news-article-toc {
    position: static;
  }
}
@media (max-width: 760px) {
  .news-article-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .news-article-hero h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
  }
  .news-article-summary {
    border-radius: 0;
    border-right: 0;
    border-left-width: 4px;
  }
}
