/* ==========================================================================
   IVMPRO® – Stylesheet
   ========================================================================== */

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/plus-jakarta-sans-latin-wght-normal.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;
}

:root {
  /* Markenfarben */
  --navy-950: #001629;
  --navy-900: #001f3b;
  --navy-800: #00305d;
  --navy-700: #0a3f75;
  --navy-600: #19548f;
  --navy-100: #e3ecf6;
  --navy-50:  #f1f5fa;
  --red-600:  #e0003f;
  --red-700:  #c20036;
  --red-100:  #ffe1e9;
  --red-50:   #fff1f5;
  --green-600: #0f9d6b;

  /* Neutrale Töne */
  --ink:    #0b1a2c;
  --text:   #3a4a5d;
  --muted:  #647488;
  --line:   #e2e8f0;
  --line-strong: #cfd8e3;
  --bg:     #ffffff;
  --bg-soft:#f5f7fb;

  /* Form */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(0, 22, 41, .06), 0 1px 3px rgba(0, 22, 41, .08);
  --shadow:    0 18px 40px -18px rgba(0, 22, 41, .22);
  --shadow-lg: 0 40px 80px -32px rgba(0, 22, 41, .38);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
figure, blockquote { margin: 0; }
[hidden] { display: none !important; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.025em;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 1.5rem + 3.4vw, 4.1rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; }
h2 { font-size: clamp(1.85rem, 1.35rem + 1.9vw, 2.85rem); }
h3 { font-size: 1.25rem; line-height: 1.3; letter-spacing: -.015em; }
h4 { font-size: 1.0625rem; line-height: 1.35; letter-spacing: -.01em; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 700; }

.lead {
  font-size: clamp(1.075rem, 1rem + .35vw, 1.25rem);
  line-height: 1.6;
  color: var(--text);
}

::selection { background: var(--red-600); color: #fff; }

:focus-visible {
  outline: 3px solid rgba(224, 0, 63, .55);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.icon { width: 1.25em; height: 1.25em; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: calc(860px + var(--gutter) * 2); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.btn .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(224, 0, 63, .65);
}
.btn-primary:hover { background: var(--red-700); box-shadow: 0 14px 28px -10px rgba(224, 0, 63, .7); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--navy-800); color: var(--navy-800); }

.btn-light {
  background: #fff;
  color: var(--navy-900);
}
.btn-light:hover { background: var(--navy-50); }

.btn-outline-light {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); }

.btn-sm { min-height: 40px; padding: .5rem 1rem; font-size: .9375rem; }
.btn-lg { min-height: 56px; padding: .9rem 1.7rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 650;
  color: var(--red-600);
  text-decoration: none;
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }
.link-arrow:hover { color: var(--red-700); }

/* ---------- Kleine Bausteine ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.1rem;
  padding: .38rem .85rem .38rem .45rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--navy-800);
  font-size: .8125rem;
  font-weight: 650;
  letter-spacing: .01em;
}
.eyebrow-dot {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-50);
}
.eyebrow-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 0 rgba(224, 0, 63, .5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 0, 63, .45); }
  70%  { box-shadow: 0 0 0 8px rgba(224, 0, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 0, 63, 0); }
}

.kicker {
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--red-600);
  font-size: .8125rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.tag .icon { width: 13px; height: 13px; stroke-width: 2.4; }
.tag-red { background: var(--red-50); color: var(--red-700); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-600);
}
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
a.chip { text-decoration: none; transition: border-color .2s, color .2s, background-color .2s; }
a.chip:hover { border-color: var(--navy-800); color: var(--navy-800); background: var(--navy-50); }

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-800));
  color: #fff;
  box-shadow: 0 12px 22px -12px rgba(0, 48, 93, .8);
}
.icon-badge .icon { width: 24px; height: 24px; }
.icon-badge.is-red { background: linear-gradient(140deg, #ff2e66, var(--red-600)); box-shadow: 0 12px 22px -12px rgba(224, 0, 63, .8); }
.icon-badge.is-soft { background: var(--navy-50); color: var(--navy-800); box-shadow: none; }

.checklist {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.checklist li {
  position: relative;
  padding-left: 1.85rem;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 1.2rem; height: 1.2rem;
  border-radius: 50%;
  background: var(--red-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0003f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.checklist.is-compact { gap: .45rem; font-size: .9688rem; }
.checklist.on-dark li::before { background-color: rgba(255, 255, 255, .1); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0, 22, 41, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
}

.brand { display: inline-flex; flex: none; }
.brand img { width: auto; height: 38px; }

.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}
.nav-link:hover { background: var(--navy-50); }
.nav-link[aria-current="page"],
.nav-item.is-current > .nav-link { color: var(--red-600); }
.nav-link .icon-chevron { width: 16px; height: 16px; transition: transform .2s; }
.has-dropdown:hover .icon-chevron,
.has-dropdown:focus-within .icon-chevron { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 330px;
  padding: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s, transform .18s var(--ease), visibility .18s;
}
.dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -14px;
  height: 14px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .7rem .75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color .15s;
}
.dropdown a:hover { background: var(--bg-soft); }
.dropdown .dd-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--navy-50);
  color: var(--navy-800);
}
.dropdown .dd-icon .icon { width: 19px; height: 19px; }
.dropdown a:hover .dd-icon { background: var(--red-50); color: var(--red-600); }
.dropdown strong { display: block; color: var(--ink); font-size: .9375rem; font-weight: 650; line-height: 1.3; }
.dropdown small { display: block; margin-top: .15rem; color: var(--muted); font-size: .8125rem; line-height: 1.4; }

.header-actions { display: flex; align-items: center; gap: .9rem; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone .icon { width: 17px; height: 17px; color: var(--red-600); }
.header-phone:hover { color: var(--red-600); }

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px; height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.nav-open .menu-toggle .icon-menu { display: none; }
.nav-open .menu-toggle .icon-close { display: block; }

.mobile-only { display: none; }

@media (max-width: 1240px) {
  .header-phone { display: none; }
}

@media (max-width: 1060px) {
  .menu-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .mobile-only { display: block; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 49;
    margin: 0;
    padding: 1rem var(--gutter) 2rem;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s, transform .22s var(--ease), visibility .22s;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  /* backdrop-filter würde das fixierte Menü an den Header binden */
  .nav-open .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: #fff; }
  .nav-open { overflow: hidden; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 1rem .25rem;
    border-radius: 0;
    font-size: 1.125rem;
  }
  .nav-link:hover { background: none; }
  .nav-link .icon-chevron { display: none; }
  .dropdown {
    position: static;
    width: auto;
    padding: 0 0 .75rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dropdown::before { display: none; }
  .dropdown a { padding: .55rem .25rem; }
  .dropdown small { display: none; }
  .dropdown .dd-icon { width: 32px; height: 32px; }
  .mobile-nav-cta { display: grid; gap: .75rem; margin-top: 1.5rem; }
}

@media (min-width: 1061px) {
  .mobile-nav-cta { display: none; }
}

/* ---------- Abschnitte ---------- */

.section { position: relative; padding: clamp(4.25rem, 8vw, 7.5rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-tight-top { padding-top: 0; }

.section-head {
  max-width: 740px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}
.section-head.is-left { margin-left: 0; text-align: left; }
.section-head .lead { margin-top: .25rem; color: var(--muted); }
.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head-row .section-head { margin: 0; }

.section-dark {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(224, 0, 63, .16), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(25, 84, 143, .45), transparent 65%),
    var(--navy-900);
  color: rgba(255, 255, 255, .74);
}
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark strong { color: #fff; }
.section-dark .kicker { color: #ff5c86; }
.section-dark .lead { color: rgba(255, 255, 255, .78); }

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(55% 60% at 90% 0%, rgba(224, 0, 63, .09), transparent 62%),
    radial-gradient(50% 60% at 0% 100%, rgba(0, 48, 93, .10), transparent 62%),
    linear-gradient(180deg, #f6f8fc 0%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 48, 93, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 48, 93, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 0%, #000 20%, transparent 75%);
  mask-image: radial-gradient(70% 70% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .accent { position: relative; color: var(--red-600); white-space: nowrap; }
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: .02em;
  height: .14em;
  border-radius: 999px;
  background: currentColor;
  opacity: .18;
}
.hero .lead { max-width: 36rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .9375rem;
  font-weight: 550;
}
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust .icon { width: 18px; height: 18px; color: var(--green-600); stroke-width: 2.6; }

.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% -5% -9% 12%;
  z-index: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
  transform: rotate(3deg);
}
.hero-media::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1.5px dashed rgba(224, 0, 63, .35);
  z-index: 0;
}

.video-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 22, 41, .06);
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  right: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem .45rem .45rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 22, 41, .82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .875rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color .2s, transform .2s var(--ease);
}
.video-play:hover { background: var(--red-600); transform: translateY(-1px); }
.video-play .play-dot {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--red-600);
}
.video-play .play-dot .icon { width: 13px; height: 13px; margin-left: 2px; }

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .95rem .7rem .7rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 22, 41, .05);
  color: var(--ink);
  font-size: .8438rem;
  line-height: 1.3;
  animation: float 7s ease-in-out infinite;
}
.float-card strong { display: block; font-size: .9063rem; }
.float-card span { color: var(--muted); }
.float-card .fc-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  flex: none;
}
.float-card .fc-icon .icon { width: 20px; height: 20px; }
.float-card.fc-1 { top: -26px; right: 18px; animation-delay: -2s; }
.float-card.fc-2 { bottom: -30px; left: -22px; }
.fc-green { background: #e6f7f0; color: var(--green-600); }
.fc-red   { background: var(--red-50); color: var(--red-600); }
.fc-navy  { background: var(--navy-50); color: var(--navy-800); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 640px; margin: 1rem auto 0; width: 100%; }
}
@media (max-width: 560px) {
  .float-card.fc-1 { right: 8px; top: -22px; }
  .float-card.fc-2 { display: none; }
  .hero-media::after { display: none; }
  .video-play { right: 10px; bottom: 10px; font-size: .8125rem; }
}

