/* ============================================================
   Baukasten – Shared Wireframe Styles
   Neutraler Grundriss ohne Farben – Themes überschreiben diese Werte
   ============================================================ */

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

:root {
  /* Wireframe palette – wird durch Theme überschrieben */
  --wf-bg: #ffffff;
  --wf-bg-subtle: #f5f5f5;
  --wf-border: #cccccc;
  --wf-border-strong: #999999;
  --wf-text: #333333;
  --wf-text-muted: #666666;
  --wf-text-light: #999999;
  --wf-accent: #555555;

  /* Spacing */
  --wf-space-xs: 0.25rem;
  --wf-space-sm: 0.5rem;
  --wf-space-md: 1rem;
  --wf-space-lg: 1.25rem;
  --wf-space-xl: 1.5rem;
  --wf-space-2xl: 2rem;

  /* Typography – Theme setzt Schriftarten */
  --wf-font: system-ui, -apple-system, sans-serif;
  --wf-font-size-sm: 0.875rem;
  --wf-font-size-base: 1rem;
  --wf-font-size-lg: 1.125rem;
  --wf-h1-size: clamp(1.75rem, 3.5vw, 2.25rem);
  --wf-h2-size: clamp(1.5rem, 3vw, 1.875rem);
  --wf-h3-size: clamp(1.125rem, 2vw, 1.375rem);
  --wf-h4-size: 1.125rem;
  --wf-h5-size: 1rem;
  --wf-h6-size: 0.875rem;
  --wf-heading-weight: 700;
  --wf-heading-line-height: 1.25;
  --wf-body-size: 1rem;
  --wf-body-size-sm: 0.875rem;
  --wf-body-line-height: 1.6;

  /* Layout */
  --wf-header-height: 72px;
  --wf-max-width: 1200px;
  --wf-container-padding: 1.5rem;
}

body {
  font-family: var(--wf-font);
  font-size: var(--wf-body-size);
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--wf-body-line-height);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--wf-heading-weight);
  line-height: var(--wf-heading-line-height);
  color: var(--wf-text);
}

h1 { font-size: var(--wf-h1-size); }
h2 { font-size: var(--wf-h2-size); }
h3 { font-size: var(--wf-h3-size); }
h4 { font-size: var(--wf-h4-size); }
h5 { font-size: var(--wf-h5-size); }
h6 { font-size: var(--wf-h6-size); }

p {
  font-size: var(--wf-body-size);
  line-height: var(--wf-body-line-height);
}

/* ── Placeholders ─────────────────────────────────────────────── */

.wf-placeholder-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  border: 2px dashed var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  color: var(--wf-text-light);
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.wf-placeholder-logo--large {
  width: 160px;
  height: 56px;
}

.wf-placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  border: 2px dashed var(--wf-border);
  background: var(--wf-bg-subtle);
  color: var(--wf-text-light);
  font-size: var(--wf-font-size-sm);
}

.wf-placeholder-image::before {
  content: "Bild-Platzhalter";
}

.wf-placeholder-button {
  display: inline-flex;
  align-items: center;
  padding: var(--wf-space-sm) var(--wf-space-lg);
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  color: var(--wf-text);
  font-size: var(--wf-font-size-sm);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

button.wf-placeholder-button {
  appearance: none;
}

/* ── Header base ─────────────────────────────────────────── */

.wf-header {
  width: 100%;
  background: var(--wf-bg);
  border-bottom: 2px solid var(--wf-border);
}

.wf-header__inner {
  display: flex;
  align-items: center;
  max-width: var(--wf-max-width);
  margin: 0 auto;
  padding: 0 var(--wf-container-padding);
  min-height: var(--wf-header-height);
}

.wf-header__logo {
  flex-shrink: 0;
}

.wf-header__nav {
  display: flex;
  align-items: center;
  gap: var(--wf-space-xl);
  list-style: none;
  padding: 0;
  margin: 0;
}

.wf-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--wf-space-xl);
  list-style: none;
  padding: 0;
  margin: 0;
}

.wf-header__nav-list li {
  display: block;
}

.wf-header__nav-link {
  color: var(--wf-text-muted);
  text-decoration: none;
  font-size: var(--wf-font-size-sm);
  cursor: default;
}

.wf-header__nav-link:hover {
  color: var(--wf-text);
}

.wf-header__nav-link--active {
  color: var(--wf-text);
  font-weight: 600;
}

.wf-header__nav-link--dropdown::after {
  content: " ▾";
  font-size: 0.75em;
}

/* ── Module label (for preview pages) ────────────────────── */

.wf-module-label {
  display: inline-block;
  padding: var(--wf-space-xs) var(--wf-space-sm);
  background: var(--wf-bg-subtle);
  border: 1px solid var(--wf-border);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ── Hero base ───────────────────────────────────────────── */

.wf-hero {
  width: 100%;
  position: relative;
}

.wf-hero__headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--wf-space-md);
}

.wf-hero__subheadline {
  font-size: var(--wf-font-size-lg);
  font-weight: 600;
  margin-bottom: var(--wf-space-sm);
}

.wf-hero__text {
  font-size: var(--wf-font-size-base);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-xl);
  max-width: 42rem;
}

.wf-hero__text--center {
  margin-left: auto;
  margin-right: auto;
}

.wf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wf-space-md);
}

.wf-hero__actions--center {
  justify-content: center;
}

.wf-hero__surface {
  position: absolute;
  inset: 0;
  background: var(--wf-bg-subtle);
}

.wf-hero__link {
  color: var(--wf-text);
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-decoration: underline;
  cursor: default;
}

.wf-hero__badge {
  display: inline-block;
  padding: var(--wf-space-xs) var(--wf-space-md);
  border: 1px solid var(--wf-border-strong);
  background: var(--wf-bg);
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: var(--wf-space-md);
}

.wf-hero__usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--wf-space-md);
  max-width: var(--wf-max-width);
  margin: var(--wf-space-2xl) auto 0;
  padding: var(--wf-space-lg);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
}

.wf-hero__usp-item {
  text-align: center;
  padding: var(--wf-space-sm);
  border-right: 1px solid var(--wf-border);
}

.wf-hero__usp-item:last-child {
  border-right: none;
}

.wf-hero__usp-title {
  font-weight: 700;
  font-size: var(--wf-font-size-sm);
  margin-bottom: var(--wf-space-xs);
}

.wf-hero__usp-text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-hero__overlay--dark {
  background: rgba(0, 0, 0, 0.45);
}

.wf-hero-carousel__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.wf-hero-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.wf-hero-carousel__slide {
  flex: 0 0 100%;
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: stretch;
}

.wf-hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--wf-border-strong);
  background: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  color: var(--wf-text);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.wf-hero-carousel__arrow--prev {
  left: var(--wf-container-padding);
}

.wf-hero-carousel__arrow--next {
  right: var(--wf-container-padding);
}

.wf-hero-carousel__arrow[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.wf-hero-carousel__dots {
  position: absolute;
  bottom: var(--wf-space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--wf-space-sm);
}

.wf-hero-carousel__dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}

.wf-hero-carousel__dot--active {
  background: var(--wf-border-strong);
}

/* ── Form wireframe ──────────────────────────────────────── */

.wf-form {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-md);
}

.wf-form__title {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-bottom: var(--wf-space-sm);
}

.wf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-md);
}

.wf-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-xs);
}

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

.wf-form__label {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--wf-text-muted);
}

.wf-form__input,
.wf-form__textarea {
  width: 100%;
  padding: var(--wf-space-sm) var(--wf-space-md);
  border: 2px dashed var(--wf-border);
  background: var(--wf-bg);
  font-family: inherit;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text);
}

