/* 1. Font */
@font-face {
  font-family: "Inter Variable";
  src: url("/backend/fonts/Inter/InterVariable.woff2") format("woff2"),
       url("/Areas/Backend/Client/fonts/Inter/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@media (min-width: 992px) {
  .btn-mobile-demo,
  .btn-mobile-cta {
    display: none !important;
  }
  .main-nav-modal {
    display: none !important;
  }
}
.site-section#preise {
  position: relative;
  background: #ffffff;
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
}
.site-section#preise::before,
.site-section#preise::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.site-section#preise::before {
  width: 260px;
  height: 260px;
  left: -130px;
  top: 18%;
  background: color-mix(in srgb, var(--brand-blue) 16%, transparent);
  z-index: 0;
}
.site-section#preise::after {
  width: 220px;
  height: 220px;
  right: -110px;
  bottom: 10%;
  background: color-mix(in srgb, var(--brand-purple-light) 16%, transparent);
  z-index: 0;
}
#preise > .site-container {
  position: relative;
  z-index: 1;
}
/* 2. Root-Variablen */
:root {
  /* Font */
  --font-family:
    "Inter Variable",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-primary: var(--font-family);
  --font-heading: var(--font-family);
  /* Brand */
  --brand-navy: #263367;
  --brand-purple-dark: #312d64;
  --brand-purple: #6b54e8;
  --brand-purple-light: #a192fc;
  --brand-blue: #5acdf3;
  --brand-blue-dark: #159ed3;
  --brand-pink: #d84e65;
  --brand-pink-light: #fb7d9b;
  --brand-orange: #fb9810;
  --brand-yellow: #face4b;
  /* Backgrounds */
  --color-page: #ffffff;
  --color-surface: #f7f9fc;
  --color-surface-soft: #f1f6fb;
  --color-border: #dfe7f1;
  /* Text */
  --color-heading: #102a43;
  --color-text: #5f6b7a;
  --color-muted: #8793a3;
  --color-white: #ffffff;
  /* Actions */
  --color-primary: #159ed3;
  --color-primary-hover: #118bbb;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(38, 51, 103, 0.08);
  --shadow-md: 0 12px 32px rgba(38, 51, 103, 0.12);
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  /* Width */
  --container-width: 1180px;
  --content-width: 720px;
  /* Spacing */
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --header-offset: 128px;
}
/* 3. Reset / Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-family);
  background: var(--color-page);
  color: var(--color-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
[id] {
  scroll-margin-top: var(--header-offset);
}
.visually-hidden-honeypot {
  position: absolute;
  left: -5000px;
}
/* 4. Layout */
.site-container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin-inline: auto;
}
.site-section {
  padding-block: var(--section-space);
}
.site-section--soft {
  background: var(--color-surface-soft);
}
.section-header {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.section-content,
.section-visual {
  min-width: 0;
}
.section-visual img {
  width: 100%;
  height: auto;
  display: block;
}
/* 5. Typography */
.headline-1 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.9rem);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.headline-2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.headline-3 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.subheadline {
  margin: 1.25rem auto 0;
  max-width: var(--content-width);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
}
.text-lg {
  margin: 0;
  color: var(--color-text);
  font-size: 1.0rem;
  line-height: 1.5;
}
.text-md {
  margin: 0;
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.65;
}
.text-sm {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}
.eyebrow {
  margin: 0 0 0.875rem;
  color: var(--brand-purple);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
/* 6. Buttons */
.btn-brand,
.btn-outline {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}
.btn-brand:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}
.btn-brand:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.btn-brand {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn-brand:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
}
.btn-outline {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-heading);
}
.btn-outline:hover {
  border-color: var(--brand-blue-dark);
  color: var(--brand-blue-dark);
}
.btn-nav {
  min-height: 34px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}