/* ---------- Logo-Laufband ---------- */

.logo-band {
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.logo-band-title {
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: .9375rem;
  font-weight: 600;
}
.logo-band-title strong { color: var(--ink); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marquee 80s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { flex: none; }
.marquee-track img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05);
  opacity: .62;
  transition: filter .3s, opacity .3s;
}
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(calc(-50% - 1.125rem)); } }

/* ---------- Feature-Karten ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 22, 41, .04);
}
.feature-card .icon-badge { margin-bottom: 1.35rem; }
.feature-card h3 { margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .975rem; }
.feature-card .checklist { margin: .5rem 0 1.25rem; font-size: .9375rem; }
.feature-card .link-arrow { margin-top: auto; font-size: .9375rem; }

@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Split-Layout ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split.is-top { align-items: start; }
.split-5-7 { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.split-7-5 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
@media (max-width: 960px) {
  .split, .split-5-7, .split-7-5 { grid-template-columns: 1fr; }
}

.sticky-col { position: sticky; top: calc(var(--header-h) + 32px); }
@media (max-width: 960px) { .sticky-col { position: static; } }

/* ---------- USP-Liste (dunkel) ---------- */

.usp-list { display: grid; gap: .85rem; margin: 0; padding: 0; list-style: none; }
.usp-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  transition: background-color .25s, border-color .25s, transform .25s var(--ease);
}
.usp-item:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); transform: translateX(4px); }
.usp-item .usp-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(224, 0, 63, .16);
  color: #ff5c86;
}
.usp-item .usp-icon .icon { width: 22px; height: 22px; }
.usp-item h3 { margin: .1rem 0 .25rem; font-size: 1.0625rem; }
.usp-item p { font-size: .9375rem; color: rgba(255, 255, 255, .66); }