.wf-form__input::placeholder,
.wf-form__textarea::placeholder {
  color: var(--wf-text-light);
}

.wf-form__input:focus,
.wf-form__textarea:focus {
  outline: 2px solid var(--wf-border-strong);
  outline-offset: 0;
  border-color: var(--wf-border-strong);
}

.wf-form__textarea {
  min-height: 100px;
  resize: vertical;
}

.wf-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--wf-space-sm);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  cursor: pointer;
}

.wf-form__checkbox-input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--wf-accent);
}

.wf-form__checkbox-box {
  width: 16px;
  height: 16px;
  border: 2px solid var(--wf-border-strong);
  flex-shrink: 0;
  margin-top: 2px;
}

.wf-form__hint {
  font-size: 0.75rem;
  color: var(--wf-text-light);
}

.wf-form__submit {
  width: 100%;
  padding: var(--wf-space-md);
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  cursor: default;
}

.wf-form-box {
  padding: var(--wf-space-xl);
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg);
}

/* ── Teaser base ─────────────────────────────────────────── */

.wf-teaser {
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-teaser__header {
  text-align: center;
  margin-bottom: var(--wf-space-2xl);
}

.wf-teaser__header--left {
  text-align: left;
}

.wf-teaser__label {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-teaser__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-teaser__title--sm {
  font-size: var(--wf-font-size-lg);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-bottom: var(--wf-space-lg);
}

.wf-teaser__intro {
  color: var(--wf-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.wf-teaser__intro--left {
  margin: 0;
  max-width: none;
  text-align: left;
}

.wf-teaser__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-2xl);
  align-items: start;
}

.wf-teaser__split--center {
  align-items: center;
}

.wf-teaser__divider {
  width: 48px;
  height: 3px;
  border: none;
  background: var(--wf-border-strong);
  margin: var(--wf-space-md) 0 var(--wf-space-lg);
}

.wf-teaser__divider--center {
  margin-left: auto;
  margin-right: auto;
}

.wf-teaser__actions {
  margin-top: var(--wf-space-lg);
}

.wf-teaser__actions--center {
  display: flex;
  justify-content: center;
}

.wf-teaser__text-block p {
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
}

.wf-teaser__text-block p:last-child {
  margin-bottom: 0;
}

.wf-teaser__list-col {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-xl);
  padding: var(--wf-space-lg);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
}

.wf-teaser-item {
  display: flex;
  gap: var(--wf-space-lg);
  align-items: flex-start;
  padding-bottom: var(--wf-space-xl);
  border-bottom: 1px solid var(--wf-border);
}

.wf-teaser-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.wf-teaser-item__title {
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: var(--wf-space-sm);
}

.wf-teaser-item__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
}

.wf-teaser-usp {
  padding: var(--wf-space-lg);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
  border-left: 4px solid var(--wf-border-strong);
}

.wf-teaser-usp__title {
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-teaser-usp__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-teaser__usps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-lg);
  margin-top: var(--wf-space-2xl);
}

.wf-teaser__media-stack {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-md);
  height: 100%;
}

.wf-teaser__media-stack .wf-placeholder-image {
  flex: 1;
  min-height: 200px;
}

.wf-teaser__center-wrap {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 560px) 1fr;
  gap: var(--wf-space-xl);
  align-items: center;
}

.wf-teaser__center-content {
  text-align: center;
}

.wf-teaser__center-content .wf-teaser__intro {
  margin: 0 auto;
}

.wf-teaser__side-media .wf-placeholder-image {
  min-height: 320px;
}

.wf-teaser__grid {
  display: grid;
  gap: var(--wf-space-xl);
}

.wf-teaser-card {
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
  display: flex;
  flex-direction: column;
}

.wf-teaser-card__body {
  padding: var(--wf-space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wf-teaser-card__title {
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-teaser-card__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
  flex: 1;
}

.wf-teaser-card__image .wf-placeholder-image {
  min-height: 160px;
  border: none;
  border-bottom: 2px solid var(--wf-border);
}

.wf-teaser-card__footer {
  margin-top: auto;
}

.wf-teaser-card__footer--center {
  text-align: center;
}

.wf-teaser-link {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
  text-decoration: underline;
  color: var(--wf-text);
  cursor: default;
}

.wf-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px dashed var(--wf-border-strong);
  background: var(--wf-bg);
  color: var(--wf-text-light);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wf-teaser-card__icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: var(--wf-bg-subtle);
  border-bottom: 2px solid var(--wf-border);
}

.wf-teaser-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-2xl);
  align-items: center;
  margin-bottom: var(--wf-space-2xl);
}

.wf-teaser-row:last-child {
  margin-bottom: 0;
}

.wf-teaser-row--reverse .wf-teaser-row__media {
  order: 2;
}

.wf-teaser-row--reverse .wf-teaser-row__content {
  order: 1;
}

.wf-teaser-row__media .wf-placeholder-image {
  min-height: 280px;
  border-radius: 0;
}

.wf-teaser-row__title {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-teaser-row__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-sm) var(--wf-space-lg);
  margin-top: var(--wf-space-md);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-teaser-row__list li::before {
  content: "• ";
  color: var(--wf-text-light);
}

.wf-teaser-row__actions {
  margin-top: var(--wf-space-lg);
}

.wf-teaser-header-box {
  display: inline-block;
  padding: var(--wf-space-lg) var(--wf-space-xl);
  background: var(--wf-bg-subtle);
  border: 2px solid var(--wf-border);
  margin-bottom: var(--wf-space-2xl);
}

.wf-teaser-card--text-only .wf-teaser-card__body {
  min-height: 220px;
}

.wf-teaser-card__footer--end {
  display: flex;
  justify-content: flex-end;
}

.wf-teaser-carousel__viewport {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.wf-teaser-carousel__track {
  display: flex;
  gap: var(--wf-space-lg);
  transition: transform 0.35s ease;
}

.wf-teaser-carousel__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg);
  font-size: 1.25rem;
  color: var(--wf-text);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.wf-teaser-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-space-md);
  padding: var(--wf-space-md) var(--wf-space-lg);
  border: none;
  background: var(--wf-accent);
  color: var(--wf-bg);
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  border-radius: 12px 12px 0 0;
}

.wf-teaser-accordion__chevron {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.wf-teaser-accordion__item.is-open .wf-teaser-accordion__chevron {
  transform: rotate(180deg);
}

.wf-teaser-accordion__panel {
  padding: var(--wf-space-lg);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
  border-top: none;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-teaser-accordion__panel[hidden] {
  display: none;
}

.wf-teaser-scroll-section__card {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--wf-space-2xl);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
  text-align: center;
}

.wf-teaser-scroll-section__kicker {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-xs);
}

.wf-teaser-scroll-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-teaser-scroll-section__subtitle {
  font-size: var(--wf-font-size-lg);
  font-weight: 600;
  margin-bottom: var(--wf-space-md);
}

.wf-teaser-scroll-section__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
  line-height: 1.6;
}

.wf-teaser-scroll-section__list {
  list-style: disc;
  padding-left: 1.25rem;
  text-align: left;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
}

.wf-teaser-scroll-section__list li {
  margin-bottom: var(--wf-space-xs);
}

/* ── Referenzen / Galerie ──────────────────────────────────── */

.wf-gallery-preview__main .wf-placeholder-image {
  min-height: 280px;
}

.wf-gallery-preview__thumbs {
  display: flex;
  gap: var(--wf-space-sm);
}