/* Mobile-Nav CTAs */
.btn-mobile-demo,
.btn-mobile-cta {
  display: none;
}
/* 7. Topbar und Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(241, 246, 251, 0.94);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
main {
  padding-top: 50px;
}
.main-nav__inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav__logo img {
  display: block;
  height: 22px;
  width: auto;
}
.main-nav__desktop {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.main-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  margin-right: 1.4rem;
}
.main-nav__links a {
  color: var(--color-heading);
  font-size: 0.9375rem;
  font-weight: 550;
  text-decoration: none;
}
.main-nav__links a:hover {
  color: var(--color-primary);
}
.main-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.main-nav__promo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--color-heading);
  line-height: 1;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 0.75rem;
}
.main-nav__promo-text {
  font-size: 0.9375rem;
  font-weight: 550;
  line-height: 1.2;
}
.main-nav__promo-rate {
  font-weight: 800;
}
.main-nav .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  border: 1px solid #d7e1ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.main-nav .navbar-toggler:hover {
  border-color: #b9cade;
  box-shadow: 0 8px 18px rgba(38, 51, 103, 0.14);
  transform: translateY(-1px);
}
.main-nav .navbar-toggler:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.main-nav__burger {
  display: grid;
  gap: 4px;
}
.main-nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #56657a;
  transition: transform 180ms ease, opacity 180ms ease;
}
.main-nav .navbar-toggler[aria-expanded="true"] .main-nav__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.main-nav .navbar-toggler[aria-expanded="true"] .main-nav__burger span:nth-child(2) {
  opacity: 0;
}
.main-nav .navbar-toggler[aria-expanded="true"] .main-nav__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* 8. Hero */
.hero {
  position: relative;
  padding-block: clamp(2.4rem, 5.5vw, 4.2rem);
  background: linear-gradient(180deg, var(--color-surface-soft) 0%, #fff 75%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 8%;
  background: color-mix(in srgb, var(--brand-blue) 20%, transparent);
  z-index: 0;
}
.hero::after {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 8%;
  background: color-mix(in srgb, var(--brand-purple-light) 18%, transparent);
  z-index: 0;
}
.hero > .site-container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 620px;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 1rem;
}
.hero-visual img {
  max-width: 420px;
  margin-inline: auto;
}
/* 9. Product Showcase */
.product-showcase {
  background: var(--color-page);
  padding-top: clamp(0.7rem, 2.2vw, 1.6rem);
}
#produktansicht.site-section {
  padding-top: 0;
  padding-bottom: 0;
}
.showcase-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  padding: 0.25rem 0.25rem 0.75rem;
}
.showcase-tabs__indicator {
  position: absolute;
  z-index: 0;
  top: 0.25rem;
  left: 0;
  width: 0;
  height: calc(100% - 1rem);
  border-radius: 16px;
  background: linear-gradient(180deg, #eef4fb 0%, #e5edf8 100%);
  border: 1px solid #aabed8;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 18px rgba(29, 45, 73, 0.12);
  transition:
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    width 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 200ms ease;
  pointer-events: none;
  opacity: 0;
}
.showcase-tab {
  position: relative;
  z-index: 1;
  border: 1px solid #e4e9f1;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
  color: #607086;
  border-radius: 14px;
  width: 100%;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
  padding: 0.45rem 0.35rem 0.4rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 4px 12px rgba(29, 45, 73, 0.07);
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 220ms ease;
}
.showcase-tab__icon {
  width: 1.15rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
}
.showcase-tab__label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}
.showcase-tab:hover {
  border-color: #cad5e5;
  color: #3d4f68;
  transform: translateY(-1px);
}
.showcase-tab:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.showcase-tab.is-active {
  border-color: #8fb4db;
  background: linear-gradient(180deg, #f5faff 0%, #edf4fd 100%);
  color: #324760;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 20px rgba(29, 45, 73, 0.14);
  transform: translateY(-2px);
}
.showcase-tab.is-active .showcase-tab__icon {
  transform: scale(1.08);
}
.showcase-stage {
  margin-top: 1.5rem;
}
.showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.showcase-frame {
  border: 1px solid #dde5f0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f9fbfe 0%, #f1f5fb 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 26px rgba(35, 52, 86, 0.1);
  overflow: hidden;
}
.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}
/* Produkt-Sektion */
#partner.site-section {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}
#produkt.site-section {
  position: relative;
  padding-block: clamp(0.5rem, 1vw, 1rem);
  background: #ffffff;
  overflow: hidden;
}
#produkt.site-section::before,
#produkt.site-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#produkt.site-section::before {
  width: 320px;
  height: 320px;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--brand-blue) 20%, transparent);
}
#produkt.site-section::after {
  width: 200px;
  height: 200px;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--brand-purple-light) 20%, transparent);
}
#produkt .section-grid {
  position: relative;
  z-index: 1;
}
/* 9. Sections */
.section-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.section-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
}
.section-list li i {
  color: var(--brand-blue-dark);
  margin-top: 0.15rem;
}
/* 10. Komponenten */
.pricing-wrap {
  background: transparent;
  color: var(--color-text);
  border-radius: 0;
  padding: 0 0 clamp(2rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.pricing-header .headline-2 {
  color: var(--color-heading);
  font-size: clamp(1.95rem, 3.2vw, 2.7rem);
}
.pricing-lead {
  color: var(--color-text);
  max-width: 1020px;
  margin: 0.9rem auto 0;
  font-size: 1.02rem;
  line-height: 1.55;
}
.pricing-lead-badges {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pricing-lead-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.95rem;
  border-radius: 12px;
  border: 1px solid #d5deeb;
  background: #f4f7fc;
  color: var(--color-heading);
  font-size: 0.92rem;
  font-weight: 670;
  line-height: 1.2;
}
.pricing-header {
  max-width: 1080px;
  margin-bottom: 1.6rem;
}
.pricing-campaign {
  margin: 0.7rem 0 0.8rem;
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.15rem 0 0.35rem;
  text-align: left;
}
.pricing-campaign__headline {
  margin: 0;
  color: var(--color-heading);
  font-weight: 680;
  font-size: 0.9rem;
  line-height: 1.45;
}
.pricing-campaign__headline strong {
  font-weight: 800;
}
.pricing-campaign__copy {
  margin: 0.15rem 0 0;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.45;
}
.pricing-benefits {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.48rem;
}
.pricing-benefit {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  padding: 0.22rem 0.58rem;
  font-size: 0.74rem;
}
.pricing-matrix {
  margin-top: 1rem;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  overflow: hidden;
  background: #fbfdff;
  box-shadow: 0 10px 24px rgba(16, 29, 61, 0.1);
}
.pricing-matrix__row {
  display: grid;
  grid-template-columns: 0.86fr 1fr 1fr 1fr;
  background: #ffffff;
  min-height: 86px;
}
.pricing-matrix__row:nth-child(even) {
  background: #fcfdff;
}
.pricing-matrix__row + .pricing-matrix__row {
  border-top: 1px solid #edf2f7;
}
.pricing-matrix__row--head {
  background: #f3f7fc;
}
.pricing-matrix__row--head .pricing-matrix__cell {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.pricing-matrix__row--cta {
  background: #f8fbff;
}
.pricing-matrix__cell {
  padding: 0.92rem 1rem;
  color: #273348;
  font-size: 0.95rem;
  line-height: 1.45;
  display: block;
}
.pricing-matrix__cell + .pricing-matrix__cell {
  border-left: 1px solid #eef2f7;
}
.pricing-matrix__cell--category {
  font-weight: 660;
  color: #1e2a40;
  background: #f7f9fd;
}
.pricing-matrix__cell--tariff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}
.pricing-matrix__row .pricing-matrix__cell:nth-child(2),
.pricing-matrix__row .pricing-matrix__cell:nth-child(3),
.pricing-matrix__row .pricing-matrix__cell:nth-child(4) {
  background: #ffffff;
}
.pricing-matrix__row:nth-child(even) .pricing-matrix__cell:nth-child(2),
.pricing-matrix__row:nth-child(even) .pricing-matrix__cell:nth-child(3),
.pricing-matrix__row:nth-child(even) .pricing-matrix__cell:nth-child(4) {
  background: #fcfdff;
}
.pricing-matrix__tariff-title {
  font-size: 1.22rem;
  font-weight: 730;
  letter-spacing: -0.02em;
  color: #1b2640;
}
.pricing-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef2f9;
  color: #344562;
  border: 1px solid #dbe3ef;
  font-size: 0.7rem;
  font-weight: 650;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}
.pricing-matrix__value {
  font-weight: 700;
  color: #1c2a44;
}
.pricing-matrix__subvalue {
  margin: 0.1rem 0 0;
  color: #6f7f95;
  font-size: 0.77rem;
  line-height: 1.28;
}
.pricing-service {
  display: grid;
  gap: 0.12rem;
  align-content: start;
}
.pricing-service__regular {
  margin: 0;
  font-size: 0.77rem;
  color: #79889d;
}
.pricing-service__promo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38rem;
  flex-wrap: nowrap;
}
.pricing-service__promo {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 770;
  line-height: 1.06;
  color: #182744;
}
.pricing-service__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: #eef2f8;
  border: 1px solid #d9e2ef;
  color: #43546f;
  font-size: 0.66rem;
  font-weight: 650;
}
.pricing-service__until {
  margin: 0;
  color: #61728a;
  font-size: 0.73rem;
  line-height: 1.3;
}
.pricing-service__hint {
  margin: 0;
  color: #8493a8;
  font-size: 0.67rem;
  line-height: 1.3;
}
.pricing-service__meta {
  margin: 0;
  color: #6c7d94;
  font-size: 0.76rem;
  line-height: 1.35;
}
.pricing-btn {
  min-height: 40px;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 630;
}
.pricing-btn--primary {
  box-shadow: none;
}
.pricing-btn--secondary {
  background: #f8fbff;
  border-color: #c8d4e6;
  color: #2f4464;
}
.pricing-btn--secondary:hover {
  border-color: #b1c2d9;
  color: #24385a;
  background: #eef4fb;
}
.pricing-mobile-cards {
  display: none;
  gap: 0.9rem;
}
.pricing-card {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(22, 39, 77, 0.12);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.pricing-fee {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #eaf0f6;
  padding-bottom: 0.52rem;
  gap: 0.8rem;
}
.pricing-fee > span:last-child {
  font-weight: 700;
  color: #334762;
  text-align: right;
}
.pricing-fee--service {
  align-items: stretch;
}
.pricing-fee-note {
  margin: -0.45rem 0 0.1rem;
  color: #70829a;
  font-size: 0.78rem;
  text-align: right;
}
.pricing-fee:last-child {
  border-bottom: 0;
}
.pricing-mobile-cards .pricing-service {
  gap: 0.15rem;
}
.pricing-mobile-cards .pricing-service__hint {
  font-size: 0.71rem;
}
.pricing-legal {
  margin-top: 0.45rem;
  text-align: left;
  line-height: 1.45;
}
.pricing-legal .text-sm {
  margin: 0;
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.45;
}
.pricing-legal--subtle {
  margin-top: 0.16rem;
  color: var(--color-text);
  font-size: 0.88rem;
}
.lab-section {
  background: #ffffff;
}
#labor.site-section {
  padding-block: 2rem;
}
#team.site-section {
  background: #ffffff;
  padding-top: calc(var(--section-space) * 0.55);
  padding-bottom: calc(var(--section-space) * 0.55);
}
#team .section-grid {
  align-items: flex-start;
}
/* Community Section */
.community-grid {
  width: min(calc(100% - 2rem), var(--container-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(3rem, 7vw, 7rem);
  row-gap: 0.75rem;
  align-items: start;
}
.community-gallery__main {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.community-gallery__main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.community-gallery__caption {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-size: 0.79rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.community-mobile-strip {
  display: none;
}
.community-gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.community-gallery__thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.community-gallery__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.community-text-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.community-text-imgs img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.lab-section__inner {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}
.lab-section__lead {
  max-width: 940px;
  margin: 0 auto;
  color: #647794;
  font-size: clamp(1.06rem, 1.6vw, 1.88rem);
  line-height: 1.55;
}
.lab-partners {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.lab-partner-card {
  background: #ffffff;
  border: 1px solid #e9edf5;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(33, 49, 97, 0.08);
  padding: 0.7rem 0.5rem 0.65rem;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.lab-partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(33, 49, 97, 0.12);
  border-color: #dbe4f2;
}
.lab-partner-card__logo {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.lab-partner-card__logo img {
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: min(220px, 100%);
}
.lab-partner-card__claim {
  margin: 0;
  color: #2f3f68;
  font-weight: 630;
  font-size: 1rem;
  line-height: 1.45;
}
.lab-partner-card__desc {
  margin: 0.5rem 0 0;
  color: #70809b;
  font-size: 1rem;
  line-height: 1.45;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.partner-carousel-section {
  margin-top: 0.5rem;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.partner-carousel-label {
  max-width: 1220px;
  margin: 0 auto 0.35rem;
  
}
.partner-carousel-label .eyebrow {
  margin-bottom: 0.34rem;
}
.partner-carousel-label .headline-3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}
.partner-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: linear-gradient(to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 10%,
    rgba(255,255,255,1) 90%,
    rgba(255,255,255,0) 100%);
  padding: 0.4rem 0;
}
.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.partner-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.partner-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.partner-marquee__track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
  animation: partner-marquee-scroll 36s linear infinite;
}
.partner-marquee__item {
  flex: 0 0 auto;
  min-width: 192px;
  height: 68px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
}
.partner-marquee__item img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes partner-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.partner-card img {
  max-width: 170px;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.hero-anim-logo,
.hero-anim-text,
.hero-anim-btns,
.hero-anim-img,
.hero-anim-badge {
  animation: none;
}
/* Modal + Newsletter */
.modal-header-bg {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  padding: 1.4rem 1.4rem 1.8rem;
}
.modal-logo {
  max-height: 32px;
  width: auto;
}
.modal-headline {
  color: var(--color-white);
  margin: 0.7rem 0 0.25rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  font-weight: 720;
}
.modal-subline {
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.modal-content-section {
  padding: 1.5rem;
}
.modal-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.modal-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.newsletter-form {
  max-width: 520px;
}
.newsletter-form .form-control {
  min-height: 48px;
  border: 1px solid var(--color-border);
}
.newsletter-strip {
  background: var(--color-page);
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--color-border);
}
.newsletter-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
}
.newsletter-strip__intro .headline-3 {
  margin-bottom: 0.35rem;
}
.newsletter-strip .newsletter-form {
  max-width: none;
}
/* 11. Footer */
.site-footer {
  background: linear-gradient(160deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  color: var(--color-white);
  padding-block: clamp(2.6rem, 4vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.16);
}
.site-footer .headline-2,
.site-footer .headline-3 {
  color: var(--color-white);
}
.site-footer .headline-2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.site-footer .headline-3 {
  font-size: 1.1rem;
  line-height: 1.2;
}
.site-footer .text-md {
  color: rgba(255,255,255,0.9);
}
.site-footer .text-sm {
  color: rgba(255,255,255,0.72);
}
.footer-intro {
  max-width: 760px;
  margin-bottom: 1.6rem;
}
.footer-intro .headline-2 {
  margin-bottom: 0.6rem;
}
.footer-top {
  margin-top: 0.35rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.25rem;
}
.footer-links {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
}
.footer-links a:hover {
  color: #9fe3ff;
}
.footer-social-links {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-social-links a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.footer-social-links a:hover {
  background: rgba(159, 227, 255, 0.18);
  border-color: rgba(159, 227, 255, 0.6);
  transform: translateY(-1px);
}
.footer-bottom {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #9fe3ff;
}
.funding-logos {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
.funding-logos img {
  max-width: min(100%, 480px);
  height: auto;
}
/* Compatibility (public legal/faq pages) */
.section-padding {
  padding-block: var(--section-space);
}
.custom-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.text-primary {
  color: var(--color-heading) !important;
}
/* 12. Responsive Regeln */
@media (max-width: 991.98px) {
  :root {
    --header-offset: 136px;
  }
  .main-nav__inner {
    min-height: 48px;
  }
  main {
    padding-top: 48px;
  }
  .main-nav__desktop {
    display: none;
  }
  .main-nav .navbar-toggler {
    display: inline-flex;
  }
  .main-nav-modal .modal-dialog {
    margin: 0.7rem 0.6rem 0 auto;
    max-width: min(320px, 92vw);
  }
  .main-nav-modal .modal-content {
    border: 0;
    border-left: 1px solid #dce5f1;
    border-radius: 14px;
    background: rgba(248, 251, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .main-nav-modal .modal-header {
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.7rem;
    border-bottom: 1px solid #e4ebf5;
  }
  .main-nav-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }
  .main-nav__links,
  .main-nav__actions,
  .main-nav__promo {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 0.5rem;
  }
  .main-nav-modal .main-nav__links {
    display: grid;
    gap: 0.4rem;
    padding-top: 0;
  }
  .main-nav-modal .main-nav__links a {
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
    font-size: 1rem;
  }
  .main-nav-modal .main-nav__links a:hover {
    background: #edf3fb;
  }
  .main-nav-modal .main-nav__actions {
    display: grid;
    gap: 0.6rem;
    padding-top: 0;
  }
  .main-nav-modal .main-nav__actions .btn-nav {
    width: 100%;
    justify-content: center;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  /* Produkt-Sektion mobile */
  #produkt .section-content {
    text-align: center;
    order: 1;
  }
  #produkt .product-visual {
    order: 2;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
  #produkt .product-visual img {
    max-width: 240px;
    width: 100%;
  }
  #produkt .section-list {
    justify-items: center;
  }
  #produkt .section-list li {
    justify-content: center;
    text-align: center;
  }
  /* Preise-Sektion mobile */
  #preise .pricing-wrap {
    padding-top: 1.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-matrix {
    display: none;
  }
  .pricing-mobile-cards {
    display: grid;
    grid-template-columns: 1fr;
  }
  .pricing-mobile-cards .pricing-fee--service > span:first-child {
    align-self: flex-start;
  }
  .pricing-mobile-cards .pricing-service {
    justify-items: end;
    text-align: right;
  }
  .pricing-mobile-cards .pricing-service__promo-row {
    justify-content: flex-end;
    gap: 0.42rem;
  }
  .pricing-mobile-cards .pricing-service__promo {
    font-size: 1.3rem;
  }
  .pricing-mobile-cards .pricing-service__meta {
    max-width: 22ch;
    text-wrap: balance;
  }
  .lab-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-carousel-label {
    padding-left: clamp(0.1rem, 0.8vw, 0.65rem);
  }
  .partner-marquee__item {
    min-width: 170px;
    height: 62px;
  }
  .partner-marquee__item img {
    max-height: 34px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .newsletter-strip__inner {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  #community .community-text-imgs {
    grid-template-columns: 1fr;
    margin-top: 0.75rem;
  }
  #community .community-gallery__main img,
  #community .community-text-imgs img {
    height: 300px;
  }
  #community .community-text-imgs img:nth-child(n+2) {
    display: none;
  }
  #community .community-gallery__thumbs,
  #community .community-mobile-strip {
    display: none;
  }
  /* Hero mobile */
  .hero-content {
    text-align: center;
    max-width: none;
  }
  .hero-content .subheadline {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual img {
    max-width: 400px;
  }
  /* Beide Buttons neben Hamburger */
  .btn-mobile-demo {
    display: inline-flex;
    margin-left: auto;
    margin-right: 0.4rem;
  }
  .btn-mobile-cta {
    display: inline-flex;
    margin-left: 0;
    margin-right: 0.4rem;
  }
  .hero-demo-btn,
  .hero-app-btn {
    display: none;
  }
  .navbar-toggler {
    margin-left: 0 !important;
  }
}
@media (max-width: 767.98px) {
  :root {
    --header-offset: 128px;
  }
  .community-gallery__main img {
    height: 240px;
  }
  .community-gallery__thumb img {
    height: 120px;
  }
  .community-mobile-strip {
    display: none;
  }
  .community-gallery__thumbs {
    display: none;
  }
  .community-text-imgs {
    display: grid;
    grid-template-columns: 1fr;
  }
  .community-text-imgs img {
    height: 240px;
  }
  .site-section {
    padding-block: 4rem;
  }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .hero-actions a,
  .hero-actions button {
    width: auto;
  }
  .hero-visual img {
    max-width: 300px;
  }
  .main-nav__promo {
    justify-content: flex-start;
    white-space: normal;
    gap: 0.25rem;
    margin-bottom: 0;
  }
  .partner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .partner-carousel-label {
    padding-left: 0;
    margin-bottom: 0.3rem;
  }
  .partner-carousel-section {
    padding-inline: 0;
  }
  .partner-carousel-label .headline-3 {
    margin-bottom: 0.2rem;
  }
  .partner-marquee {
    border-radius: 0;
    padding: 0.3rem 0;
  }
  .partner-marquee::before,
  .partner-marquee::after {
    width: 46px;
  }
  .partner-marquee__track {
    gap: 0.65rem;
    animation-duration: 28s;
  }
  .partner-marquee__item {
    min-width: 146px;
    height: 52px;
    padding: 0.28rem 0.5rem;
  }
  .partner-marquee__item img {
    max-height: 30px;
  }
  .lab-partners {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .lab-partner-card {
    text-align: center;
    padding: 1.2rem 1.05rem 1.2rem;
  }
  .lab-partner-card__logo {
    justify-content: center;
    min-height: 52px;
  }
  .lab-partner-card__logo img {
    max-height: 44px;
    max-width: min(190px, 70vw);
  }
  .lab-partner-card__claim {
    font-size: 1.08rem;
  }
  .lab-partner-card__desc {
    font-size: 0.97rem;
  }
  .showcase-tabs {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    margin-inline: -0.1rem;
    padding-bottom: 0.7rem;
    scrollbar-width: thin;
  }
  .showcase-tabs__indicator {
    display: none;
  }
  .showcase-tab {
    min-width: 90px;
    min-height: 66px;
    padding: 0.42rem 0.35rem;
    border-radius: 11px;
  }
  .showcase-tab__icon {
    width: 1.1rem;
    font-size: 1.05rem;
  }
  .showcase-tab__label {
    font-size: 0.74rem;
  }
  #produkt .product-visual img {
    max-width: 170px;
  }
}
@media (max-width: 575.98px) {
  .showcase-tab {
    min-width: 82px;
    min-height: 60px;
    padding: 0.35rem 0.28rem;
  }
  .showcase-tab__icon {
    width: 1rem;
    font-size: 0.95rem;
  }
  .showcase-tab__label {
    font-size: 0.68rem;
  }
  .btn-mobile-cta {
    display: none !important;
  }
  .btn-mobile-demo {
    margin-right: 0.5rem;
  }
  .modal-content-section {
    padding: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .wtsh-floating-badge {
    animation: none !important;
  }
  .showcase-tab,
  .showcase-tabs__indicator,
  .showcase-panel,
  .showcase-frame {
    transition: none !important;
    animation: none !important;
  }
  .partner-marquee__track {
    animation: none !important;
  }
}
.wtsh-floating-badge {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.14);
  box-shadow: 0 10px 20px rgba(18, 30, 58, 0.18);
  animation: wtsh-float 2.8s ease-in-out infinite;
}
.wtsh-floating-badge img {
  display: block;
  width: auto;
  height: 26px;
}
@keyframes wtsh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 767.98px) {
  .wtsh-floating-badge {
    left: 0.7rem;
    bottom: 0.7rem;
    padding: 0.28rem 0.4rem;
  }
  .wtsh-floating-badge img {
    height: 21px;
  }
}