/* ---------- Kennzahlen ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
}
.stat {
  padding: 1.75rem 1.5rem;
  background: var(--navy-900);
}
.stat-value {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-value em { color: #ff5c86; font-style: normal; }
.stat-label { font-size: .9375rem; line-height: 1.45; color: rgba(255, 255, 255, .66); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 440px) { .stats { grid-template-columns: 1fr; } }

.stats.is-light {
  border-color: var(--line);
  background: var(--line);
  margin-top: 0;
}
.stats.is-light .stat { background: #fff; }
.stats.is-light .stat-value { color: var(--ink); }
.stats.is-light .stat-value em { color: var(--red-600); }
.stats.is-light .stat-label { color: var(--muted); }

/* ---------- Integrationen ---------- */

.integration-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(0, 48, 93, .06), transparent 70%),
    #fff;
  box-shadow: var(--shadow);
}
.integration-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 1.75rem;
  padding: .7rem 1.2rem .7rem .7rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 30px -16px rgba(0, 22, 41, .8);
}
.integration-hub .hub-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
}
.integration-hub .hub-mark img { width: 26px; height: 26px; object-fit: contain; }
.integration-hub span { font-size: .9375rem; }
.integration-group + .integration-group { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px dashed var(--line-strong); }
.integration-group h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.integration-group h3 .icon { width: 17px; height: 17px; color: var(--red-600); }