.wf-gallery-preview__thumb {
  flex: 1;
  border: 2px solid var(--wf-border);
  cursor: default;
}

.wf-gallery-preview__thumb--active {
  border-color: var(--wf-border-strong);
}

.wf-gallery-preview__thumb .wf-placeholder-image {
  min-height: 72px;
  border: none;
}

.wf-gallery-preview__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wf-space-md);
  margin-top: var(--wf-space-sm);
}

.wf-gallery-preview__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  cursor: default;
}

.wf-gallery-preview__dots {
  display: flex;
  gap: var(--wf-space-xs);
}

.wf-gallery-preview__dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  border-radius: 50%;
}

.wf-gallery-preview__dot--active {
  background: var(--wf-border-strong);
}

.wf-ref-grid {
  display: grid;
  gap: var(--wf-space-lg);
}

.wf-ref-card {
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
  display: flex;
  flex-direction: column;
}

.wf-ref-card__image .wf-placeholder-image {
  min-height: 180px;
  border: none;
  border-bottom: 2px solid var(--wf-border);
}

.wf-ref-card__caption {
  padding: var(--wf-space-md);
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
}

.wf-ref-overlay {
  position: relative;
  min-height: 360px;
}

.wf-ref-overlay__bg .wf-placeholder-image {
  min-height: 360px;
  border: none;
}

.wf-ref-overlay__box {
  position: absolute;
  top: 50%;
  left: var(--wf-container-padding);
  transform: translateY(-50%);
  max-width: 420px;
  padding: var(--wf-space-xl);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
}

.wf-ref-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wf-space-lg);
}

.wf-ref-slider__stage {
  width: 100%;
  max-width: 720px;
}

.wf-ref-slider__stage .wf-placeholder-image {
  min-height: 320px;
}

.wf-ref-slider__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wf-space-md);
}

@media (max-width: 768px) {
  .wf-teaser__split,
  .wf-teaser__center-wrap {
    grid-template-columns: 1fr;
  }

  .wf-teaser__usps-row {
    grid-template-columns: 1fr;
  }

  .wf-teaser-row {
    grid-template-columns: 1fr;
  }

  .wf-teaser-row--reverse .wf-teaser-row__media,
  .wf-teaser-row--reverse .wf-teaser-row__content {
    order: unset;
  }

  .wf-teaser-row__list {
    grid-template-columns: 1fr;
  }
}

/* ── Banner base ─────────────────────────────────────────── */

.wf-banner {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg-subtle);
  border-top: 2px solid var(--wf-border);
  border-bottom: 2px solid var(--wf-border);
}

.wf-banner__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-banner__heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--wf-space-xl);
}

.wf-banner__question {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-xs);
}

.wf-banner__question-label {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
}

.wf-banner__question-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.wf-banner__divider-v {
  width: 2px;
  align-self: stretch;
  background: var(--wf-border);
  flex-shrink: 0;
}

.wf-banner__usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--wf-space-xl);
}

.wf-banner-usp__title {
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-banner-usp__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-banner-usp-card {
  padding: var(--wf-space-lg);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
}

@media (max-width: 768px) {
  .wf-banner__split {
    flex-direction: column;
  }

  .wf-banner__divider-v {
    width: 100%;
    height: 2px;
    align-self: auto;
  }
}

/* ── CTA-Banner ──────────────────────────────────────────── */

.wf-cta-banner {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg-subtle);
  border-top: 2px solid var(--wf-border);
  border-bottom: 2px solid var(--wf-border);
}

.wf-cta-banner__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-cta-banner__headline {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-cta-banner__text {
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
  max-width: 42rem;
}

.wf-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wf-space-md);
}

.wf-cta-banner__center {
  text-align: center;
}

.wf-cta-banner__center .wf-cta-banner__text {
  margin-left: auto;
  margin-right: auto;
}

.wf-cta-banner__center .wf-cta-banner__actions {
  justify-content: center;
}

.wf-cta-banner__split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-space-2xl);
}

.wf-cta-banner__content {
  flex: 1;
}

.wf-cta-banner__stack .wf-cta-banner__text {
  margin-bottom: var(--wf-space-lg);
}

@media (max-width: 768px) {
  .wf-cta-banner__split {
    flex-direction: column;
    align-items: flex-start;
  }

  .wf-cta-banner__split .wf-cta-banner__actions {
    width: 100%;
  }
}

/* ── Partner-Banner ──────────────────────────────────────── */

.wf-partner-banner {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg);
  border-top: 2px solid var(--wf-border);
  border-bottom: 2px solid var(--wf-border);
}

.wf-partner-banner__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-partner-banner__intro {
  text-align: center;
  margin-bottom: var(--wf-space-xl);
}

.wf-partner-banner__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-partner-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-partner-banner__text {
  color: var(--wf-text-muted);
  max-width: 42rem;
  margin: 0 auto var(--wf-space-lg);
}

.wf-partner-banner__label {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-xl);
}

.wf-partner-banner__label--center {
  text-align: center;
}

.wf-partner-banner__logo-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--wf-space-lg) var(--wf-space-xl);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
}

.wf-partner-banner__marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.wf-partner-banner__marquee-track.is-js-marquee {
  animation: none !important;
  -webkit-animation: none !important;
}

.wf-partner-banner__marquee-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: wf-partner-marquee 35s linear infinite;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.wf-partner-banner__marquee-set {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: var(--wf-space-lg);
  padding-right: var(--wf-space-lg);
}

.wf-partner-banner__marquee-set .wf-partner-banner__logo-box {
  flex-shrink: 0;
}

@keyframes wf-partner-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.wf-partner-banner__carousel {
  display: flex;
  align-items: center;
  gap: var(--wf-space-md);
}

.wf-partner-banner__carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.wf-partner-banner__carousel-slide {
  display: flex;
  justify-content: center;
  gap: var(--wf-space-lg);
}

.wf-partner-banner__carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wf-space-md);
  margin-top: var(--wf-space-lg);
}

.wf-partner-banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  flex-shrink: 0;
  cursor: default;
}

.wf-partner-banner__dots {
  display: flex;
  gap: var(--wf-space-xs);
}

.wf-partner-banner__dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  border-radius: 50%;
}

.wf-partner-banner__dot--active {
  background: var(--wf-border-strong);
}

.wf-partner-banner__logos-static {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wf-space-xl);
}

.wf-partner-banner__logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wf-space-lg);
}

.wf-partner-banner__logos-row--featured .wf-partner-banner__logo-box {
  padding: var(--wf-space-xl) var(--wf-space-2xl);
}

.wf-partner-banner__logos-row--featured .wf-placeholder-logo {
  width: 140px;
  height: 48px;
}

@media (max-width: 768px) {
  .wf-partner-banner__carousel-slide {
    flex-wrap: wrap;
  }

  .wf-partner-banner__logos-row--featured .wf-placeholder-logo {
    width: 120px;
    height: 40px;
  }

  /* Marquee: auf Touch-Geräten zuverlässig durchlaufen (Mask/Overflow-Bugs) */
  .wf-partner-banner__marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: hidden;
    overflow-y: visible;
    touch-action: pan-y;
  }

  .wf-partner-banner__marquee-track {
    animation-play-state: running !important;
    -webkit-animation: wf-partner-marquee 35s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-partner-banner__marquee-track,
  .wf-partner-banner__marquee-track.is-js-marquee {
    animation: none !important;
  }
}

/* ── Kundenstimmen ───────────────────────────────────────── */

.wf-reviews {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg);
}