/* ---------- Ergebnis-Karten ---------- */

.result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.result-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 0, 63, .10), transparent 70%);
  transition: transform .5s var(--ease);
}
.result-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow); }
.result-card:hover::after { transform: scale(1.4); }
.result-value {
  display: block;
  margin-bottom: .5rem;
  color: var(--navy-800);
  font-size: clamp(2.5rem, 2rem + 1.6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.result-value em { color: var(--red-600); font-style: normal; }
.result-card h3 { margin-bottom: .5rem; }
.result-card p { color: var(--muted); font-size: .9688rem; margin-bottom: 1.25rem; }
.result-card .link-arrow { margin-top: auto; font-size: .9375rem; }
.result-org { display: block; margin-bottom: .9rem; color: var(--muted); font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 960px) { .result-grid { grid-template-columns: 1fr; } }

/* ---------- Zitate ---------- */

.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.quote-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.quote-card .quote-mark { width: 38px; height: 38px; margin-bottom: 1rem; color: var(--red-600); }
.quote-card blockquote {
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-size: 1.0313rem;
  font-weight: 500;
  line-height: 1.6;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .9063rem;
  font-weight: 650;
  line-height: 1.35;
}
.quote-card figcaption img {
  width: 56px; height: 56px;
  flex: none;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.quote-card figcaption span { display: block; color: var(--muted); font-size: .8125rem; font-weight: 500; }
@media (max-width: 960px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-feature {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--navy-800), var(--navy-900));
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}
.quote-feature::before {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, .04);
}
.quote-feature blockquote {
  position: relative;
  margin: 0 0 2rem;
  color: #fff;
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.015em;
}
.quote-feature .quote-mark { width: 44px; height: 44px; margin-bottom: 1.25rem; color: #ff5c86; }
.quote-feature figcaption { display: flex; align-items: center; gap: 1rem; color: #fff; font-weight: 650; }
.quote-feature figcaption img { width: 60px; height: 60px; border-radius: 14px; background: #fff; object-fit: contain; }
.quote-feature figcaption span { display: block; color: rgba(255, 255, 255, .6); font-size: .875rem; font-weight: 500; }
.quote-feature h2, .quote-feature h3, .quote-feature strong { color: #fff; }
.quote-feature h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.quote-feature .kicker { color: #ff5c86; }
.quote-feature .checklist { font-size: .9688rem; }
.quote-feature .checklist li::before { background-color: rgba(255, 255, 255, .12); }

/* ---------- Video-Karten (2-Klick) ---------- */

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; } }
.yt {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}
.yt img.yt-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .3s, transform .6s var(--ease);
}
.yt:hover img.yt-thumb { opacity: .7; transform: scale(1.03); }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  background: linear-gradient(180deg, transparent 30%, rgba(0, 22, 41, .9));
  color: #fff;
}
.yt-overlay h3 { margin-bottom: .25rem; color: #fff; font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); }
.yt-overlay p { margin-bottom: .9rem; color: rgba(255, 255, 255, .72); font-size: .875rem; }
.yt-button {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  align-self: flex-start;
  padding: .45rem 1rem .45rem .45rem;
  border: 0;
  border-radius: 999px;
  background: var(--red-600);
  color: #fff;
  font-size: .875rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color .2s, transform .2s var(--ease);
}
.yt-button:hover { background: var(--red-700); transform: translateY(-1px); }
.yt-button .play-dot { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--red-600); }
.yt-button .play-dot .icon { width: 12px; height: 12px; margin-left: 2px; }
.yt-note { margin: 0 !important; color: rgba(255, 255, 255, .55) !important; font-size: .75rem !important; line-height: 1.45; max-width: 46ch; }
.yt-note a { color: rgba(255, 255, 255, .8); }
@media (max-width: 560px) { .yt-overlay p { display: none; } }

/* ---------- News-Karten ---------- */

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.news-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow); }
.news-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-50); }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-media img.is-contain { object-fit: contain; padding: 1.5rem; background: #fff; }
.news-card:hover .news-media img { transform: scale(1.04); }
.news-media .tag { position: absolute; left: 14px; top: 14px; background: rgba(255, 255, 255, .95); box-shadow: var(--shadow-sm); }
.news-body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.5rem; }
.news-body h3 { margin-bottom: .5rem; font-size: 1.125rem; transition: color .2s; }
.news-card:hover h3 { color: var(--red-600); }
.news-body p { color: var(--muted); font-size: .9375rem; margin-bottom: 1.1rem; }
.news-body .link-arrow { margin-top: auto; font-size: .9063rem; }

.news-card.is-featured { grid-column: span 2; flex-direction: row; }
.news-card.is-featured .news-media { flex: 1.15; aspect-ratio: auto; min-height: 320px; }
.news-card.is-featured .news-body { flex: 1; padding: clamp(1.5rem, 3vw, 2.5rem); justify-content: center; }
.news-card.is-featured h3 { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.75rem); }
.news-card.is-featured .link-arrow { margin-top: .5rem; }
@media (max-width: 1000px) {
  .news-card.is-featured { grid-column: auto / span 2; }
}
@media (max-width: 640px) {
  .news-card.is-featured { grid-column: auto; flex-direction: column; }
  .news-card.is-featured .news-media { min-height: 0; aspect-ratio: 16 / 10; }
}

.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .55rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .9063rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--navy-800); }
.filter-btn[aria-pressed="true"] { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.is-hidden { display: none !important; }

/* ---------- CTA / Kontaktbereich ---------- */

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 470px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.75rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(60% 90% at 0% 0%, rgba(25, 84, 143, .6), transparent 60%),
    radial-gradient(50% 80% at 100% 100%, rgba(224, 0, 63, .22), transparent 60%),
    var(--navy-900);
  color: rgba(255, 255, 255, .76);
}
.cta-card::before {
  content: "";
  position: absolute;
  left: -140px; bottom: -180px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .02);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; }
.cta-card .kicker { color: #ff5c86; }
.cta-card .lead { color: rgba(255, 255, 255, .78); margin-bottom: 2rem; }
.contact-lines { display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }
.contact-lines a, .contact-lines div {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}
.contact-lines .cl-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  transition: background-color .2s;
}
.contact-lines a:hover .cl-icon { background: var(--red-600); border-color: var(--red-600); }
.contact-lines .cl-icon .icon { width: 20px; height: 20px; }
.contact-lines small { display: block; color: rgba(255, 255, 255, .58); font-size: .8125rem; font-weight: 500; }
.contact-lines .cl-big { font-size: 1.25rem; letter-spacing: -.01em; }
@media (max-width: 960px) { .cta-card { grid-template-columns: 1fr; } }