.wf-reviews__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-reviews__header {
  margin-bottom: var(--wf-space-xl);
}

.wf-reviews__header--center {
  text-align: center;
}

.wf-reviews__header--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--wf-space-xl);
}

.wf-reviews__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-reviews__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-reviews__divider {
  width: 48px;
  height: 3px;
  background: var(--wf-border-strong);
}

.wf-reviews__header--center .wf-reviews__divider {
  margin: 0 auto;
}

.wf-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font-weight: 700;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  flex-shrink: 0;
}

.wf-review-stars {
  display: inline-flex;
  gap: 3px;
}

.wf-review-stars__star {
  width: auto;
  height: auto;
  border: none;
  background: none;
  font-size: 1rem;
  line-height: 1;
  color: #f4b400;
}

.wf-review-stars__star::before {
  content: "★";
}

.wf-review-card {
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
}

.wf-review-card__name {
  font-size: var(--wf-font-size-base);
  font-weight: 700;
  margin-bottom: var(--wf-space-xs);
}

.wf-review-card__date {
  display: block;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-review-card__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-review-card__more,
.wf-review-card__source {
  display: inline-block;
  margin-top: var(--wf-space-md);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-light);
}

.wf-review-card--stack {
  flex-shrink: 0;
  width: 260px;
  padding: var(--wf-space-xl) var(--wf-space-lg);
  padding-top: calc(var(--wf-space-xl) + 20px);
  text-align: center;
}

.wf-review-card--stack .wf-review-card__avatar-wrap {
  margin-top: -44px;
  margin-bottom: var(--wf-space-md);
}

.wf-review-card--stack .wf-review-stars {
  margin-bottom: var(--wf-space-md);
}

.wf-review-card--row {
  display: flex;
  gap: var(--wf-space-md);
  padding: var(--wf-space-lg);
  background: var(--wf-bg-subtle);
}

.wf-review-card--row .wf-review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--wf-space-sm);
  margin-bottom: var(--wf-space-sm);
}

.wf-review-card--row .wf-review-card__name {
  margin-bottom: 0;
  width: 100%;
}

.wf-review-card--row .wf-review-card__date {
  margin-bottom: 0;
}

.wf-reviews__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.wf-reviews__marquee-track {
  display: flex;
  width: max-content;
  animation: wf-reviews-marquee 40s linear infinite;
}

.wf-reviews__marquee-set {
  display: flex;
  gap: var(--wf-space-lg);
  padding-right: var(--wf-space-lg);
}

@keyframes wf-reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wf-reviews__carousel-row {
  display: flex;
  align-items: center;
  gap: var(--wf-space-md);
}

.wf-reviews__carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.wf-reviews__carousel-slide {
  display: flex;
  gap: var(--wf-space-lg);
  transition: transform 0.35s ease;
}

.wf-reviews__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  flex-shrink: 0;
  cursor: default;
}

.wf-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wf-space-lg);
}

@media (max-width: 768px) {
  .wf-reviews__header--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .wf-reviews__carousel-slide {
    flex-wrap: wrap;
  }

  .wf-reviews__grid {
    grid-template-columns: 1fr;
  }

  .wf-review-card--stack {
    width: 100%;
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-reviews__marquee-track {
    animation: none;
  }
}

/* ── FAQ ─────────────────────────────────────────────────── */

.wf-faq {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg);
}

.wf-faq__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-faq__header {
  text-align: center;
  margin-bottom: var(--wf-space-xl);
}

.wf-faq__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-faq__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-faq__intro {
  color: var(--wf-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.wf-faq__list {
  display: flex;
  flex-direction: column;
}

.wf-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-space-md);
  padding: var(--wf-space-lg);
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.wf-faq-item__question {
  font-weight: 700;
  flex: 1;
}

.wf-faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  color: var(--wf-text-muted);
  font-size: var(--wf-font-size-lg);
  line-height: 1;
  transition: transform 0.2s ease;
}

.wf-faq-item__icon--arrow {
  font-size: var(--wf-font-size-sm);
}

.wf-faq-item.is-open .wf-faq-item__icon--arrow {
  transform: rotate(90deg);
}

.wf-faq-item.is-open .wf-faq-item__icon--plus {
  font-size: 1.25rem;
}

.wf-faq-item.is-open .wf-faq-item__icon--plus::before {
  content: "−";
}

.wf-faq-item:not(.is-open) .wf-faq-item__icon--plus::before {
  content: "+";
}

.wf-faq-item__panel {
  padding: 0 var(--wf-space-lg) var(--wf-space-lg);
}

.wf-faq-item__panel p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-faq-item--box {
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
}

.wf-faq-item--box + .wf-faq-item--box {
  margin-top: var(--wf-space-md);
}

.wf-faq__list--divided .wf-faq-item {
  border-bottom: 2px solid var(--wf-border);
}

.wf-faq__list--divided .wf-faq-item:first-child {
  border-top: 2px solid var(--wf-border);
}

.wf-faq__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--wf-space-2xl);
  align-items: start;
}

.wf-faq__intro-col .wf-faq__title {
  text-align: left;
}

.wf-faq__intro-col .wf-faq__intro {
  margin: 0 0 var(--wf-space-lg);
  max-width: none;
}

@media (max-width: 768px) {
  .wf-faq__split {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-faq-item__icon {
    transition: none;
  }
}

/* ── Footer ──────────────────────────────────────────────── */

.wf-footer {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg-subtle);
  border-top: 2px solid var(--wf-border);
}

.wf-footer__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-footer__heading {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  margin-bottom: var(--wf-space-md);
}

.wf-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-sm);
}

.wf-footer__link {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  text-decoration: none;
  cursor: default;
}

.wf-footer__link:hover {
  color: var(--wf-text);
}

.wf-footer__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-footer__list--lined .wf-footer__list-item {
  padding-bottom: var(--wf-space-sm);
  border-bottom: 1px solid var(--wf-border);
}

.wf-footer__list--lined .wf-footer__list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wf-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--wf-space-sm);
}

.wf-footer__contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px dashed var(--wf-border-strong);
  background: var(--wf-bg);
}

.wf-footer__bottom {
  margin-top: var(--wf-space-xl);
  padding-top: var(--wf-space-lg);
  border-top: 2px solid var(--wf-border);
  text-align: center;
}

.wf-footer__bottom p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-light);
}

.wf-footer__main--center-logo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--wf-space-2xl);
  align-items: start;
}

.wf-footer__col--left {
  text-align: right;
}

.wf-footer__col--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wf-space-md);
}

.wf-footer__col--right {
  text-align: left;
}

.wf-footer__grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-2xl);
}

.wf-footer__split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--wf-space-2xl);
  align-items: start;
}

.wf-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-md);
  max-width: 240px;
}

.wf-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-xl);
}

@media (max-width: 768px) {
  .wf-footer__main--center-logo,
  .wf-footer__grid--3,
  .wf-footer__split,
  .wf-footer__cols {
    grid-template-columns: 1fr;
  }

  .wf-footer__col--left,
  .wf-footer__col--center,
  .wf-footer__col--right {
    text-align: left;
  }

  .wf-footer__col--center {
    align-items: flex-start;
  }

  .wf-footer__split {
    gap: var(--wf-space-xl);
  }
}

/* ── Vorher-Nachher ──────────────────────────────────────── */

.wf-ba {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg);
}

.wf-ba__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-ba__header {
  text-align: center;
  margin-bottom: var(--wf-space-xl);
}

.wf-ba__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-ba__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-ba__intro {
  color: var(--wf-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.wf-ba__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--wf-space-xl);
}