/* ---------- Formulare ---------- */

.form-card {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: .3rem; font-size: 1.3rem; }
.form-card h3 + p { color: var(--muted); font-size: .9375rem; margin-bottom: 1.4rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { color: var(--ink); font-size: .875rem; font-weight: 650; }
.field label .req { color: var(--red-600); }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: .75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.75rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23647488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 1rem center / 18px no-repeat;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: #98a4b3; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: #b3c0cf; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(25, 84, 143, .14);
}
.field.has-error input, .field.has-error textarea { border-color: var(--red-600); background: var(--red-50); }
.field-error { display: none; color: var(--red-700); font-size: .8125rem; font-weight: 600; }
.field.has-error .field-error { display: block; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .8125rem; line-height: 1.5; }
.form-note .icon { display: inline-block; width: 16px; height: 16px; margin-right: .2rem; vertical-align: -3px; }
.form-note a { color: var(--navy-700); }
.form-actions { margin-top: 1.25rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem .5rem;
}
.form-success .success-icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: #e6f7f0;
  color: var(--green-600);
}
.form-success .success-icon .icon { width: 30px; height: 30px; stroke-width: 2.6; }
.form-success h3 { margin-bottom: .4rem; }
.form-success p { color: var(--muted); font-size: .9375rem; }
.form-success .demo-hint { margin-top: .9rem; font-size: .8125rem; color: #8a96a6; }
.is-sent .form-body { display: none; }
.is-sent .form-success { display: block; animation: pop .45s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }

.segmented {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem;
  min-inline-size: 0;
  margin: 0 0 1.4rem;
  padding: .35rem;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 42px;
  padding: .4rem .5rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 650;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s, color .2s, box-shadow .2s;
}
.segmented label .icon { width: 17px; height: 17px; }
.segmented input:checked + label { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.segmented input:focus-visible + label { outline: 3px solid rgba(224, 0, 63, .5); outline-offset: 1px; }
@media (max-width: 420px) { .segmented label .icon { display: none; } }

/* ---------- Unterseiten-Hero ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 6.5vw, 5.5rem);
  background:
    radial-gradient(50% 90% at 100% 0%, rgba(224, 0, 63, .22), transparent 60%),
    radial-gradient(60% 90% at 0% 100%, rgba(25, 84, 143, .55), transparent 65%),
    var(--navy-900);
  color: rgba(255, 255, 255, .78);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
  pointer-events: none;
}
.page-hero .rings {
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(620px, 70vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero .rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .09);
}
.page-hero .rings span:nth-child(2) { inset: 14%; border-color: rgba(255, 255, 255, .07); }
.page-hero .rings span:nth-child(3) { inset: 28%; border-color: rgba(224, 0, 63, .35); border-style: dashed; animation: spin 60s linear infinite; }
.page-hero .rings span:nth-child(4) { inset: 42%; background: radial-gradient(circle, rgba(224, 0, 63, .35), transparent 70%); border: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

.page-hero .container { position: relative; }
.page-hero h1 { max-width: 17ch; color: #fff; font-size: clamp(2.2rem, 1.5rem + 3vw, 3.75rem); }
.page-hero .lead { max-width: 60ch; color: rgba(255, 255, 255, .8); }
.page-hero .hero-actions { margin: 2rem 0 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
  font-weight: 550;
}
.breadcrumb a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; color: rgba(255, 255, 255, .35); }

/* ---------- Unter-Navigation (Produkt) ---------- */

.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.subnav ul {
  display: flex;
  gap: .25rem;
  margin: 0;
  padding: .6rem 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .9063rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.subnav a .icon { width: 17px; height: 17px; }
.subnav a:hover { color: var(--ink); background: var(--bg-soft); }
.subnav a.is-active { color: #fff; background: var(--navy-900); }

/* ---------- Modul-Karten (Produkt) ---------- */

.module-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 860px) { .module-grid { grid-template-columns: 1fr; } }
.module-card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}
.module-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.module-card-head h3 { margin: 0; font-size: 1.3rem; }
.module-card-head small { display: block; color: var(--muted); font-size: .8125rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.module-card .checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.25rem; font-size: .9688rem; }
@media (max-width: 560px) { .module-card .checklist { grid-template-columns: 1fr; } }
.module-card.is-dark {
  border-color: transparent;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: rgba(255, 255, 255, .76);
}
.module-card.is-dark h3 { color: #fff; }
.module-card.is-dark small { color: rgba(255, 255, 255, .55); }
.module-card.is-dark .checklist li::before { background-color: rgba(255, 255, 255, .12); }
.module-card.is-dark strong { color: #fff; }

/* ---------- Vorteile-Tabs ---------- */

.tabs { display: grid; gap: 1.5rem; }
.tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-self: center;
  padding: .35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tab-list button {
  padding: .6rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font-size: .9375rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.tab-list button:hover { color: var(--ink); }
.tab-list button[aria-selected="true"] { background: var(--navy-900); color: #fff; }
.tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
}
.tab-panel[hidden] { display: none; }
.tab-panel h3 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); }
.tab-panel p { color: var(--muted); }
@media (max-width: 860px) { .tab-panel { grid-template-columns: 1fr; } }

/* ---------- Logos (Portale/Partner) ---------- */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.logo-tile {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .25s var(--ease);
}
.logo-tile:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-2px); }
.logo-tile img { max-height: 58px; width: auto; object-fit: contain; }
.logo-tile a { display: grid; place-items: center; width: 100%; height: 100%; }

.customer-wall {
  --cols: 8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1000px) { .customer-wall { --cols: 5; } }
@media (max-width: 640px)  { .customer-wall { --cols: 3; } }
.customer-wall li {
  flex: 0 0 calc((100% - (var(--cols) - 1) * .75rem) / var(--cols));
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: .5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow .25s, border-color .25s;
}
.customer-wall li:hover { border-color: transparent; box-shadow: var(--shadow); }
.customer-wall img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .3s, opacity .3s; }
.customer-wall li:hover img { filter: none; opacity: 1; }