.wf-ba-compare__title {
  font-size: var(--wf-font-size-base);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-ba-compare__stage {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--wf-border);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.wf-ba-compare__layer {
  width: 100%;
}

.wf-ba-compare__layer .wf-placeholder-image {
  min-height: 280px;
  border: none;
  border-radius: 0;
}

.wf-ba-compare__layer--before {
  position: absolute;
  inset: 0;
  width: 100%;
  clip-path: inset(0 50% 0 0);
}

.wf-ba-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--wf-bg);
  transform: translateX(-50%);
  pointer-events: none;
}

.wf-ba-compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border: 3px solid var(--wf-border-strong);
  border-radius: 50%;
  background: var(--wf-bg);
  transform: translate(-50%, -50%);
}

.wf-ba-compare__label {
  position: absolute;
  bottom: var(--wf-space-md);
  padding: var(--wf-space-xs) var(--wf-space-sm);
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  background: rgba(51, 51, 51, 0.75);
  color: #fff;
  pointer-events: none;
}

.wf-ba-compare__label--before {
  left: var(--wf-space-md);
}

.wf-ba-compare__label--after {
  right: var(--wf-space-md);
}

.wf-placeholder-image--ba-before::before {
  content: "Vorher";
}

.wf-placeholder-image--ba-after::before {
  content: "Nachher";
}

.wf-ba-hover__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-md);
}

.wf-ba-hover {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--wf-border);
}

.wf-ba-hover__layer {
  width: 100%;
}

.wf-ba-hover__layer .wf-placeholder-image {
  min-height: 200px;
  border: none;
  border-radius: 0;
}

.wf-ba-hover__layer--before {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wf-ba-hover:hover .wf-ba-hover__layer--before,
.wf-ba-hover:focus-within .wf-ba-hover__layer--before {
  opacity: 1;
}

@media (max-width: 768px) {
  .wf-ba-hover__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-ba-hover__layer--before {
    transition: none;
  }
}

/* ── Referenzen-Galerie (Detailseite) ─────────────────────── */

.wf-ref-page {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg);
}

.wf-ref-page__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-ref-page__header {
  margin-bottom: var(--wf-space-xl);
}

.wf-ref-page__header--center {
  text-align: center;
}

.wf-ref-page__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-ref-page__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-ref-page__intro {
  color: var(--wf-text-muted);
  max-width: 42rem;
}

.wf-ref-page__header--center .wf-ref-page__intro {
  margin: 0 auto;
}

.wf-ref-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: var(--wf-space-md);
}

.wf-ref-masonry__item .wf-placeholder-image {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
}

.wf-ref-masonry__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.wf-ref-masonry__item--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.wf-ref-masonry__item--tall {
  grid-column: span 1;
  grid-row: span 2;
}

.wf-ref-project {
  margin-bottom: var(--wf-space-2xl);
}

.wf-ref-project:last-child {
  margin-bottom: 0;
}

.wf-ref-project__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-ref-project__divider {
  height: 2px;
  background: var(--wf-border);
  margin-bottom: var(--wf-space-lg);
}

.wf-ref-project__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-lg);
  align-items: start;
}

.wf-ref-project__main .wf-placeholder-image {
  min-height: 360px;
}

.wf-ref-project__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-sm);
}

.wf-ref-project__thumbs .wf-placeholder-image {
  min-height: 100px;
  aspect-ratio: 1;
}

.wf-ref-carousels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wf-space-xl);
}

.wf-ref-carousel__viewport {
  overflow: hidden;
  border: 2px solid var(--wf-border);
}

.wf-ref-carousel__track {
  display: flex;
  transition: transform 0.25s ease;
}

.wf-ref-carousel__slide {
  flex: 0 0 100%;
}

.wf-ref-carousel__slide .wf-placeholder-image {
  min-height: 280px;
  border: none;
  border-radius: 0;
}

.wf-ref-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wf-space-md);
  margin-top: var(--wf-space-md);
}

.wf-ref-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.wf-ref-carousel__arrow[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.wf-ref-carousel__dots {
  display: flex;
  gap: var(--wf-space-xs);
}

.wf-ref-carousel__dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}

.wf-ref-carousel__dot--active {
  background: var(--wf-border-strong);
}

@media (max-width: 768px) {
  .wf-ref-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .wf-ref-masonry__item--lg,
  .wf-ref-masonry__item--wide {
    grid-column: span 2;
  }

  .wf-ref-project__split {
    grid-template-columns: 1fr;
  }

  .wf-ref-carousels-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-ref-carousel__track {
    transition: none;
  }
}

/* ── Kontaktseite ──────────────────────────────────────────── */

.wf-contact {
  width: 100%;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg);
}

.wf-contact__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-contact__header {
  text-align: center;
  margin-bottom: var(--wf-space-2xl);
  padding-bottom: var(--wf-space-lg);
}

.wf-contact__intro {
  max-width: 42rem;
  margin: 0 auto var(--wf-space-lg);
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-contact__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-contact__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-contact__divider {
  width: 48px;
  height: 3px;
  background: var(--wf-border-strong);
  margin: 0 auto var(--wf-space-md);
}

.wf-contact__phone {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
}

.wf-contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-xl);
  align-items: start;
}

.wf-contact__box {
  padding: var(--wf-space-xl);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
}

.wf-contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-lg);
  margin-bottom: var(--wf-space-lg);
}

.wf-contact-info__label {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-xs);
}

.wf-contact-info__value {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text);
}

.wf-placeholder-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 2px dashed var(--wf-border);
  background: var(--wf-bg-subtle);
  color: var(--wf-text-light);
  font-size: var(--wf-font-size-sm);
}

.wf-placeholder-map::before {
  content: "Karten-Platzhalter";
}

.wf-form {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-md);
}

.wf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-md);
}

.wf-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-xs);
}

.wf-form__label {
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
}

.wf-form__input,
.wf-form__textarea {
  width: 100%;
  padding: var(--wf-space-sm) var(--wf-space-md);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg-subtle);
  font: inherit;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text);
}

.wf-form__input::placeholder,
.wf-form__textarea::placeholder {
  color: var(--wf-text-light);
}

.wf-form__input:focus,
.wf-form__textarea:focus {
  outline: 2px solid var(--wf-border-strong);
  outline-offset: 0;
  border-color: var(--wf-border-strong);
}

.wf-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.wf-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--wf-space-sm);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  cursor: pointer;
}

.wf-form__checkbox-input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wf-accent);
}

.wf-form__checkbox-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  margin-top: 2px;
}

.wf-form__select {
  position: relative;
}

.wf-form__select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-space-md);
  padding: var(--wf-space-sm) var(--wf-space-md);
  border: 2px dashed var(--wf-border);
  background: var(--wf-bg);
  font: inherit;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text);
  cursor: pointer;
  text-align: left;
}

.wf-form__select-value:empty,
.wf-form__select-value[data-placeholder="true"] {
  color: var(--wf-text-muted);
}

.wf-form__select-trigger:focus {
  outline: 2px solid var(--wf-border-strong);
  outline-offset: 0;
  border-color: var(--wf-border-strong);
}

.wf-form__select-arrow {
  flex-shrink: 0;
  color: var(--wf-text-light);
  font-size: var(--wf-font-size-sm);
  line-height: 1;
  transition: transform 0.2s ease;
}

.wf-form__select.is-open .wf-form__select-arrow {
  transform: rotate(180deg);
}

.wf-form__select-options {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: var(--wf-space-xs) 0;
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-height: 200px;
  overflow-y: auto;
}

.wf-form__select-options li {
  margin: 0;
}

.wf-form__select-option {
  width: 100%;
  padding: var(--wf-space-sm) var(--wf-space-md);
  border: none;
  background: none;
  font: inherit;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text);
  text-align: left;
  cursor: pointer;
}

.wf-form__select-option:hover {
  background: var(--wf-bg-subtle);
}

.wf-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wf-space-md);
}

.wf-form__radio {
  display: inline-flex;
  align-items: center;
  gap: var(--wf-space-sm);
  font-size: var(--wf-font-size-sm);
}

.wf-form__radio-dot {
  width: 16px;
  height: 16px;
  border: 2px solid var(--wf-border-strong);
  border-radius: 50%;
  background: var(--wf-bg-subtle);
  flex-shrink: 0;
}

.wf-form__actions {
  display: flex;
  justify-content: flex-end;
}

.wf-form__actions--center {
  justify-content: center;
}

.wf-form__actions--full .wf-placeholder-button {
  width: 100%;
  justify-content: center;
}

.wf-contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-xl);
}

.wf-contact-detail__item {
  display: flex;
  gap: var(--wf-space-md);
  align-items: flex-start;
}

.wf-contact-detail__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 2px dashed var(--wf-border-strong);
  background: var(--wf-bg-subtle);
}

.wf-contact-detail__title {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-bottom: var(--wf-space-xs);
}

.wf-contact-detail__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .wf-form__select-arrow {
    transition: none;
  }
}

.wf-contact__form-col .wf-contact__phone-hint,
.wf-contact__info-col .wf-contact__phone-hint {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  margin-bottom: var(--wf-space-lg);
  padding-bottom: var(--wf-space-md);
  border-bottom: 2px solid var(--wf-border);
}

@media (max-width: 768px) {
  .wf-contact__split {
    grid-template-columns: 1fr;
  }

  .wf-form__row {
    grid-template-columns: 1fr;
  }
}

/* ── Jobs / Bewerbung ───────────────────────────────────────── */

.wf-jobs {
  padding: var(--wf-space-2xl) var(--wf-container-padding);
}

.wf-jobs__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-jobs__header {
  text-align: center;
  margin-bottom: var(--wf-space-2xl);
}

.wf-jobs__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-jobs__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-jobs__intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-jobs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wf-space-sm);
  margin-bottom: var(--wf-space-xl);
}

.wf-jobs-tabs__btn {
  padding: var(--wf-space-sm) var(--wf-space-lg);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
  font: inherit;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  color: var(--wf-text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wf-jobs-tabs__btn.is-active,
.wf-jobs-tabs__btn:hover {
  background: var(--wf-accent);
  border-color: var(--wf-accent);
  color: var(--wf-bg);
}

.wf-jobs-panel__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-2xl);
  margin-bottom: var(--wf-space-xl);
}

.wf-jobs-panel__heading {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-jobs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-sm);
}

.wf-jobs-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-jobs-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wf-text);
  font-weight: 700;
}

.wf-jobs-list--check li::before {
  content: "✓";
  font-size: 0.75rem;
}

.wf-jobs-panel__note {
  padding: var(--wf-space-lg);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg-subtle);
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-jobs-panel__note strong {
  display: block;
  color: var(--wf-text);
  margin-bottom: var(--wf-space-xs);
}

.wf-jobs-cta {
  margin-top: var(--wf-space-2xl);
  padding: var(--wf-space-xl);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg-subtle);
  text-align: center;
}

.wf-jobs-cta__title {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-jobs-cta__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
}

.wf-jobs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wf-space-md);
}

.wf-placeholder-button--primary {
  background: var(--wf-accent);
  border-color: var(--wf-accent);
  color: var(--wf-bg);
}

.wf-jobs__section-kicker {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
}

.wf-jobs__list {
  display: flex;
  flex-direction: column;
}

.wf-jobs-item {
  border-bottom: 2px solid var(--wf-border);
}

.wf-jobs-item:first-child {
  border-top: 2px solid var(--wf-border);
}

.wf-jobs-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-space-md);
  padding: var(--wf-space-lg) 0;
  border: none;
  background: none;
  font: inherit;
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--wf-text);
}

.wf-jobs-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wf-border-strong);
  border-radius: 50%;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-jobs-item__icon--plus::before {
  content: "+";
  line-height: 1;
}

.wf-jobs-item.is-open .wf-jobs-item__icon--plus::before {
  content: "−";
}

.wf-jobs-item__panel {
  padding-bottom: var(--wf-space-xl);
}

.wf-jobs-item__panel p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
}

.wf-jobs-item__panel-split {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: var(--wf-space-xl);
  align-items: start;
}

.wf-jobs-item__subheading {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  margin: var(--wf-space-md) 0 var(--wf-space-sm);
}

.wf-jobs-item__media .wf-placeholder-image {
  min-height: 280px;
}

.wf-jobs-apply__kicker {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-jobs-apply__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-jobs-apply__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-jobs-detail__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
}

.wf-jobs-detail__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-jobs-detail__intro {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-xl);
}

.wf-jobs-detail__section + .wf-jobs-detail__section {
  margin-top: var(--wf-space-lg);
}

.wf-jobs-detail__section-title {
  font-size: var(--wf-font-size-base);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-form__upload {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-xs);
}

.wf-form__upload-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--wf-space-md);
}

.wf-form__upload-btn {
  padding: var(--wf-space-sm) var(--wf-space-md);
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg-subtle);
  font: inherit;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  cursor: pointer;
}

.wf-form__upload-status {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-light);
}

.wf-form__upload-hint {
  font-size: 0.75rem;
  color: var(--wf-text-light);
}

@media (max-width: 768px) {
  .wf-jobs-panel__cols,
  .wf-jobs-item__panel-split {
    grid-template-columns: 1fr;
  }

  .wf-jobs-item__media .wf-placeholder-image {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-jobs-tabs__btn {
    transition: none;
  }
}

/* ── Über uns (Seite) ───────────────────────────────────────── */

.wf-about {
  padding: var(--wf-space-2xl) var(--wf-container-padding);
}

.wf-about__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-about__inner--narrow {
  max-width: 800px;
}

.wf-about__header {
  text-align: center;
  margin-bottom: var(--wf-space-2xl);
}

.wf-about__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-about__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.wf-about__band {
  padding: var(--wf-space-lg) var(--wf-container-padding);
  margin: 0 calc(-1 * var(--wf-container-padding)) var(--wf-space-2xl);
  background: var(--wf-bg-subtle);
  border-top: 2px solid var(--wf-border);
  border-bottom: 2px solid var(--wf-border);
  text-align: center;
}

.wf-about__band-kicker {
  font-size: var(--wf-font-size-sm);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-xs);
}

.wf-about__band-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

.wf-about__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--wf-space-2xl);
  margin-bottom: var(--wf-space-2xl);
}

.wf-about__prose p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
}

.wf-about__prose p:last-child {
  margin-bottom: 0;
}

.wf-about__aside-block + .wf-about__aside-block {
  margin-top: var(--wf-space-xl);
}

.wf-about__aside-title {
  font-size: var(--wf-font-size-base);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-about__aside-text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-about__stats {
  margin: 0 calc(-1 * var(--wf-container-padding));
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-accent);
  color: var(--wf-bg);
  position: relative;
  overflow: hidden;
}

.wf-about__stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.04) 8px,
    rgba(255, 255, 255, 0.04) 16px
  );
  pointer-events: none;
}