/* ---------- Partner ---------- */

.partner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 1000px) { .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .partner-grid { grid-template-columns: 1fr; } }
.partner-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.partner-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow); }
.partner-logo {
  aspect-ratio: 500 / 250;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.partner-card:hover .partner-logo img { transform: scale(1.04); }
.partner-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.6rem 1.6rem; }
.partner-body h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.partner-body p { color: var(--muted); font-size: .9375rem; margin-bottom: 1.25rem; }
.partner-body .link-arrow { margin-top: auto; font-size: .9063rem; }

/* ---------- Timeline / Prozess ---------- */

.process { position: relative; display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  counter-increment: step;
  transition: box-shadow .3s, border-color .3s;
}
.process-step:hover { border-color: transparent; box-shadow: var(--shadow); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.75rem + 31px);
  top: calc(1.6rem + 64px);
  bottom: calc(-1rem - 1.6rem);
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--line-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step.is-highlight::before { background: var(--red-600); color: #fff; }
.process-step h3 { margin-bottom: .4rem; }
.process-step p { color: var(--muted); font-size: .9688rem; }
.process-step .tag { margin-bottom: .6rem; }
@media (max-width: 560px) {
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
  .process-step::after { display: none; }
}

.cert-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cert {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  height: 100%;
  padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.cert:hover { transform: translateY(-3px); border-color: transparent; box-shadow: var(--shadow); }
.cert-top { display: flex; align-items: center; justify-content: space-between; }
.cert-year { color: var(--ink); font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.cert-top .icon { width: 22px; height: 22px; color: var(--navy-600); }
.cert-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--red-600); font-size: .8438rem; font-weight: 700; }
.cert-link .icon { width: 16px; height: 16px; }
.cert.is-latest { border-color: transparent; background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); box-shadow: var(--shadow); }
.cert.is-latest .cert-year { color: #fff; }
.cert.is-latest .cert-top .icon { color: #ff5c86; }
.cert.is-latest .cert-link { color: #fff; }
.cert .tag { align-self: flex-start; }

/* ---------- Info-Karten ---------- */

.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.info-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .info-grid, .info-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .info-grid, .info-grid.cols-2, .info-grid.cols-4 { grid-template-columns: 1fr; } }
.info-card {
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.info-card .icon-badge { margin-bottom: 1.2rem; }
.info-card h3 { margin-bottom: .45rem; font-size: 1.125rem; }
.info-card p { color: var(--muted); font-size: .9531rem; }

.contact-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.contact-card + .contact-card { margin-top: 1.25rem; }
.contact-card .tag { margin-bottom: .9rem; }
.contact-card h3 { margin-bottom: .25rem; font-size: 1.25rem; }
.contact-card address { margin-bottom: 1.25rem; color: var(--muted); font-style: normal; line-height: 1.6; }
.contact-card ul { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.contact-card li { display: flex; align-items: center; gap: .7rem; color: var(--ink); font-weight: 550; }
.contact-card li .icon { width: 18px; height: 18px; color: var(--red-600); }
.contact-card a { text-decoration: none; }
.contact-card a:hover { color: var(--red-600); text-decoration: underline; text-underline-offset: 3px; }

.person-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.avatar {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--line);
}
.person-card h3 { margin-bottom: .15rem; font-size: 1.125rem; }
.person-card p { color: var(--muted); font-size: .9063rem; line-height: 1.5; }

/* ---------- Broschüre ---------- */

.brochure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--red-50), #fff 60%);
  border: 1px solid var(--red-100);
}
.brochure-media { position: relative; }
.brochure-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .5s var(--ease);
}
.brochure:hover .brochure-media img { transform: rotate(0) scale(1.02); }
@media (max-width: 860px) { .brochure { grid-template-columns: 1fr; } }