.wf-about__stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--wf-space-xl);
  max-width: var(--wf-max-width);
  margin: 0 auto;
  text-align: center;
}

.wf-about-stat__value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--wf-space-sm);
}

.wf-about-stat__label {
  display: block;
  font-size: var(--wf-font-size-sm);
  opacity: 0.9;
  line-height: 1.4;
}

.wf-about__overlap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  min-height: 420px;
}

.wf-about__overlap-text {
  position: relative;
  z-index: 2;
  padding: var(--wf-space-2xl);
  background: var(--wf-accent);
  color: var(--wf-bg);
  margin-right: -4rem;
}

.wf-about__overlap-text .wf-about__section-title {
  color: var(--wf-bg);
}

.wf-about__overlap-text p {
  color: rgba(255, 255, 255, 0.85);
}

.wf-about__overlap-media {
  position: relative;
  z-index: 1;
}

.wf-about__overlap-media .wf-placeholder-image {
  min-height: 400px;
}

.wf-about__section {
  margin-bottom: var(--wf-space-2xl);
}

.wf-about__section:last-child {
  margin-bottom: 0;
}

.wf-about__section-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-about__section--center {
  text-align: center;
}

.wf-about__section--center .wf-about__prose {
  max-width: 720px;
  margin: 0 auto;
}

.wf-about__gallery-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-xl);
}

.wf-about__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-lg);
}

.wf-about__gallery .wf-placeholder-image {
  min-height: 200px;
  border-radius: 12px;
}

.wf-about__cert-list {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-lg);
}

.wf-about__cert-item {
  padding: var(--wf-space-lg);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg-subtle);
}

.wf-about__cert-title {
  font-size: var(--wf-font-size-base);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-about__cert-text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-about__cta {
  margin-top: var(--wf-space-2xl);
  padding: var(--wf-space-xl);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg-subtle);
  text-align: center;
}

.wf-about__cta-title {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-about__cta-text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
}

.wf-about__timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 720px;
  margin: 0 auto var(--wf-space-2xl);
}

.wf-about__timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--wf-border-strong);
}

.wf-about-timeline-item {
  position: relative;
  padding-bottom: var(--wf-space-xl);
}

.wf-about-timeline-item:last-child {
  padding-bottom: 0;
}

.wf-about-timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-2rem + 2px);
  top: 6px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--wf-border-strong);
  border-radius: 50%;
  background: var(--wf-bg);
}

.wf-about-timeline-item__title {
  font-size: var(--wf-font-size-base);
  font-weight: 700;
  margin-bottom: var(--wf-space-sm);
}

.wf-about-timeline-item__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-about__team-photo {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.wf-about__team-photo .wf-placeholder-image {
  min-height: 320px;
  border-radius: 12px;
  margin-bottom: var(--wf-space-md);
}

.wf-about__team-caption {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

@media (max-width: 900px) {
  .wf-about__split,
  .wf-about__overlap {
    grid-template-columns: 1fr;
  }

  .wf-about__overlap-text {
    margin-right: 0;
    margin-bottom: var(--wf-space-lg);
  }

  .wf-about__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wf-about__gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wf-about__stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pop-ups ────────────────────────────────────────────────── */

.wf-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--wf-container-padding);
}

.wf-popup[hidden] {
  display: none;
}

.wf-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
}

.wf-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: var(--wf-space-2xl);
  border: 2px solid var(--wf-border);
  background: var(--wf-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.wf-popup__close {
  position: absolute;
  top: var(--wf-space-md);
  right: var(--wf-space-md);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--wf-text-muted);
  cursor: pointer;
}

.wf-popup__close:hover {
  color: var(--wf-text);
}

.wf-popup__title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
  padding-right: var(--wf-space-xl);
}

.wf-popup__text {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
  line-height: 1.6;
}

.wf-popup__actions {
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-sm);
  align-items: flex-start;
}

.wf-popup__actions .wf-placeholder-button {
  width: 100%;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.wf-popup--image .wf-popup__dialog {
  max-width: 560px;
  padding: var(--wf-space-md);
}

.wf-popup--image .wf-popup__close {
  top: var(--wf-space-sm);
  right: var(--wf-space-sm);
  background: var(--wf-bg);
  border: 2px solid var(--wf-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
}

.wf-popup--image .wf-placeholder-image {
  min-height: 360px;
  border-radius: 4px;
}

.wf-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--wf-space-lg) var(--wf-container-padding);
  background: var(--wf-bg);
  border-top: 2px solid var(--wf-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.wf-cookie-banner[hidden] {
  display: none;
}

.wf-cookie-banner__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-space-lg);
}

.wf-cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-cookie-banner__text a {
  color: var(--wf-text);
  font-weight: 600;
}

.wf-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wf-space-sm);
  flex-shrink: 0;
}

.wf-cookie-banner--in-frame {
  position: absolute;
}

.wf-popup-demo {
  min-height: 280px;
  padding: var(--wf-space-2xl);
  background: var(--wf-bg-subtle);
  border: 2px dashed var(--wf-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--wf-space-md);
}

.wf-popup-demo__label {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-light);
}

.wf-popup-demo__open {
  padding: var(--wf-space-sm) var(--wf-space-lg);
  border: 2px solid var(--wf-border-strong);
  background: var(--wf-bg);
  font: inherit;
  font-size: var(--wf-font-size-sm);
  cursor: pointer;
}

.wf-popup--in-frame {
  position: absolute;
}

/* ── Leistungen (Detailseite) ───────────────────────────────── */

.wf-leistung {
  padding-bottom: var(--wf-space-2xl);
}

.wf-leistung__inner {
  max-width: var(--wf-max-width);
  margin: 0 auto;
  padding: 0 var(--wf-container-padding);
}

.wf-leistung__header {
  text-align: center;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  margin-bottom: var(--wf-space-2xl);
  background: var(--wf-bg-subtle);
  border-bottom: 2px solid var(--wf-border);
}

.wf-leistung__kicker {
  display: block;
  font-size: var(--wf-font-size-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-sm);
}

.wf-leistung__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-leistung__intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-leistung-zigzag__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-2xl);
  align-items: center;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-leistung-zigzag__row--alt {
  background: var(--wf-bg-subtle);
}

.wf-leistung-zigzag__row--reverse .wf-leistung-zigzag__media {
  order: 2;
}

.wf-leistung-zigzag__row--reverse .wf-leistung-zigzag__content {
  order: 1;
}

.wf-leistung-zigzag__media .wf-placeholder-image {
  min-height: 280px;
}

.wf-leistung-zigzag__content h2 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-leistung-zigzag__content p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
  line-height: 1.6;
}

.wf-leistung-zigzag__content p:last-child {
  margin-bottom: 0;
}

.wf-leistung-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--wf-space-sm);
  margin-top: var(--wf-space-md);
}

.wf-leistung-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
}

.wf-leistung-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wf-text);
}

.wf-leistung-hero {
  text-align: center;
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg-subtle);
  border-bottom: 2px solid var(--wf-border);
}

.wf-leistung-hero .wf-leistung__title {
  margin-bottom: var(--wf-space-sm);
}

.wf-leistung-section {
  padding: var(--wf-space-2xl) 0;
}

.wf-leistung-section--alt {
  background: var(--wf-bg-subtle);
}

.wf-leistung-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--wf-container-padding);
}

.wf-leistung-section__inner--wide {
  max-width: var(--wf-max-width);
}

.wf-leistung-section__split {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--wf-space-2xl);
  align-items: start;
  max-width: var(--wf-max-width);
  margin: 0 auto;
  padding: 0 var(--wf-container-padding);
}

.wf-leistung-section h2:not(.wf-leistung-section__label) {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
}

.wf-leistung-section p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
  line-height: 1.6;
}

.wf-leistung-section p:last-child {
  margin-bottom: 0;
}

.wf-leistung-section__content p {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
  line-height: 1.6;
}

.wf-leistung-section__content p:last-child {
  margin-bottom: 0;
}

.wf-leistung-section__label {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.04em;
}

.wf-leistung-section__divider {
  border: none;
  border-top: 2px solid var(--wf-border);
  margin: var(--wf-space-xl) 0;
}

.wf-leistung-page-hero {
  display: flex;
  align-items: center;
  gap: var(--wf-space-xl);
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  background: var(--wf-bg-subtle);
  border-bottom: 2px solid var(--wf-border);
}

.wf-leistung-page-hero__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 2px dashed var(--wf-border-strong);
  background: var(--wf-bg);
}

.wf-leistung-page-hero__content .wf-leistung__title {
  text-align: left;
  margin-bottom: var(--wf-space-sm);
}

.wf-leistung-page-hero__content .wf-leistung__intro {
  margin: 0;
  text-align: left;
  max-width: none;
}

.wf-leistung-page-hero--compact {
  padding: var(--wf-space-lg) var(--wf-container-padding);
}

.wf-leistung-block + .wf-leistung-block {
  border-top: 2px solid var(--wf-border);
}

.wf-leistung-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--wf-max-width);
  margin: 0 auto;
}

.wf-leistung-split__media .wf-placeholder-image {
  min-height: 320px;
  height: 100%;
}

.wf-leistung-split__text {
  padding: var(--wf-space-2xl);
  background: var(--wf-accent);
  color: var(--wf-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wf-leistung-split__text h2 {
  font-size: var(--wf-font-size-lg);
  font-weight: 700;
  margin-bottom: var(--wf-space-md);
  color: var(--wf-bg);
}

.wf-leistung-split__text p {
  font-size: var(--wf-font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--wf-space-md);
  line-height: 1.6;
}

.wf-leistung-split__text p:last-child {
  margin-bottom: 0;
}

.wf-leistung-detail {
  padding: var(--wf-space-2xl) var(--wf-container-padding);
  max-width: 800px;
  margin: 0 auto;
}

.wf-leistung-detail__intro {
  font-size: var(--wf-font-size-sm);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-lg);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .wf-leistung-zigzag__row,
  .wf-leistung-split {
    grid-template-columns: 1fr;
  }

  .wf-leistung-zigzag__row--reverse .wf-leistung-zigzag__media,
  .wf-leistung-zigzag__row--reverse .wf-leistung-zigzag__content {
    order: unset;
  }

  .wf-leistung-section__split {
    grid-template-columns: 1fr;
  }

  .wf-leistung-page-hero {
    flex-direction: column;
    text-align: center;
  }

  .wf-leistung-page-hero__content .wf-leistung__title,
  .wf-leistung-page-hero__content .wf-leistung__intro {
    text-align: center;
  }
}

/* ── Unified module typography (überschreibt Modul-Abweichungen) ── */

.wf-hero__headline,
.wf-leistung__title,
.wf-about__title,
.wf-contact__title,
.wf-ref-page__title,
.wf-jobs__title,
.wf-jobs-detail__title,
.wf-contact-detail__title,
.wf-form__title {
  font-size: var(--wf-h1-size);
  font-weight: var(--wf-heading-weight);
  line-height: var(--wf-heading-line-height);
}

.wf-teaser__title,
.wf-reviews__title,
.wf-cta-banner__headline,
.wf-faq__title,
.wf-banner-usp__title,
.wf-partner-banner__title,
.wf-ba__title,
.wf-popup__title,
.wf-jobs-apply__title,
.wf-about__band-title {
  font-size: var(--wf-h2-size);
  font-weight: var(--wf-heading-weight);
  line-height: var(--wf-heading-line-height);
}

.wf-teaser__title--sm {
  font-size: var(--wf-h3-size);
  font-weight: var(--wf-heading-weight);
  line-height: var(--wf-heading-line-height);
}

.wf-teaser-card__title,
.wf-teaser-item__title,
.wf-teaser-row__title,
.wf-teaser-scroll-section__title,
.wf-leistung-zigzag__content h2,
.wf-leistung-section h2:not(.wf-leistung-section__label),
.wf-leistung-split__text h2,
.wf-leistung--d__band-title,
.wf-leistung--d__panel-title,
.wf-ref-project__title,
.wf-about__section-title,
.wf-about-timeline-item__title,
.wf-teaser-usp__title,
.wf-teaser-carousel-card__title,
.wf-teaser-stack-card__title,
.wf-teaser-accordion__title,
.wf-teaser-feature-card__title,
.wf-teaser-hover-card__title,
.wf-ba-compare__title,
.wf-review-card__name,
.wf-footer__heading {
  font-size: var(--wf-h3-size);
  font-weight: var(--wf-heading-weight);
  line-height: var(--wf-heading-line-height);
}

.wf-hero__text,
.wf-teaser__intro,
.wf-teaser__text-block p,
.wf-leistung__intro,
.wf-ref-page__intro,
.wf-contact__intro,
.wf-about__intro,
.wf-reviews__intro,
.wf-cta-banner__text,
.wf-faq__intro,
.wf-about__overlap-text p,
.wf-leistung-zigzag__content p,
.wf-contact-info__value,
.wf-jobs-detail__intro {
  font-size: var(--wf-body-size);
  line-height: var(--wf-body-line-height);
}

.wf-teaser-card__text,
.wf-review-card__text,
.wf-review-card__date,
.wf-leistung-list li,
.wf-form__label,
.wf-form__hint,
.wf-footer__text,
.wf-footer__link {
  font-size: var(--wf-body-size-sm);
  line-height: var(--wf-body-line-height);
}

/* ── Scroll reveal ─────────────────────────────────────────── */

.scroll-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Lightbox (Referenzen & Galerien) ──────────────────────── */

.wf-lightbox,
.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.86);
}

.wf-lightbox.is-open,
.site-lightbox.is-open {
  display: flex;
}

.wf-lightbox[hidden]:not(.is-open),
.site-lightbox[hidden]:not(.is-open) {
  display: none;
}

.wf-lightbox__image,
.site-lightbox__image {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border: 2px solid var(--wf-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.wf-lightbox__close,
.site-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 2px solid var(--wf-border);
  border-radius: 999px;
  background: var(--wf-bg);
  color: var(--wf-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

.wf-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.wf-gallery-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Formulare: klickbare Flächen ──────────────────────────── */

.wf-form__checkbox,
.wf-form__radio {
  cursor: pointer;
}

.wf-form__select-trigger {
  cursor: pointer;
}

.wf-form__select-option {
  cursor: pointer;
}



/* ── Content casing: normal case ── */
.wf-hero__badge,
.wf-hero__kicker,
.wf-teaser__kicker,
.wf-teaser__label,
.wf-contact__kicker,
.wf-reviews__kicker,
.wf-faq__kicker,
.wf-cta-banner__kicker,
.wf-banner-usp__kicker,
.wf-partner-banner__kicker,
.wf-jobs__kicker,
.wf-about__kicker,
.wf-ref-page__kicker,
.wf-leistung__kicker,
.wf-leistung-section__label,
.wf-footer__company,
.wf-teaser-item__title,
.wf-teaser-card__eyebrow,
.wf-steps__label,
.wf-banner-usp__item-label {
  text-transform: none;
}