/* ---------- Prose ---------- */

.prose { max-width: 70ch; }
.prose p { margin-bottom: 1.1em; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  background: var(--navy-950);
  color: rgba(255, 255, 255, .64);
  font-size: .9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.35fr);
  gap: 2.5rem;
}
.footer-brand img { width: auto; height: 36px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 34ch; }
.footer-claim {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  padding: .4rem .85rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #fff;
  font-size: .8438rem;
  font-weight: 650;
}
.footer-claim::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red-600); }
.site-footer h2 {
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: .8125rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact address { margin-bottom: 1rem; font-style: normal; line-height: 1.65; }
.footer-contact a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: #ff5c86; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; }
.footer-contact .icon { width: 17px; height: 17px; color: #ff5c86; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8438rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.footer-bottom a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  {
  .footer-grid { gap: 2rem 1.5rem; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
}

.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s var(--ease), visibility .25s, background-color .2s, color .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy-900); color: #fff; }
.to-top .icon { width: 20px; height: 20px; }

/* ---------- Video-Dialog ---------- */

.video-dialog {
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: #000;
  overflow: visible;
}
.video-dialog::backdrop { background: rgba(0, 12, 24, .82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.video-dialog video { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); background: #000; }
.dialog-close {
  position: absolute;
  right: 0; top: -54px;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s;
}
.dialog-close:hover { background: var(--red-600); }
.dialog-close .icon { width: 22px; height: 22px; }

/* ---------- Einblend-Animationen ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Falls das Skript nicht lädt, werden Inhalte trotzdem sichtbar. */
.js:not(.reveal-ready) .reveal { animation: reveal-fallback .6s 2.5s forwards; }
@keyframes reveal-fallback { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee-track [aria-hidden="true"] { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Hilfsklassen ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.stack > * + * { margin-top: 1rem; }
.center-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: clamp(2rem, 4vw, 3rem); }
