﻿/* ================= INDEX.HTML ================= */
@font-face {
  font-family: "Readex Pro";
  src: url("../font/ReadexPro-VariableFont_HEXP,wght.ttf") format("truetype"),
       url("../font/ReadexPro-VariableFont_HEXP,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../font/Manrope-VariableFont_wght.ttf") format("truetype"),
       url("../font/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #08172e;
  --navy-900: #0e2746;
  --navy-700: #254a73;
  --gold-500: #e29c2f;
  --gold-600: #c98017;
  --gold-hover-fill: #DA9328;
  --paper-50: #f5f2ee;
  --paper-100: #ece7e1;
  --ink-900: #10233f;
  --ink-700: #2f4664;
  --white: #ffffff;
  --shadow-soft: 0 18px 35px rgba(8, 23, 46, 0.15);
  --radius-md: 12px;
  --radius-lg: 18px;
  --header-offset: 96px;
  --layout-width: min(1120px, 92vw);
  --layout-width-wide: min(1260px, 94vw);
  --section-space: clamp(1.4rem, 2.6vw, 1.9rem);
  --surface-pad-lg: clamp(1.9rem, 4vw, 2.8rem);
  --surface-pad-md: clamp(1.35rem, 2.8vw, 1.7rem);
  --surface-pad-sm: clamp(1.05rem, 2.2vw, 1.25rem);
  --surface-radius-lg: 34px;
  --surface-radius-md: 28px;
}

* {
  box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 margin:0;
 font-family: "Manrope", sans-serif;
 color: var(--ink-900);
 overflow-x: hidden;
 background:
 radial-gradient(circle at16% -20%, rgba(37,74,115,0.18), transparent55%),
 radial-gradient(circle at88%10%, rgba(226,156,47,0.18), transparent48%),
 var(--paper-50);
 line-height:1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(0deg, rgba(16, 35, 63, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 63, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.4rem;
  font-family: "Readex Pro", sans-serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

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

body.consent-dialog-open {
  overflow: hidden;
}

.consent-manager {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.consent-manager[hidden] {
  display: none;
}

.consent-manager-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 46, 0.68);
  backdrop-filter: blur(5px);
}

.consent-dialog {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100vw - 1.5rem));
  max-height: min(86vh, 820px);
  overflow-y: auto;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 80px rgba(8, 23, 46, 0.28);
}

.consent-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.consent-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(37, 74, 115, 0.12);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.consent-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(16, 35, 63, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-900);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.consent-close span {
  font-size: 1.5rem;
  line-height: 1;
}

.consent-close:hover,
.consent-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 128, 23, 0.38);
  color: var(--gold-600);
}

.consent-dialog h2 {
  margin: 0.85rem 0 0.45rem;
  color: var(--ink-900);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.consent-copy {
  max-width: 60ch;
  color: rgba(47, 70, 100, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.consent-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.consent-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 242, 238, 0.96), rgba(255, 255, 255, 0.98));
}

.consent-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.consent-card h3 {
  margin-bottom: 0.2rem;
  color: var(--ink-900);
  font-size: 1.05rem;
}

.consent-card p {
  color: rgba(47, 70, 100, 0.82);
  font-size: 0.96rem;
  line-height: 1.5;
}

.consent-switch {
  position: relative;
  flex: none;
  display: inline-flex;
  width: 3.5rem;
  height: 2rem;
  cursor: pointer;
}

.consent-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.consent-switch-ui {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.2);
  transition: background 0.22s ease;
}

.consent-switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(16, 35, 63, 0.2);
  transition: transform 0.22s ease;
}

.consent-switch input:checked + .consent-switch-ui {
  background: var(--gold-500);
}

.consent-switch input:checked + .consent-switch-ui::after {
  transform: translateX(1.5rem);
}

.consent-switch-locked .consent-switch-ui {
  background: rgba(37, 74, 115, 0.36);
}

.consent-switch-locked .consent-switch-ui::after {
  transform: translateX(1.5rem);
}

.consent-note {
  margin-top: 1rem;
  color: rgba(47, 70, 100, 0.8);
  font-size: 0.92rem;
  line-height: 1.5;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.consent-actions .btn {
  justify-content: center;
  width: 100%;
  min-height: 3.5rem;
}

.consent-btn-neutral {
  background: var(--navy-900);
  color: #ffffff;
  border: 1px solid transparent;
}

.consent-btn-neutral:hover,
.consent-btn-neutral:focus-visible {
  background: var(--navy-700);
}

.consent-btn-outline {
  background: transparent;
}

.consent-footer-trigger {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.consent-footer-trigger:hover,
.consent-footer-trigger:focus-visible {
  color: var(--gold-500);
}

.consent-reopen {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: linear-gradient(145deg, #eda22a, #d6840c);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(201, 128, 23, 0.34);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.consent-reopen svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consent-reopen:hover,
.consent-reopen:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 22px 40px rgba(201, 128, 23, 0.4);
}

@media (max-width: 720px) {
  .consent-manager {
    padding: 1.35rem;
  }

  .consent-dialog {
    width: min(25.5rem, calc(100vw - 2.7rem));
    max-height: calc(100vh - 2.7rem);
    padding: 0.95rem;
    border-radius: 22px;
  }

  .consent-dialog-head {
    align-items: flex-start;
  }

  .consent-close {
    width: 2.55rem;
    height: 2.55rem;
  }

  .consent-dialog h2 {
    margin: 0.72rem 0 0.4rem;
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .consent-copy {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .consent-card {
    padding: 0.95rem 1rem;
    border-radius: 18px;
  }

  .consent-card h3 {
    font-size: 1rem;
  }

  .consent-card p,
  .consent-note {
    font-size: 0.91rem;
    line-height: 1.46;
  }

  .consent-card-head {
    flex-direction: column;
  }

  .consent-actions {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .consent-actions .btn {
    min-height: 3.15rem;
  }

  .consent-footer-trigger {
    display: block;
    margin-top: 0.4rem;
    margin-left: 0;
  }

  .consent-reopen {
    left: 0.9rem;
    bottom: 0.9rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

.content-link,
.protected-email {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.content-link:hover,
.content-link:focus-visible,
.protected-email:hover,
.protected-email:focus-visible {
  color: var(--gold-600);
}

/* Keep SEO text links readable inside dark CTA and reference surfaces. */
.final-cta-shell .content-link,
.page-ablauf .ablauf-final-cta .content-link,
.page-referenzen .reference-project-card-accent .content-link,
.page-referenzen .references-final-cta .content-link {
  color: rgba(255, 255, 255, 0.96);
}

.final-cta-shell .content-link:hover,
.final-cta-shell .content-link:focus-visible,
.page-ablauf .ablauf-final-cta .content-link:hover,
.page-ablauf .ablauf-final-cta .content-link:focus-visible,
.page-referenzen .reference-project-card-accent .content-link:hover,
.page-referenzen .reference-project-card-accent .content-link:focus-visible,
.page-referenzen .references-final-cta .content-link:hover,
.page-referenzen .references-final-cta .content-link:focus-visible {
  color: #ffd37f;
}

.seo-link-copy {
  margin-top: 0.9rem;
  color: var(--ink-700);
}

.seo-link-copy .content-link {
  color: rgba(60, 65, 79, 0.72);
  font-weight: 600;
}

.seo-link-copy .content-link:hover,
.seo-link-copy .content-link:focus-visible {
  color: rgba(32, 36, 45, 0.88);
}

.final-cta-shell .seo-link-copy .content-link,
.page-ablauf .ablauf-final-cta .seo-link-copy .content-link,
.page-referenzen .references-final-cta .seo-link-copy .content-link {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-shell .seo-link-copy .content-link:hover,
.final-cta-shell .seo-link-copy .content-link:focus-visible,
.page-ablauf .ablauf-final-cta .seo-link-copy .content-link:hover,
.page-ablauf .ablauf-final-cta .seo-link-copy .content-link:focus-visible,
.page-referenzen .references-final-cta .seo-link-copy .content-link:hover,
.page-referenzen .references-final-cta .seo-link-copy .content-link:focus-visible {
  color: rgba(255, 255, 255, 0.9);
}

.container {
  width: var(--layout-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.page-index .services,
.page-index .workflow,
.page-index .final-cta,
.page-index .reviews,
.page-index .references,
.page-index .contact,
.page-index .faq,
.page-index .footer {
  content-visibility: auto;
}

.page-index .clients,
.page-index .partner-section,
.page-index .stats-band {
  content-visibility: auto;
}

.page-index .clients {
  contain-intrinsic-size: 220px;
}

.page-index .partner-section {
  contain-intrinsic-size: 640px;
}

.page-index .stats-band {
  contain-intrinsic-size: 240px;
}

.page-index .services,
.page-index .workflow,
.page-index .reviews,
.page-index .references,
.page-index .contact,
.page-index .faq {
  contain-intrinsic-size: 900px;
}

.page-index .final-cta,
.page-index .footer {
  contain-intrinsic-size: 360px;
}

.page-stickerei .stickerei-visual-section,
.page-stickerei .stickerei-detail-section,
.page-stickerei .stickerei-steps-section,
.page-stickerei .stickerei-customer-section,
.page-stickerei .reviews,
.page-stickerei .faq,
.page-stickerei .footer,
.page-kontakt .contact-map-section,
.page-kontakt .faq,
.page-kontakt .footer,
.page-ablauf .faq,
.page-ablauf .ablauf-final-cta-section,
.page-ablauf .footer {
  content-visibility: auto;
}

.page-stickerei .stickerei-visual-section,
.page-stickerei .stickerei-detail-section,
.page-stickerei .stickerei-steps-section,
.page-stickerei .stickerei-customer-section,
.page-stickerei .reviews,
.page-stickerei .faq,
.page-kontakt .contact-map-section,
.page-kontakt .faq,
.page-ablauf .faq,
.page-ablauf .ablauf-final-cta-section {
  contain-intrinsic-size: 900px;
}

.page-stickerei .footer,
.page-kontakt .footer,
.page-ablauf .footer {
  contain-intrinsic-size: 360px;
}

.section-title {
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  text-align: center;
  color: var(--ink-900);
}

.section-title-light {
  color: var(--white);
}

.section-title-accent {
  color: var(--gold-500);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.topbar-inner {
 min-height:96px;
 display: grid;
 grid-template-columns: auto minmax(0,1fr) auto;
 align-items: center;
 column-gap: clamp(1.2rem,2vw,2.4rem);
 padding:0.5rem0;
 transition: min-height0.25s ease, column-gap0.25s ease, padding0.25s ease;
}

.topbar-inner.container,
.page-inner .topbar-inner.container {
  width: var(--layout-width-wide);
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 14px rgba(8, 23, 46, 0.08);
}

main {
  margin-top: calc(var(--header-offset) * -1);
}

.topbar.is-scrolled .topbar-inner {
 min-height:84px;
 column-gap: clamp(1rem,1.7vw,2rem);
}


.topbar .brand {
 height:72px;
 max-width:100%;
 overflow: hidden;
 align-self: center;
 justify-self: start;
}


.topbar .brand img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
}

.topbar.is-scrolled .brand {
  height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Readex Pro", sans-serif;
  font-size: 2rem;
  color: #0f2642;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(160deg, #1576ca, #113d70);
  color: var(--white);
  font-family: "Readex Pro", sans-serif;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}

.brand-text {
  line-height: 0.9;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  background: var(--navy-900);
  box-shadow: 0 10px 18px rgba(8, 23, 46, 0.16);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--gold-600);
  background: var(--gold-600);
  box-shadow: 0 12px 20px rgba(8, 23, 46, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.menu-toggle-line {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.menu-toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.header-panel {
  display: contents;
}

.menu {
  display: inline-flex;
  gap: clamp(0.95rem, 1.45vw, 1.7rem);
  align-items: center;
  justify-self: center;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.menu a,
.menu-dropdown-toggle {
  color: var(--ink-900);
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.menu-dropdown-toggle span {
  position: relative;
}

.menu-dropdown-toggle::before {
  content: "";
  position: absolute;
  inset: -0.8rem -0.9rem;
}

.menu-dropdown-toggle::after {
  display: none;
  content: none;
}

.menu-dropdown-expand {
  display: none;
}

.menu a::after,
.menu-dropdown-toggle span::after {
  display: none;
}

.menu-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 190px;
  padding: 0.55rem;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 35px rgba(8, 23, 46, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.menu-dropdown-panel a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
}

.menu-dropdown-panel a::after {
  display: none;
}

.menu-dropdown-panel a:hover,
.menu-dropdown-panel a:focus-visible {
  background: rgba(226, 156, 47, 0.1);
}

.menu-dropdown:hover .menu-dropdown-panel,
.menu-dropdown:focus-within .menu-dropdown-panel,
.menu-dropdown.is-open .menu-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu a:hover,
.menu a:focus-visible,
.menu-dropdown-toggle:hover,
.menu-dropdown-toggle:focus-visible {
  color: var(--gold-600);
  outline: none;
}

.menu a.is-active,
.menu-dropdown-toggle.is-active {
  color: var(--gold-600);
  font-weight: 800;
}

.topbar .btn-nav {
  justify-self: end;
  white-space: nowrap;
  padding-inline: 1.35rem;
  background: #c98017;
  color: #ffffff;
  border-color: transparent;
}

.topbar .btn-nav:hover,
.topbar .btn-nav:focus-visible {
  background: #da9328;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  transition:
    background-color 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: none;
  box-shadow: 0 10px 16px -7px rgba(255, 255, 255, 0.16), 0 3px 6px -3px rgba(8, 23, 46, 0.16);
}

.btn-accent {
  background: #c98017;
  color: var(--white);
}

.btn-accent:hover {
  background: #da9328;
  box-shadow: 0 14px 20px rgba(201, 128, 23, 0.3);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline-whatsapp {
  gap: 0.55rem;
}

.btn-icon-whatsapp {
  filter: brightness(0) invert(1);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-small {
  padding: 0.65rem 1.1rem;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
}

.hero-media,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background: #10233f;
}

.hero-media > picture,
.hero-media > img,
.hero-media > video {
  position: absolute;
  inset: 0;
}

.hero-media > picture {
  display: block;
}

.hero-media picture img,
.hero-media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-index .hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-index .hero-media.is-video-ready .hero-video {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .page-index .hero-video {
    transition: none;
  }
}

.hero-layer {
  background:
    linear-gradient(90deg, rgba(8, 23, 46, 0.88) 0%, rgba(8, 23, 46, 0.7) 40%, rgba(8, 23, 46, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 23, 46, 0.42), rgba(8, 23, 46, 0.42));
}

.hero-content {
  z-index: 1;
  width: var(--layout-width-wide);
  min-height: 620px;
  padding: calc(4.2rem + var(--header-offset)) 0 2rem;
  color: var(--white);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "main"
    "scroll"
    "benefits";
  align-content: center;
  justify-content: start;
}

.hero-main {
  grid-area: main;
  align-self: center;
  justify-self: start;
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5.3vw, 4.1rem);
  line-height: 1.07;
  text-wrap: balance;
}

.hero-copy {
  margin-top: 1rem;
  max-width: 740px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-benefits {
  grid-area: benefits;
  margin: 1.15rem 0 0;
  padding: 1.35rem 0 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  width: 100%;
  gap: 0.8rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.hero-benefits li {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-benefits li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-benefits li span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.hero-benefits li span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.hero-benefits li:hover span::after,
.hero-benefits li:focus-within span::after {
  transform: scaleX(1);
}

.hero-scroll-indicator {
  grid-area: scroll;
  margin: clamp(2.2rem, 4vw, 3rem) auto 0;
  width: 54px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  align-self: center;
}

.hero-scroll-indicator span {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  transform: rotate(45deg);
  transition: transform 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
  opacity: 0.9;
}

.hero-scroll-indicator:hover span,
.hero-scroll-indicator:focus-visible span {
  transform: translateY(4px) rotate(45deg);
  border-color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.stats-band {
  padding: 1.6rem 0 1.2rem;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 2rem 0;
}

.stat-card {
  text-align: center;
}

.stat-value {
  margin: 0;
  font-family: "Readex Pro", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1;
  color: #ec9208;
}

.stat-label {
  margin: 0.7rem 0 0;
  color: var(--ink-700);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.partner-section {
  padding: 2.6rem 0 3.2rem;
}

.partner-shell {
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 42px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.partner-intro {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.partner-kicker {
  color: rgba(47, 70, 100, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.partner-title {
  margin-top: 0.65rem;
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  line-height: 1.06;
  color: #10233f;
}

.partner-title span {
  color: var(--gold-500);
}

.partner-cta {
  flex-shrink: 0;
  margin-top: 0.45rem;
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(201, 128, 23, 0.55);
}

.partner-cta:hover,
.partner-cta:focus-visible {
  background: rgba(201, 128, 23, 0.08);
}

.partner-slider {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.partner-viewport {
  overflow: hidden;
}

.partner-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.5rem) / 3);
  gap: 1.25rem;
  transition: transform 0.38s ease;
  will-change: transform;
}

.partner-arrow {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(60, 65, 79, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.partner-arrow span {
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-2px);
}

.partner-arrow:hover,
.partner-arrow:focus-visible {
  color: rgba(16, 35, 63, 0.72);
  transform: translateY(-1px);
  outline: none;
}

.partner-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
}

.partner-card {
  position: relative;
  min-height: 198px;
  padding: 1.3rem 1.42rem 0.88rem;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #e4e6f0 0%, #dee2ed 100%);
  box-shadow: none;
}

.partner-card::before {
  content: none;
  position: absolute;
  top: 1.08rem;
  left: 1.02rem;
  width: 84px;
  height: 32px;
  border-top: 3px solid rgba(255, 255, 255, 0.76);
  border-left: 3px solid rgba(255, 255, 255, 0.76);
  pointer-events: none;
}

.partner-card::after {
  content: none;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 34px;
  height: 22px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.partner-card-top {
  min-height: 0;
  margin: 0;
}

.partner-icon {
  position: absolute;
  top: 1rem;
  right: 1.08rem;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #99a1c5;
  box-shadow: none;
}

.partner-icon-image {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
  opacity: 0.98;
}

.partner-number {
  display: none;
}

.partner-card h3 {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-right: 5rem;
  min-height: 2.68em;
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.34;
  color: #353a47;
}

.partner-card p {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-right: 0.4rem;
  margin: 0;
  color: rgba(102, 107, 120, 0.95);
  font-size: 0.99rem;
  line-height: 1.38;
}

.clients {
  background: var(--white);
}

.clients-row {
  padding: 2.5rem 0 2.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.clients-title {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(60, 65, 79, 0.86);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.clients-marquee {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clients-marquee 27s linear infinite;
  will-change: transform;
}

.clients-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 2rem;
  padding-right: 2rem;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 1;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.client-logo-item {
  width: 138px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.client-logo {
  width: 92%;
  height: 92%;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.9;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.2rem;
}

.services {
  padding-top: 2.2rem;
}

.services-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 40px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: #eeeef0;
  box-shadow:
    0 20px 45px rgba(17, 34, 61, 0.07),
    0 3px 10px rgba(8, 23, 46, 0.04);
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 1.2rem 2rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.services-kicker {
  margin-bottom: 0.8rem;
  color: rgba(60, 65, 79, 0.72);
  font-weight: 700;
}

.services-title {
  font-size: clamp(1.55rem, 3.1vw, 2.45rem);
  line-height: 1.04;
  color: #23262f;
}

.services-title span {
  color: var(--gold-500);
}

.services-title > .services-title-line {
  color: #23262f;
}

.services-title > .services-title-line > span {
  color: var(--gold-500);
}

.services-title-line {
  display: block;
}

.services-title-line:first-child {
  white-space: nowrap;
}

.services-title-line + .services-title-line {
  margin-top: 0.04rem;
}

.services-intro {
  margin: 12px 0 0;
  padding-top: 0;
  max-width: 420px;
  align-self: center;
  justify-self: end;
  text-align: right;
  color: rgba(60, 65, 79, 0.86);
  font-size: 1.03rem;
  line-height: 1.45;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.8rem;
}

.service-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.65rem 1.65rem 1.7rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(18, 34, 66, 0.08);
}

.service-image-wrap {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1.72 / 1;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, #eef1f7, #dde4ef);
}

.service-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-image-wrap picture,
.page-stickerei .stickerei-detail-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-panel-body {
  display: grid;
  gap: 0.7rem;
  padding: 0 4.25rem 0 0;
}

.service-panel-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.service-panel-top h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  line-height: 1.05;
  color: #23262f;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  white-space: nowrap;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: #eef2f7;
  color: #647086;
  font-size: 0.74rem;
  font-weight: 700;
}

.page-index .service-panel-body {
  padding-right: 0;
}

.page-index .service-panel-top {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  min-height: 0;
  padding-right: 0;
  margin-right: 0;
}

.page-index .service-panel-top h3 {
  margin: 0;
}

.page-index .service-badge {
  position: static;
  justify-self: start;
  align-self: start;
  width: fit-content;
  max-width: 100%;
  margin-right: 0;
  transform: none;
}

.page-index .service-panel-body p,
.page-index .service-panel-body .service-list {
  padding-right: 4.25rem;
}

.service-panel-body p {
  margin: 0;
  color: rgba(60, 65, 79, 0.82);
  font-size: 0.88rem;
  line-height: 1.35;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.service-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(60, 65, 79, 0.84);
  font-size: 0.88rem;
  line-height: 1.35;
}

.service-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-500);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-link {
  position: absolute;
  right: 1.55rem;
  bottom: 1.45rem;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(230, 158, 28, 0.85);
  color: rgba(230, 158, 28, 0.95);
  font-size: 1.35rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  background: var(--gold-500);
  color: var(--white);
}

.service-link img {
  width: 18px;
  height: 18px;
  display: block;
  transform: translate(1px, -1px) rotate(135deg);
  transform-origin: center;
  filter: brightness(0) saturate(100%) invert(58%) sepia(80%) saturate(1012%) hue-rotate(358deg) brightness(97%) contrast(92%);
}

.service-link:hover img,
.service-link:focus-visible img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.workflow {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

.workflow-shell {
  display: grid;
  gap: clamp(1.15rem, 2.6vw, 1.8rem);
}

.workflow .section-title {
  width: 100%;
  margin: 0;
  max-width: none;
  justify-self: stretch;
  text-align: center;
  line-height: 1.04;
  text-wrap: balance;
}

.workflow-overview {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(0.72rem, 1.6vw, 1.05rem);
}

.workflow-sequence {
  width: min(100%, 980px);
  margin: 0;
}

.workflow-sequence-image {
  width: 100%;
  height: auto;
  display: block;
}

.workflow-rail {
  width: min(100%, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1.1vw, 0.95rem);
}

.workflow-node {
  position: relative;
  margin: 0;
  width: clamp(94px, 13vw, 138px);
  flex: 0 1 clamp(94px, 13vw, 138px);
}

.workflow-node-badge {
  position: absolute;
  top: -0.18rem;
  left: 0.15rem;
  z-index: 2;
  width: clamp(28px, 3.2vw, 36px);
  height: clamp(28px, 3.2vw, 36px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4a52b 0%, #df8510 100%);
  color: #ffffff;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(223, 133, 16, 0.28);
}

.workflow-node-frame {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  display: grid;
  place-items: center;
  padding: clamp(0.65rem, 1.5vw, 1rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.98), rgba(250, 250, 248, 0.92) 56%, rgba(241, 238, 232, 0.8) 100%);
  box-shadow:
    0 16px 34px rgba(17, 34, 61, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.workflow-node-visual {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(17, 34, 61, 0.16));
}

.workflow-connector {
  position: relative;
  flex: 0 0 clamp(18px, 3.1vw, 34px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 49, 98, 0.22), rgba(17, 49, 98, 0.55));
}

.workflow-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(17, 49, 98, 0.72);
  border-right: 2px solid rgba(17, 49, 98, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.workflow-summary {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem clamp(0.45rem, 1vw, 0.8rem);
  align-items: start;
  justify-items: center;
  text-align: center;
  transform: translateX(-15px);
}

.workflow-summary li {
  margin: 0;
  font-size: clamp(0.82rem, 0.96vw, 0.98rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: var(--ink-900);
  white-space: nowrap;
  text-wrap: initial;
}

.page-index .workflow-summary li:nth-child(1),
.page-index .workflow-summary li:nth-child(3) {
  transform: translateX(-5px);
}

.page-index .workflow-summary li:nth-child(2) {
  transform: translateX(-13px);
}

.page-index .workflow-summary li:nth-child(4) {
  transform: translateX(3px);
}

.workflow-cards {
  display: none;
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(84px, 108px) minmax(0, 1fr);
  gap: 1rem 1.1rem;
  align-items: center;
  padding: 1.2rem 1.1rem 1.15rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% -12%, rgba(247, 220, 170, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 245, 0.96) 100%);
  box-shadow:
    0 14px 28px rgba(17, 34, 61, 0.1),
    0 4px 10px rgba(17, 34, 61, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.workflow-step:not(:last-child) {
  margin-bottom: 2.6rem;
}

.workflow-step:not(:last-child)::after {
  content: "\2193";
  position: absolute;
  left: 50%;
  bottom: -2.25rem;
  transform: translateX(-50%);
  color: rgba(17, 49, 98, 0.88);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 400;
}

.workflow-step-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.8rem;
  z-index: 2;
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4a52b 0%, #df8510 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(223, 133, 16, 0.22);
}

.workflow-step-media {
  min-width: 0;
  padding-left: 0.15rem;
}

.workflow-step-media img {
  width: 100%;
  max-width: 108px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(17, 34, 61, 0.16));
}

.workflow-step-copy {
  min-width: 0;
}

.workflow-step-copy h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 3.6vw, 1.72rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ink-900);
}

.workflow-step-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.38;
  color: rgba(17, 34, 61, 0.86);
}

@media (max-width: 900px) {
  .workflow-rail {
    gap: 0.5rem;
  }

  .workflow-node {
    width: clamp(86px, 18vw, 122px);
    flex-basis: clamp(86px, 18vw, 122px);
  }

  .workflow-summary li {
    font-size: clamp(1rem, 2.5vw, 1.28rem);
  }
}

@media (max-width: 720px) {
  .page-index .workflow-shell {
    gap: 0.82rem;
  }

  .page-index .workflow .section-title {
    font-size: clamp(1.72rem, 7.6vw, 2.08rem);
  }

  .workflow-overview {
    display: none;
  }

  .workflow-cards {
    display: block;
  }
}

@media (max-width: 560px) {
  .workflow-shell {
    gap: 0.74rem;
  }

  .page-index .workflow .section-title {
    font-size: clamp(1.64rem, 7.1vw, 1.92rem);
  }

  .workflow-step {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.9rem 0.95rem;
    padding: 1rem 0.95rem 1rem;
    border-radius: 22px;
  }

  .workflow-step:not(:last-child) {
    margin-bottom: 2.36rem;
  }

  .workflow-step:not(:last-child)::after {
    bottom: -2.13rem;
  }

  .workflow-step-badge {
    top: 0.75rem;
    left: 0.72rem;
    width: 29px;
    height: 29px;
    font-size: 1rem;
  }

  .workflow-step-media img {
    max-width: 92px;
  }

  .workflow-step-copy h3 {
    margin-bottom: 0.32rem;
    font-size: 1rem;
  }

  .workflow-step-copy p {
    font-size: 0.86rem;
    line-height: 1.33;
  }
}

.reviews {
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
}

.reviews-shell {
  padding: clamp(2rem, 4vw, 3rem);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem 2rem;
  align-items: flex-start;
}

.reviews-kicker {
  color: rgba(60, 65, 79, 0.72);
  font-weight: 700;
}

.reviews-title {
  margin-top: 0.55rem;
  max-width: 520px;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.02;
  color: #20242d;
}

.reviews-title span {
  color: var(--gold-500);
}

.reviews-score {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.78rem;
  width: fit-content;
  max-width: 100%;
  justify-self: end;
}

.reviews-score-right {
  display: grid;
  grid-template-columns: max-content;
  justify-items: start;
  align-content: start;
  row-gap: 0;
  min-width: 0;
}

.reviews-score-top {
  display: inline-grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  column-gap: 0.84rem;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}

.reviews-google-icon {
  width: 44px;
  height: 44px;
  margin-top: 0;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  transform: translateY(-0.14rem);
}

.reviews-score-value {
  font-weight: 700;
  color: #4d5462;
  font-size: 0.98rem;
  line-height: 1;
}

.reviews-stars {
  width: 86px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(58%) sepia(80%) saturate(1012%) hue-rotate(358deg) brightness(97%) contrast(92%);
}

.reviews-score-subline {
  display: block;
  margin: 0.38rem 0 0;
  color: rgba(60, 65, 79, 0.72);
  font-size: 0.94rem;
  line-height: 1.05;
  text-align: left;
  white-space: nowrap;
}

.reviews-slider {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.reviews-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 2.35rem;
  margin-top: -2.35rem;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.6rem) / 2);
  gap: 1.6rem;
  transition: transform 0.38s ease;
  will-change: transform;
}

.reviews-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: rgba(60, 65, 79, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.reviews-arrow span {
  font-size: 2.8rem;
  line-height: 1;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
  color: rgba(16, 35, 63, 0.72);
  transform: translateY(-1px);
  outline: none;
}

.reviews-arrow[disabled] {
  opacity: 0.4;
  cursor: default;
}

.review-card {
  position: relative;
  min-height: 300px;
  padding: calc(2.2rem + 28px) 2rem 1.7rem;
  border-radius: 34px;
  background: #f2f3f6;
  border: 1px solid rgba(17, 34, 61, 0.04);
  box-shadow: 0 14px 30px rgba(18, 34, 66, 0.05);
  z-index: 1;
}

.review-quote {
  position: absolute;
  top: -14px;
  right: 14px;
  width: 88px;
  height: auto;
  opacity: 0.2;
  z-index: 3;
  pointer-events: none;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #6f7581;
  font-weight: 600;
  margin-left: -0.38rem;
}

.review-stars {
  width: 106px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(58%) sepia(80%) saturate(1012%) hue-rotate(358deg) brightness(97%) contrast(92%);
}

.review-copy {
  margin-top: 1.45rem;
  max-width: 460px;
  color: #5f6471;
  font-size: 1rem;
  line-height: 1.42;
}

.review-author {
  margin-top: 0.6rem;
  color: rgba(60, 65, 79, 0.82);
  font-weight: 700;
}

.review-google-mark {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.reviews-footer {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1rem 2rem;
  align-items: end;
}

.reviews-footer p {
  max-width: 560px;
  color: rgba(60, 65, 79, 0.82);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 600;
}

.reviews-cta {
  flex-shrink: 0;
  justify-self: end;
  width: 360px;
  justify-content: center;
  white-space: nowrap;
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(201, 128, 23, 0.9);
}

.reviews-cta:hover,
.reviews-cta:focus-visible {
  background: rgba(201, 128, 23, 0.08);
}

@media (max-width: 720px) {
  .review-card {
    min-height: auto;
    padding: calc(1.35rem + 24px) 1.2rem 1.12rem;
    border-radius: 24px;
  }

  .review-quote {
    width: 48px;
    top: -8px;
    right: 14px;
  }

  .review-top {
    margin-top: -0.26rem;
    margin-bottom: -0.32rem;
  }

  .review-copy {
    margin-top: 0.72rem;
  }
}

.references {
  position: relative;
  color: var(--white);
  background: transparent;
  padding-top: 2rem;
  padding-bottom: 1.35rem;
}

.references-shell {
  position: relative;
  padding: clamp(1.9rem, 4vw, 2.8rem);
  border-radius: 34px;
  background: #243a5b;
  box-shadow: 0 20px 46px rgba(17, 34, 61, 0.08);
}

.references .section-title-light {
  text-align: center;
}

.ref-grid {
  margin-top: 1.7rem;
}

.ref-card {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-900);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ref-card:hover,
.ref-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(8, 23, 46, 0.18);
}

.ref-card:focus-visible {
  outline: 2px solid rgba(236, 146, 8, 0.45);
  outline-offset: 3px;
}

.ref-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 270px);
  object-fit: cover;
}

.ref-body {
  padding: 1.2rem 1.1rem 1.35rem;
}

.ref-body h3 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.ref-body p {
  margin-top: 0.25rem;
  font-size: 1.1rem;
  color: rgba(84, 88, 98, 0.94);
}

.ref-body strong {
  color: var(--gold-600);
}

.reference-project-card[id] {
  scroll-margin-top: 7rem;
}

.references-footer {
  margin-top: 1.55rem;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: end;
}

.references-footer p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.62;
}

.references-footer strong {
  color: #ffffff;
}

.references-footer-mobile-break {
  display: none;
}

.contact {
  background: linear-gradient(180deg, #f7f4f1, #f4f0eb);
}

.contact-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.benefits-grid-compact {
  margin-top: 1rem;
  grid-template-columns: 1fr;
}

.benefits-grid-compact li {
  font-size: 1.07rem;
}

.contact-actions {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.72rem;
}

.contact-line {
  margin-top: 0.25rem;
  font-size: 1.08rem;
  color: var(--ink-700);
  font-weight: 600;
}

.contact-line span {
  margin-right: 0.35rem;
}

.final-cta {
  background: transparent;
  padding-top: 3rem;
}

.final-cta-shell {
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #10233f;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 22px 55px rgba(16, 35, 63, 0.08);
}

.final-cta-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.final-cta-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 0.82;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  color: #ffffff;
}

.final-cta-title span {
  color: var(--gold-500);
}

.final-cta-shell > p {
  max-width: 650px;
  margin: 0.75rem auto 1.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.45;
}

.page-index .final-cta-shell > p:not(.seo-link-copy) {
  font-weight: 500;
}

.page-index .final-cta-shell > .seo-link-copy {
  margin-top: -0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.page-index .final-cta-note {
  width: min(var(--layout-width), calc(100% - 2rem));
  margin: 0.85rem auto 0;
  text-align: center;
  color: rgba(60, 65, 79, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.final-cta-actions {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.final-cta-whatsapp {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-whatsapp:hover,
.final-cta-whatsapp:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.final-cta-whatsapp .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}

.faq {
  background: linear-gradient(180deg, #f7f4f1, #f4f0eb);
  padding-top: 1.2rem;
}

.page-index .faq {
  background: transparent;
}

.faq-shell {
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  border-radius: 34px;
  background: #f5f5f7;
  border: 1px solid rgba(226, 231, 239, 0.95);
  box-shadow: 0 18px 44px rgba(17, 34, 61, 0.08);
}

.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
  gap: 1rem 2rem;
  align-items: start;
}

.faq-kicker {
  color: rgba(60, 65, 79, 0.72);
  font-weight: 700;
}

.hashtag-kicker span {
  display: inline-block;
  margin-right: 0.72rem;
  white-space: nowrap;
}

.hashtag-kicker span:last-child {
  margin-right: 0;
}

.faq-title {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  line-height: 1.04;
  color: #20242d;
}

.faq-title span {
  color: var(--gold-500);
}

.faq-intro {
  margin: 0;
  color: rgba(60, 65, 79, 0.78);
  font-size: 1rem;
  line-height: 1.45;
  text-align: right;
}

.page-index .faq-intro {
  font-size: 0.94rem;
}

.page-index .faq-intro-line {
  display: block;
  white-space: nowrap;
}

.faq-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 34, 61, 0.05);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.96);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: none;
  background: transparent;
  color: #4a4f5a;
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item.is-open .faq-question {
  background: var(--gold-500);
  color: #20242d;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 1.45rem;
  line-height: 1;
}

.faq-answer {
  padding: 1.1rem 1.35rem 1.25rem;
  color: rgba(60, 65, 79, 0.8);
}

.faq-answer p + p {
  margin-top: 0.7rem;
}

.about-hero .hero-content {
  min-height: 640px;
  color: #1e2430;
}

.about-hero-main {
  max-width: 900px;
}

.about-hero-main .hero-copy {
  max-width: 740px;
}

.about-hero-benefits,
.about-hero .hero-benefits,
.about-hero .hero-benefits ul,
.about-hero .hero-benefits li,
.about-hero .hero-benefits li span,
.about-hero .hero-benefits a {
  color: #23385f !important;
}

.about-hero .hero-layer {
  background:
    linear-gradient(90deg, rgba(34, 34, 36, 0.16) 0%, rgba(34, 34, 36, 0.06) 42%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(248, 245, 239, 0.12), rgba(248, 245, 239, 0.12));
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0) 0%, rgba(245, 242, 236, 0.5) 44%, rgba(245, 242, 236, 0.86) 100%);
  pointer-events: none;
  z-index: 0;
}

.about-hero .eyebrow {
  background: rgba(14, 39, 70, 0.08);
  color: #51627d;
}

.page-ueber-uns .about-hero .eyebrow {
  font-size: clamp(0.72rem, 1.45vw, 0.84rem);
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.about-hero h1 {
  color: #051430;
}

.about-hero-title-mobile,
.about-hero-copy-mobile-standalone,
.about-hero-mobile-visual {
  display: none;
}

.about-hero-title-mobile-line {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.index-hero-title-mobile,
.index-hero-copy-mobile-standalone,
.index-hero-mobile-visual {
  display: none;
}

.index-hero-title-mobile-line {
  display: block;
  width: auto;
  margin: 0;
  white-space: nowrap;
}

.about-hero .hero-copy {
  color: rgba(30, 36, 48, 0.82);
}

.about-hero .btn-outline {
  color: #23385f;
  border-color: rgba(35, 56, 95, 0.42);
  background: rgba(255, 255, 255, 0.55);
}

.about-hero .btn-outline:hover,
.about-hero .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.82);
}

.about-hero .btn-icon-whatsapp {
  filter: brightness(0) saturate(100%) invert(15%) sepia(33%) saturate(1334%) hue-rotate(180deg) brightness(92%) contrast(95%);
}

.about-hero .hero-benefits {
  border-top-color: rgba(35, 56, 95, 0.3);
}

.about-hero .hero-benefits li:not(:last-child)::after {
  background: rgba(35, 56, 95, 0.48);
}

.about-hero .hero-benefits li span::after {
  background: rgba(35, 56, 95, 0.72);
}

.about-hero .hero-scroll-indicator span {
  border-right-color: rgba(35, 56, 95, 0.72);
  border-bottom-color: rgba(35, 56, 95, 0.72);
}

.leistungen-hero {
  background: var(--white);
}

.leistungen-hero,
.leistungen-hero .hero-content {
  min-height: 640px;
}

.leistungen-hero .hero-content {
  color: #1e2430;
}

.leistungen-hero-main {
  max-width: 720px;
}

.leistungen-hero-title-mobile {
  display: none;
}

.leistungen-hero-title-mobile-line {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.leistungen-hero-mobile-visual {
  display: none;
}

.leistungen-hero .hero-media img {
  object-fit: cover;
  object-position: center top;
}

.leistungen-hero .hero-layer {
  background: transparent;
}

.leistungen-hero::after {
  content: none;
}

.leistungen-hero .eyebrow {
  background: rgba(14, 39, 70, 0.08);
  color: #51627d;
}

.leistungen-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  color: #171b24;
}

.leistungen-hero .hero-copy {
  max-width: 620px;
  color: rgba(30, 36, 48, 0.82);
}

.leistungen-hero .hero-copy-mobile-standalone {
  display: none;
}

.leistungen-hero .btn-outline {
  color: #23385f;
  border-color: rgba(35, 56, 95, 0.42);
  background: rgba(255, 255, 255, 0.55);
}

.leistungen-hero .btn-outline:hover,
.leistungen-hero .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.82);
}

.leistungen-hero .btn-icon-whatsapp {
  filter: brightness(0) saturate(100%) invert(15%) sepia(33%) saturate(1334%) hue-rotate(180deg) brightness(92%) contrast(95%);
}

.leistungen-hero .hero-benefits {
  border-top-color: rgba(35, 56, 95, 0.24);
}

.leistungen-hero-benefits,
.leistungen-hero .hero-benefits li,
.leistungen-hero .hero-benefits li span {
  color: #23385f;
}

.leistungen-hero .hero-benefits li:not(:last-child)::after {
  background: rgba(35, 56, 95, 0.48);
}

.leistungen-hero .hero-benefits li span::after {
  background: rgba(35, 56, 95, 0.72);
}

.leistungen-hero .hero-scroll-indicator span {
  border-right-color: rgba(35, 56, 95, 0.72);
  border-bottom-color: rgba(35, 56, 95, 0.72);
}

.page-ueber-uns .reviews {
  padding-top: 2.2rem;
  padding-bottom: 1.2rem;
}

.page-ueber-uns .final-cta {
  padding-top: 2.2rem;
}

.about-stats {
  padding: 4.2rem 0 4rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 1rem 0 0.6rem;
}

.about-stat-card {
  text-align: center;
}

.about-stat-value {
  margin: 0;
  font-family: "Readex Pro", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1;
  color: #ec9208;
}

.about-stat-value-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.about-stat-star {
  font-size: 0.82em;
  line-height: 1;
}

.about-stat-label {
  margin: 0.7rem 0 0;
  color: var(--ink-700);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-who {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.about-who-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr) minmax(260px, 0.7fr);
  gap: 1.2rem;
  align-items: stretch;
}

.about-who-copy,
.about-who-card {
  padding: clamp(1.6rem, 3vw, 2rem);
  border-radius: 34px;
}

.about-who-copy {
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.about-who-card {
  background:
    linear-gradient(180deg, #eef1f8 0%, #e5eaf4 100%);
  box-shadow:
    0 18px 40px rgba(17, 34, 61, 0.05),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.about-who-title {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.03;
  color: #1f2430;
}

.about-who-title span {
  color: #ec9208;
}

.about-who-copy p:not(.services-kicker) {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(60, 65, 79, 0.84);
  font-size: 1.03rem;
  line-height: 1.5;
}

.about-who-visual {
  border-radius: 34px;
  overflow: hidden;
  min-height: 100%;
  box-shadow:
    0 18px 40px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.about-who-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.about-who-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-who-card-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-who-card-icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(24%) saturate(1407%) hue-rotate(181deg) brightness(93%) contrast(93%);
  opacity: 0.9;
}

.about-who-card-value {
  margin: 0;
  font-family: "Readex Pro", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
  color: #263b67;
}

.about-who-card h3 {
  margin-top: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #2f3545;
}

.about-who-card p:last-child {
  color: rgba(60, 65, 79, 0.84);
  line-height: 1.55;
}

.about-overview {
  padding-top: 2.8rem;
  padding-bottom: 1rem;
}

.about-overview-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 40px;
  background: #ececf1;
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 3px 10px rgba(8, 23, 46, 0.04);
}

.about-overview-copy {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
}

.about-overview-title {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.04;
  color: #23262f;
}

.about-overview-text {
  max-width: 720px;
  color: rgba(60, 65, 79, 0.84);
  font-size: 1.05rem;
  line-height: 1.55;
}

.about-overview-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-overview-card {
  padding: 1.25rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
}

.about-overview-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  margin-bottom: 1rem;
}

.about-overview-card h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #2b3140;
}

.about-overview-card p {
  color: rgba(60, 65, 79, 0.8);
  line-height: 1.45;
}

.about-story {
  padding-top: 2.8rem;
  padding-bottom: 1.8rem;
}

.sectors {
  padding-top: 2.8rem;
  padding-bottom: 1.8rem;
  background: var(--white);
}

.sectors-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 42px;
  background: transparent;
  box-shadow: none;
}

.sectors-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.sectors-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  color: #171b24;
}

.sectors-title span {
  color: #ec9208;
}

.sectors-quote {
  justify-self: end;
  max-width: 360px;
  padding-top: 0.6rem;
  text-align: right;
  color: rgba(60, 65, 79, 0.88);
  font-weight: 700;
  line-height: 1.4;
}

.sectors-slider {
  margin-top: 2rem;
}

.industry-card {
  min-height: 170px;
  padding: 1.5rem 1.55rem;
  border-radius: 34px;
  background: #e7e8f1;
  box-shadow: none;
}

.industry-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.industry-card h3 {
  max-width: 240px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.22;
  color: #343a48;
}

.industry-card p {
  max-width: 260px;
  color: rgba(60, 65, 79, 0.78);
  font-size: 1rem;
  line-height: 1.4;
}

.industry-check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9098ba;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.sectors-footer {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem 2rem;
  align-items: center;
}

.sectors-footer p {
  max-width: 760px;
  color: rgba(60, 65, 79, 0.84);
  font-size: 1.02rem;
  line-height: 1.45;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
}

.about-story-panel,
.about-story-stats {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 40px rgba(17, 34, 61, 0.05),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.about-story-panel h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
  color: #23262f;
}

.about-story-panel p {
  max-width: 680px;
  color: rgba(60, 65, 79, 0.84);
  line-height: 1.65;
}

.about-story-stats {
  display: grid;
  gap: 1rem;
}

.about-story-stats article {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
}

.about-story-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Readex Pro", sans-serif;
  font-size: 1.08rem;
  color: #273244;
}

.about-story-stats p {
  color: rgba(60, 65, 79, 0.8);
  line-height: 1.45;
}

.footer {
  background: #10233f;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0 1.6rem;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  overflow: hidden;
}

.footer-shell {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.3rem) clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.8rem, 3.5vw, 2.8rem);
  border-radius: 34px;
  background: transparent;
}

.footer-top {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer-brand-col {
  justify-self: start;
}

.footer-logo {
  width: min(100%, 220px);
  height: auto;
  display: block;
  margin-left: -12px;
}

.footer-brand-copy {
  margin-top: 1rem;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.35;
}

.footer-nav-col,
.footer-hours-col,
.footer-contact-col {
  display: grid;
  gap: 0.55rem;
}

.footer-nav-col {
  padding-left: 2.25rem;
}

.footer-contact-col {
  justify-self: end;
  width: max-content;
}

.footer-grid h3 {
  color: var(--gold-500);
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-hours-col p,
.footer-contact-col p {
  margin: 0;
  line-height: 1.5;
}

.footer-bottom,
.footer-meta {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-legal,
.footer-social {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social {
  justify-self: end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 179, 36, 0.14);
  color: var(--gold-500);
  font-weight: 800;
  text-decoration: none;
}

.footer-social a img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(80%) saturate(1012%) hue-rotate(358deg) brightness(97%) contrast(92%);
}

.footer-social a:hover {
  background: rgba(255, 179, 36, 0.22);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
}

.footer-meta p:last-child {
  justify-self: end;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
  }

  .page-leistungen .service-showcase-card.reveal,
  .page-leistungen .service-showcase-media img,
  .page-leistungen .service-floating-card {
    transform: none;
    transition: none;
  }

  .btn-primary,
  .page-inner .btn-primary {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .topbar-inner.container,
  .page-inner .topbar-inner.container {
    width: min(1260px, 96vw);
  }

  .topbar-inner {
    column-gap: 1rem;
  }

  .topbar .brand {
    height: 66px;
  }

  .menu {
    gap: 1rem;
  }

  .menu a,
  .menu-dropdown-toggle {
    font-size: 0.95rem;
  }

  .btn-nav {
    padding-inline: 1.1rem;
    font-size: 0.94rem;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    min-height: 580px;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 84px;
  }

  .topbar-inner.container,
  .page-inner .topbar-inner.container {
    width: min(94vw, 1260px);
  }

  .topbar-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.75rem;
    row-gap: 0.85rem;
    padding: 0.75rem 0;
  }

  .topbar.is-scrolled .topbar-inner {
    min-height: auto;
  }

  .topbar .brand,
  .topbar.is-scrolled .brand {
    height: 52px;
    max-width: min(58vw, 220px);
  }

  .about-overview-grid,
  .about-story-grid,
  .about-who-shell {
    grid-template-columns: 1fr;
  }

  .sectors-head,
  .sectors-footer {
    grid-template-columns: 1fr;
  }

  .references-footer {
    grid-template-columns: 1fr;
  }

  .references-footer .btn {
    justify-self: start;
  }

  .sectors-quote {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-ueber-uns .about-stat-value {
    font-size: clamp(2.25rem, 6.8vw, 2.75rem) !important;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    justify-self: end;
  }

  .header-panel {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 35, 63, 0.1);
  }

  .topbar.is-menu-open .header-panel {
    display: flex;
  }

  .topbar.is-menu-open .menu-toggle-line:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle-line:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    justify-self: stretch;
    width: 100%;
  }

  .menu-dropdown {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.7rem;
  }

  .menu a,
  .menu-dropdown-toggle {
    display: block;
    padding: 0.72rem 0.15rem;
    font-size: 1rem;
    width: 100%;
    text-align: left;
  }

  .menu-dropdown-toggle {
    display: block;
    width: auto;
    min-width: 0;
    border-radius: 0;
    padding-right: 0.15rem;
  }

  .menu-dropdown-toggle span {
    display: block;
  }

  .menu-dropdown-toggle::before {
    display: none;
  }

  .menu-dropdown-expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 2.1rem;
    height: 2.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink-900);
    cursor: pointer;
  }

  .menu-dropdown-expand::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    display: block;
    box-sizing: border-box;
    border-right: 2.2px solid currentColor;
    border-bottom: 2.2px solid currentColor;
    transform: translateY(-0.08rem) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .menu a::after {
    left: 0;
    bottom: 0.2rem;
    transform-origin: left;
  }

  .menu-dropdown-panel {
    position: static;
    min-width: 0;
    grid-column: 1 / -1;
    margin-top: 0.38rem;
    padding: 0.18rem 0 0.2rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    transition: none;
  }

  .menu-dropdown.is-open .menu-dropdown-panel {
    display: grid;
    gap: 0.04rem;
  }

  .menu-dropdown:hover .menu-dropdown-panel,
  .menu-dropdown:focus-within .menu-dropdown-panel {
    transform: none;
  }

  .menu-dropdown-panel a {
    padding: 0.68rem 0.15rem;
    border-radius: 0;
  }

  .menu-dropdown-panel a:hover,
  .menu-dropdown-panel a:focus-visible,
  .menu-dropdown-panel a.is-active {
    background: transparent;
    color: var(--gold-600);
  }

  .menu-dropdown.is-open .menu-dropdown-expand::before {
    transform: translateY(0.08rem) rotate(225deg);
  }

  .btn-nav {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .partner-track {
    grid-auto-columns: calc((100% - 1.25rem) / 2);
  }

  .page-leistungen .service-showcase-card {
    grid-template-columns: minmax(320px, 0.85fr) minmax(340px, 1fr);
    gap: 1.5rem 2rem;
  }

  .page-leistungen .service-floating-card {
    left: 1rem;
  }

  .two-columns,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-head {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    text-align: left;
  }

  .page-index .faq-intro-line {
    white-space: normal;
  }

  .service-content {
    max-width: 100%;
  }

}

@media (max-width: 720px) {
  .hero {
    min-height: 540px;
  }

  .hero-layer {
    background:
      linear-gradient(180deg, rgba(8, 23, 46, 0.88) 0%, rgba(8, 23, 46, 0.72) 48%, rgba(8, 23, 46, 0.55) 100%);
  }

  .leistungen-hero .hero-layer {
    background: transparent;
  }

  .leistungen-hero .hero-media img {
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-content {
    width: min(92vw, 1120px);
    padding: 3.6rem 0 5.2rem;
    min-height: 540px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "visual"
      "scroll"
      "benefits";
    row-gap: 1rem;
    justify-content: stretch;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .leistungen-showcase {
    padding-top: 3rem;
  }

  .page-leistungen .service-showcase-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .page-leistungen .service-showcase-tag {
    margin-bottom: 2rem;
  }

  .page-leistungen .service-showcase-copy {
    max-width: none;
  }

  .page-leistungen .service-showcase-media {
    min-height: 280px;
  }

  .page-leistungen .service-floating-card {
    left: 1rem;
    top: auto;
    bottom: 1rem;
  }

  .footer {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .footer-shell {
    border-radius: 22px;
    padding: 1.4rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem 1.15rem;
    align-items: start;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-nav-col {
    grid-column: 1;
    grid-row: 2 / span 2;
    padding-left: 0;
  }

  .footer-hours-col {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-contact-col {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    width: auto;
  }

  .footer-brand-copy {
    max-width: none;
    margin-top: 0.85rem;
    font-size: 0.99rem;
  }

  .footer-grid h3 {
    margin-bottom: 0.15rem;
    font-size: 0.98rem;
  }

  .footer-grid a,
  .footer-grid p {
    font-size: 0.96rem;
  }

  .footer-bottom,
  .footer-meta {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-social,
  .footer-meta p:last-child {
    justify-self: start;
    text-align: left;
  }

  .faq-shell,
  .final-cta-shell,
  .reviews-shell {
    border-radius: 28px;
  }

  .hero-benefits {
    justify-content: flex-start;
    gap: 0.8rem;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero-benefits li {
    width: 100%;
    font-size: 0.95rem;
  }

  .hero-benefits li:not(:last-child)::after {
    display: none;
  }

  .page-index .hero {
    min-height: auto;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  .page-index .hero-video {
    object-position: 66% center;
  }

  .page-index .hero-layer {
    background:
      linear-gradient(180deg, rgba(8, 23, 46, 0.9) 0%, rgba(8, 23, 46, 0.8) 34%, rgba(8, 23, 46, 0.65) 66%, rgba(8, 23, 46, 0.54) 100%),
      linear-gradient(0deg, rgba(8, 23, 46, 0.22), rgba(8, 23, 46, 0.22));
  }

  .page-index .hero-content {
    width: min(94vw, 1120px);
    min-height: auto;
    padding: calc(1.15rem + var(--header-offset)) 0 1.8rem;
    align-content: start;
    row-gap: 1.3rem;
  }

  .page-index .hero-main {
    max-width: none;
    padding: 1.15rem 0.95rem 1.05rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(9, 20, 40, 0.18) 0%, rgba(9, 20, 40, 0.34) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 30px rgba(8, 23, 46, 0.18);
  }

  .page-index .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.74rem;
  }

  .page-index .hero-main > h1:not(.index-hero-title-mobile) {
    max-width: 10ch;
    font-size: clamp(2.15rem, 11vw, 3.15rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

  .page-index .hero-copy {
    margin-top: 0.85rem;
    max-width: 20ch;
    font-size: 1.02rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
  }

  .page-index .hero-copy br {
    display: none;
  }

  .page-index .hero-actions {
    margin-top: 1.25rem;
    gap: 0.7rem;
  }

  .page-index .hero-actions .btn {
    max-width: none;
    min-height: 56px;
    padding-inline: 1.15rem;
    font-size: 1rem;
  }

  .page-index .btn-outline-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
  }

  .page-index .hero-scroll-indicator {
    margin: 0.9rem auto 0.45rem;
    width: 24px;
    height: 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .page-index .hero-scroll-indicator span {
    width: 12px;
    height: 12px;
  }

  .page-index .hero-benefits {
    margin-top: 0;
    padding: 0.95rem 1rem 1.05rem;
    border-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(9, 20, 40, 0.2);
    backdrop-filter: blur(8px);
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .page-index .hero-benefits li {
    width: 100%;
    padding-left: 0.95rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    font-weight: 600;
  }

  .page-index .hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #d48b1b;
  }

  .page-index .hero-benefits li span {
    padding-bottom: 0;
  }

  .page-index .hero-benefits li span::after {
    display: none;
  }

  .page-index {
    --index-flow-size: 0.94rem;
    --index-flow-line: 1.18;
  }

  .page-index .page-main {
    margin-top: 0;
  }

  .page-index .topbar {
    position: fixed;
    inset: 0 0 auto 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .page-index .topbar.is-scrolled,
  .page-index .topbar.is-menu-open {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(8, 23, 46, 0.08);
  }

  .page-index .hero {
    min-height: auto;
    background-color: #08172e;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    overflow: hidden;
    padding: calc(var(--header-offset) + 0.22rem) 0 0;
  }

  .page-index .hero-media,
  .page-index .hero-layer {
    display: block;
  }

  .page-index .hero-benefits {
    display: none;
  }

  .page-index .hero-video {
    object-position: 64% center;
    transform: scale(1.04);
  }

  .page-index .hero-layer {
    background:
      linear-gradient(180deg, rgba(8, 23, 46, 0.9) 0%, rgba(8, 23, 46, 0.8) 34%, rgba(8, 23, 46, 0.65) 66%, rgba(8, 23, 46, 0.54) 100%),
      linear-gradient(0deg, rgba(8, 23, 46, 0.22), rgba(8, 23, 46, 0.22));
  }

  .page-index .hero-content {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 0.8rem 0.46rem 1.4rem;
    display: grid;
    grid-template-areas:
      "main"
      "scroll";
    grid-template-columns: 1fr;
    align-content: start;
    justify-content: start;
    justify-items: center;
    align-items: stretch;
    row-gap: 0.78rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
    isolation: isolate;
    color: #ffffff;
  }

  .page-index .hero-main {
    width: 100%;
    max-width: 18.9rem;
    min-height: 0;
    display: grid;
    justify-self: center;
    justify-items: center;
    align-items: center;
    padding: 0;
    margin-inline: auto;
    text-align: center;
    gap: 0.12rem;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .page-index .eyebrow {
    display: none;
  }

  .page-index .hero-main > h1:not(.index-hero-title-mobile) {
    display: none;
  }

  .page-index .index-hero-title-mobile {
    display: grid;
    justify-items: center;
    width: min(100%, 19rem);
    margin: 0 auto;
    gap: 0;
    font-size: clamp(1.34rem, 6.35vw, 1.72rem);
    line-height: 0.96;
    letter-spacing: 0.005em;
    color: #ffffff;
    text-wrap: initial;
    text-align: center;
  }

  .page-index .hero-copy {
    max-width: none;
    width: min(100%, 17.9rem);
    margin: 0.32rem auto 0;
    justify-self: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--index-flow-size);
    line-height: var(--index-flow-line);
    text-wrap: pretty;
    text-align: center;
  }

  .page-index .hero-main > .hero-copy {
    display: block;
  }

  .page-index .index-hero-copy-mobile-standalone {
    display: none;
  }

  .page-index .index-hero-mobile-visual {
    display: none;
  }

  .page-index .index-hero-mobile-visual-image {
    display: block;
    position: relative;
    z-index: 1;
    width: min(100%, 290px);
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    background: center / cover no-repeat url("../images/pages/home/home-cta-ci-treue-veredelung.webp");
    filter: drop-shadow(0 18px 22px rgba(8, 23, 46, 0.16));
  }

  .page-index .index-hero-mobile-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 0;
    width: 15rem;
    height: 15rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 251, 236, 0.72) 48%, rgba(255, 255, 255, 0) 74%);
  }

  .page-index .index-hero-mobile-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.1rem;
    z-index: 0;
    width: 9rem;
    height: 0.78rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(8, 23, 46, 0.14);
    filter: blur(10px);
  }

  .page-index .hero-actions {
    width: min(100%, 15.8rem);
    margin: 1.52rem auto 0;
    padding-top: 0;
    display: grid;
    justify-self: center;
    justify-items: center;
    gap: 0.42rem;
  }

  .page-index .hero-actions .btn {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    min-height: 42px;
    border-radius: 999px;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.82rem 1rem;
  }

  .page-index .hero-actions .btn-accent {
    box-shadow: 0 12px 18px rgba(201, 131, 20, 0.22);
  }

  .page-index .btn-outline-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    box-shadow: none;
  }

  .page-index .hero-scroll-indicator {
    margin: 0.06rem auto 0;
    width: 24px;
    height: 16px;
    opacity: 0.86;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .page-index .hero-scroll-indicator span {
    width: 14px;
    height: 14px;
    border-right-color: rgba(255, 255, 255, 0.86);
    border-bottom-color: rgba(255, 255, 255, 0.86);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-index .stat-value {
    font-size: clamp(2.25rem, 6.8vw, 2.75rem) !important;
  }

  .partner-shell {
    padding: 1.5rem 1.1rem;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
  }

  .partner-intro {
    display: contents;
  }

  .partner-intro > div {
    order: 1;
  }

  .partner-cta {
    width: 100%;
    margin-top: 1rem;
    width: 100%;
    order: 3;
    justify-content: center;
  }

  .partner-slider {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.4rem;
    order: 2;
  }

  .partner-arrow {
    display: none;
  }

  .partner-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .partner-viewport::-webkit-scrollbar {
    display: none;
  }

  .partner-track {
    grid-auto-columns: min(84vw, 280px);
    gap: 0.9rem;
  }

  .partner-card {
    min-height: auto;
    padding: 1.12rem 1.08rem 0.82rem;
    border-radius: 28px;
    scroll-snap-align: start;
  }

  .partner-card::before {
    top: 0.94rem;
    left: 0.88rem;
    width: 68px;
    height: 28px;
  }

  .partner-card::after {
    right: 0.88rem;
    bottom: 0.88rem;
    width: 28px;
    height: 18px;
  }

  .partner-card-top {
    min-height: 0;
    margin: 0;
  }

  .partner-icon {
    top: 0.96rem;
    right: 0.96rem;
    width: 50px;
    height: 50px;
  }

  .partner-card h3 {
    padding-right: 4.55rem;
    margin-bottom: 0.72rem;
    font-size: 1rem;
  }

  .partner-card p {
    max-width: none;
    padding-right: 0.15rem;
    font-size: 0.96rem;
    line-height: 1.38;
  }

  .about-hero .hero-content {
    min-height: 560px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.85rem;
  }

  .page-ueber-uns .about-stat-value {
    font-size: clamp(2.25rem, 7.2vw, 2.8rem) !important;
  }

  .about-stat-label {
    font-size: 0.92rem;
    line-height: 1.24;
  }

  .about-overview-shell,
  .about-story-panel,
  .about-story-stats,
  .about-who-copy,
  .about-who-card,
  .about-who-visual,
  .sectors-shell {
    border-radius: 28px;
  }

  .about-overview-card {
    border-radius: 24px;
  }

  .about-overview-card img {
    height: 180px;
    border-radius: 18px;
  }

  .about-who-visual img {
    min-height: 320px;
  }

  .industry-card {
    min-height: auto;
    border-radius: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits .benefits-grid {
    width: 100%;
    max-width: 540px;
    gap: 0.8rem 1rem;
  }

  .clients-row {
    padding: 1.8rem 0 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .clients-title {
    font-size: 1.02rem;
    width: 100%;
    text-align: center;
  }

  .clients-marquee {
    width: 100%;
  }

  .clients-set {
    gap: 1.4rem;
    padding-right: 1.4rem;
  }

  .reviews-head,
  .reviews-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .reviews-score,
  .reviews-cta {
    width: auto;
    justify-self: start;
  }

  .reviews-slider {
    display: block;
  }

  .reviews-viewport {
    overflow-x: hidden;
    overflow-y: visible;
    padding-right: 0;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  .reviews-viewport::-webkit-scrollbar {
    display: none;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    width: auto;
    gap: 0.85rem;
    padding-right: 0;
  }

  .reviews-arrow-prev,
  .reviews-arrow-next {
    display: none;
  }

  .review-card {
    flex: 0 0 auto;
    max-width: none;
    scroll-snap-align: unset;
  }

  .reviews-cta {
    width: 100%;
    justify-self: stretch;
    background: #d78c14;
    color: #ffffff;
    border-color: #d78c14;
  }

  .reviews-cta:hover,
  .reviews-cta:focus-visible {
    background: #bf7b10;
    border-color: #bf7b10;
    color: #ffffff;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .page-index .services-kicker {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .page-index .services-title {
    margin: 0;
  }

  .services-intro {
    margin-top: 0;
    width: 100%;
    max-width: 560px;
    justify-self: start;
    padding-top: 0;
    text-align: left;
    font-size: var(--index-flow-size);
    line-height: var(--index-flow-line);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .page-index .service-panel-body {
    padding-right: 0;
  }

  .page-index .service-panel-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    align-items: start;
    min-height: 0;
    padding-right: 0;
    margin-right: 0;
  }

  .page-index .service-badge {
    position: static;
    transform: none;
    justify-self: start;
    align-self: start;
    width: fit-content;
    max-width: 100%;
    padding: 0.28rem 0.62rem;
    white-space: nowrap;
    font-size: 0.69rem;
    line-height: 1.1;
  }

  .page-index .service-panel-body p {
    padding-right: 0;
  }

  .page-index .service-panel-body .service-list {
    padding-right: 3.7rem;
  }

}

@media (max-width: 560px) {
  .section {
    padding: 3rem 0;
  }

  .topbar-inner.container,
  .page-inner .topbar-inner.container {
    width: min(92vw, 1260px);
  }

  .services-shell {
    border-radius: 28px;
    padding: 1.4rem;
  }

  .reviews-shell {
    border-radius: 28px;
    padding: 1.4rem;
  }

  .service-panel {
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.7rem;
    border-radius: 24px;
  }

  .final-cta-shell {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .final-cta-visual {
    order: -1;
  }

  .service-image-wrap {
    border-radius: 18px;
    width: 100%;
  }

  .client-logo-item {
    width: 112px;
    height: 46px;
  }

  .service-link {
    right: 1.35rem;
    bottom: 1.35rem;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }
}

/* ====================================================== */
/* VNUTRENNIE STRANICY: obshchie stili dlya page-inner    */
/* Stranicy: leistungen.html, referenzen.html, ablauf.html,
   kontakt.html, impressum.html, datenschutz.html         */
/* ====================================================== */

.page-inner {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #10233f;
  line-height: 1.5;
}

.page-inner .container {
  width: var(--layout-width);
  margin: 0 auto;
}

.page-inner .page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 4px solid #264e79;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(8, 23, 46, 0.08);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.page-inner .page-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 16px rgba(8, 23, 46, 0.12);
}

.page-inner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.page-inner .btn:hover {
  transform: translateY(-2px);
}

.page-inner .btn-primary {
  background-color: #0e2746;
  color: #fff;
  transition:
    background-color 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-inner .btn-primary:hover,
.page-inner .btn-primary:focus-visible {
  background-color: var(--gold-hover-fill);
  transform: none;
  box-shadow: 0 10px 16px -7px rgba(218, 147, 40, 0.62), 0 3px 6px -3px rgba(218, 147, 40, 0.4);
}

.page-inner .btn-accent {
  background: #c98017;
  color: #fff;
}

.page-inner .btn-accent:hover {
  background: #da9328;
  box-shadow: 0 12px 20px rgba(193, 122, 19, 0.3);
}

.page-inner .page-main {
  min-height: calc(100vh - 180px);
  margin-top: 0;
}

.page-leistungen .page-main {
  margin-top: calc(var(--header-offset) * -1);
}

.page-inner .leistungen-hero .hero-content {
  width: var(--layout-width-wide);
}

.page-inner .page-hero {
  padding: 4.2rem 0 3.3rem;
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.92), rgba(14, 39, 70, 0.8)),
    url("../images/pages/home/home-cta-ci-treue-veredelung.webp") center / cover no-repeat;
  color: #fff;
}

.page-inner .eyebrow {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.28rem 0.75rem;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-inner .page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.05;
}

.page-inner .page-hero p {
  margin-top: 0.7rem;
  max-width: 760px;
  font-size: 1.07rem;
}

.page-inner .leistungen-hero .eyebrow {
  background: rgba(14, 39, 70, 0.08);
  color: #51627d;
}

.page-inner .section {
  padding: var(--section-space) 0;
}

.leistungen-showcase {
  padding: 4rem 0 1.2rem;
  background: var(--white);
}

.leistungen-showcase .container {
  width: var(--layout-width);
}

.leistungen-showcase-head {
  margin-bottom: clamp(2.4rem, 5vw, 4.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 1.5rem 2rem;
  align-items: center;
}

.leistungen-showcase-title {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  color: #171b24;
}

.leistungen-showcase-title span {
  color: #ec9208;
}

.leistungen-showcase-quote {
  justify-self: end;
  align-self: center;
  max-width: 420px;
  margin: 10px 0 0;
  padding-top: 0;
  text-align: right;
  color: rgba(60, 65, 79, 0.84);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.45;
  text-wrap: balance;
}

.leistungen-showcase-quote-mobile-layout {
  display: none;
}

.leistungen-showcase-stack {
  display: grid;
  gap: 1rem;
}

.page-leistungen .service-showcase-card {
  --showcase-card-offset: 0px;
  --showcase-image-offset: 0px;
  --showcase-float-offset: 0px;
  position: relative;
  height: 500px;
  min-height: 500px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(440px, 1fr);
  grid-template-areas:
    "copy media"
    "action media";
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: stretch;
  isolation: isolate;
}

.page-leistungen .service-showcase-card.reveal {
  opacity: 1;
  transform: translateY(var(--showcase-card-offset)) scale(1);
  transition: none;
}

.page-leistungen .service-showcase-card-light {
  background: #f1eee6;
  color: #171b24;
}

.page-leistungen .service-showcase-card-gold {
  background: rgba(236, 146, 8, 0.38);
  color: #151515;
}

.page-leistungen .service-showcase-card-dark {
  background: #10233f;
  color: #ffffff;
}

.page-leistungen .service-showcase-copy {
  grid-area: copy;
  max-width: 520px;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: start;
  z-index: 2;
}

.page-leistungen .service-showcase-tag {
  display: inline-flex;
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
  padding: 0.25rem 0.7rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-leistungen .service-showcase-copy h3 {
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: clamp(1.85rem, 3.05vw, 2.85rem);
  line-height: 1.04;
  text-wrap: balance;
  color: inherit;
  text-transform: none;
}

.page-leistungen .service-showcase-copy p:not(.service-showcase-tag) {
  max-width: 420px;
  margin-bottom: 1.3rem;
  color: currentColor;
  opacity: 0.76;
  line-height: 1.45;
}

.page-leistungen .service-showcase-copy .btn {
  margin-top: auto;
}

.page-leistungen .service-showcase-media {
  grid-area: media;
  position: relative;
  min-height: 0;
  height: 100%;
  align-self: stretch;
  display: grid;
  align-items: center;
  overflow: visible;
  border-radius: 0;
}

.page-leistungen .service-showcase-action {
  grid-area: action;
  align-self: end;
  justify-self: start;
  margin-top: 0.4rem;
}

.page-leistungen .service-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  transform: translateY(var(--showcase-image-offset)) scale(1.035);
  transition: transform 0.22s linear;
}

.page-leistungen .service-floating-card {
  position: absolute;
  left: -2rem;
  top: 26%;
  min-width: 178px;
  padding: 1rem 1.05rem;
  z-index: 3;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: #171b24;
  box-shadow: 0 18px 40px rgba(8, 23, 46, 0.14);
  transform: translateY(var(--showcase-float-offset));
  transition: transform 0.22s linear;
  z-index: 3;
}

.page-leistungen .service-floating-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(23, 27, 36, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-leistungen .service-floating-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 1;
}

.page-leistungen .service-floating-card div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.page-leistungen .service-floating-card p {
  margin: 0;
  color: rgba(23, 27, 36, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
}

.page-leistungen .leistungen-info-card {
  padding: var(--surface-pad-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 241, 0.96) 100%);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.page-leistungen .leistungen-info-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.35rem 2rem;
  align-items: start;
}

.page-leistungen .leistungen-info-copy {
  display: grid;
  align-content: start;
}

.page-leistungen .leistungen-info-copy h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.page-leistungen .leistungen-info-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(47, 53, 69, 0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

.page-leistungen .leistungen-info-copy-text {
  max-width: 610px;
  margin: 0.82rem 0 0;
  color: rgba(60, 65, 79, 0.8);
  font-size: 1rem;
  line-height: 1.58;
}

.page-leistungen .leistungen-info-mini-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
  padding: 0;
}

.page-leistungen .leistungen-info-mini-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(27, 44, 79, 0.86);
  font-size: 0.96rem;
  line-height: 1.45;
}

.page-leistungen .leistungen-info-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ec9208;
  box-shadow: 0 0 0 4px rgba(236, 146, 8, 0.14);
}

.page-leistungen .leistungen-info-points {
  display: grid;
  gap: 0.8rem;
}

.page-leistungen .leistungen-info-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.3rem 0.9rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(231, 232, 241, 0.88);
  border: 1px solid rgba(144, 152, 186, 0.18);
}

.page-leistungen .leistungen-info-point-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  background: #9098ba;
}

.page-leistungen .leistungen-info-point-icon img {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
}

.page-leistungen .leistungen-info-point strong {
  color: #263b67;
  font-size: 1rem;
  line-height: 1.2;
}

.page-leistungen .leistungen-info-point p {
  margin: 0;
  color: rgba(60, 65, 79, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.page-leistungen .leistungen-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.page-leistungen .leistungen-info-block {
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(16, 35, 63, 0.05);
}

.page-leistungen .leistungen-info-block h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  color: #1b2c4f;
  font-size: 1.08rem;
  line-height: 1.2;
}

.page-leistungen .leistungen-info-block-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ec9208;
}

.page-leistungen .leistungen-info-block-icon::before {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 1px;
  background: currentColor;
}

.page-leistungen .leistungen-info-block-icon.icon-audience::before {
  content: "✦";
}

.page-leistungen .leistungen-info-block-icon.icon-fit::before {
  content: "✦";
}

.page-leistungen .leistungen-info-block-icon.icon-process::before {
  content: "✦";
}

.page-leistungen .leistungen-info-block p {
  margin: 0;
  color: rgba(60, 65, 79, 0.8);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .page-leistungen .service-showcase-card {
    height: auto;
    grid-template-columns: minmax(230px, 0.85fr) minmax(300px, 1fr);
    gap: 1.5rem;
  }

  .page-leistungen .service-floating-card {
    left: 1rem;
  }

  .page-leistungen .leistungen-info-head,
  .page-leistungen .leistungen-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .leistungen-showcase-head {
    margin-bottom: 1.2rem;
    grid-template-columns: 1fr;
  }

  .leistungen-showcase-head > .leistungen-showcase-quote:not(.leistungen-showcase-quote-mobile-layout) {
    display: none;
  }

  .leistungen-showcase-quote-mobile-layout {
    display: block;
  }

  .leistungen-showcase-quote {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    text-align: left;
    text-wrap: normal;
  }

  .leistungen-showcase-quote-line {
    display: block;
  }

  .leistungen-showcase {
    padding-top: 3rem;
  }

  .page-leistungen .service-showcase-card {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .page-leistungen .service-showcase-tag {
    margin-bottom: 2rem;
  }

  .page-leistungen .service-showcase-copy {
    max-width: none;
    min-height: auto;
  }

  .page-leistungen .service-showcase-media {
    height: auto;
    min-height: 280px;
  }

  .page-leistungen .service-showcase-media img {
    max-height: 320px;
  }

  .page-leistungen .service-floating-card {
    left: 1rem;
    top: auto;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-leistungen .service-showcase-card.reveal,
  .page-leistungen .service-showcase-media img,
  .page-leistungen .service-floating-card {
    transform: none;
    transition: none;
  }

  .page-leistungen .leistungen-info-card {
    padding: var(--surface-pad-md);
  }

  .page-leistungen .leistungen-info-copy-text {
    font-size: 0.98rem;
  }

  .page-leistungen .leistungen-info-point,
  .page-leistungen .leistungen-info-block {
    border-radius: 20px;
  }
}

.page-inner .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.page-inner .split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.page-inner .card {
  border-radius: var(--surface-radius-md);
  background: #fff;
  box-shadow: 0 14px 30px rgba(8, 23, 46, 0.12);
  padding: var(--surface-pad-md);
}

.page-inner.page-leistungen .leistungen-info-card {
  padding: var(--surface-pad-lg);
}

@media (max-width: 700px) {
  .page-inner.page-leistungen .leistungen-info-card {
    padding: var(--surface-pad-md);
  }
}

.page-inner .card h2 {
  font-size: 1.8rem;
  color: #0e2746;
}

.page-inner .card p + p {
  margin-top: 0.35rem;
}

.page-inner .feature-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.page-inner .feature-list li {
  position: relative;
  padding-left: 1.25rem;
}

.page-inner .feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #c17a13;
  font-weight: 700;
}

.page-leistungen .split-grid .card {
  padding: var(--surface-pad-lg);
}

.page-inner .cta-box {
  border-radius: var(--surface-radius-lg);
  padding: var(--surface-pad-lg);
  background: linear-gradient(145deg, rgba(14, 39, 70, 0.92), rgba(8, 23, 46, 0.92));
  color: #fff;
  text-align: center;
}

.page-inner .cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-inner .cta-box p {
  margin: 0.45rem 0 1rem;
}

.page-leistungen .leistungen-cta-icon {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-leistungen .leistungen-cta-icon img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  filter: brightness(0) saturate(100%) invert(69%) sepia(81%) saturate(1718%) hue-rotate(355deg) brightness(97%) contrast(88%);
}

.page-stickerei .stickerei-cta-icon {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-stickerei .stickerei-cta-icon img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  filter: brightness(0) saturate(100%) invert(69%) sepia(81%) saturate(1718%) hue-rotate(355deg) brightness(97%) contrast(88%);
}

.page-stickerei .faq {
  padding-top: 1.3rem;
  padding-bottom: 1.5rem;
  background: transparent;
}

.page-stickerei .faq-shell {
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
}

.page-stickerei .faq-kicker {
  color: rgba(35, 56, 95, 0.72);
}

.page-stickerei .faq-title span {
  color: #f28f09;
}

.page-stickerei .faq-head {
  align-items: end;
}

.page-stickerei .faq-intro {
  align-self: end;
  max-width: 34ch;
  justify-self: end;
  margin-right: 0.6rem;
}

.page-stickerei .faq-item {
  border: 1px solid rgba(16, 35, 63, 0.06);
  box-shadow: 0 10px 24px rgba(17, 34, 61, 0.04);
}

.page-stickerei .faq-item.is-open .faq-question {
  background: #f28f09;
  color: #ffffff;
}

.page-stickerei .faq-answer {
  color: rgba(47, 53, 69, 0.82);
}

.page-inner .timeline {
  display: grid;
  gap: 0.75rem;
}

.page-inner .timeline-item {
  position: relative;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid #e19a2f;
  border-radius: 0 12px 12px 0;
  background: #fff;
  box-shadow: 0 14px 30px rgba(8, 23, 46, 0.12);
}

.page-inner .timeline-item h2 {
  font-size: 1.45rem;
}

.page-inner .legal-stack {
  display: grid;
  gap: 0.8rem;
}

.page-inner .contact-form {
  display: grid;
  gap: 0.65rem;
}

.page-inner .contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.page-inner .contact-form input,
.page-inner .contact-form textarea {
  width: 100%;
  border: 1px solid #d6dde7;
  border-radius: 8px;
  padding: 0.68rem 0.72rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.page-inner .contact-form input:focus,
.page-inner .contact-form textarea:focus {
  outline: none;
  border-color: #1c5e9f;
  box-shadow: 0 0 0 3px rgba(28, 94, 159, 0.15);
}

.page-inner .page-footer {
  margin-top: 1.6rem;
  background: #0f2b4f;
  color: rgba(255, 255, 255, 0.95);
  padding: 1.25rem 0;
}

.page-inner .footer-inner {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}

.page-inner .footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-inner .footer-links a {
  opacity: 0.88;
}

.page-inner .footer-links a:hover {
  opacity: 1;
}

@media (max-width: 1000px) {
  .page-inner .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .page-inner .cards-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .page-inner .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .stats-band {
    padding-top: 1.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.2rem 0;
  }

  .stat-label {
    font-size: 0.96rem;
  }

  .page-inner .cards-grid {
    grid-template-columns: 1fr;
  }

  .page-inner .page-hero {
    padding: 3.3rem 0 2.8rem;
  }

  .page-inner .btn {
    width: 100%;
  }
}

/* ================= LEISTUNGEN.HTML ================= */
.page-leistungen .cards-grid .card {
  border-top: 4px solid rgba(193, 122, 19, 0.85);
}

.page-stickerei .page-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}

.page-stickerei .page-hero .container {
  width: var(--layout-width);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding-top: 3.6rem;
  padding-bottom: 2.6rem;
  border-radius: 34px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.9), rgba(14, 39, 70, 0.74)),
    url("../images/pages/stickerei/stickerei-referenzen-hero-illustration.webp") center / cover no-repeat;
}

.page-stickerei .page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.page-stickerei .stickerei-hero-title-line,
.page-stickerei .stickerei-hero-copy-line {
  display: block;
}

.page-stickerei .branch-hero-title-tail {
  display: block;
}

.page-stickerei .branch-hero-copy-tail {
  display: block;
}

.page-stickerei .branch-hero-copy-single-line {
  max-width: none;
  width: auto;
  white-space: nowrap;
}

.page-stickerei .stickerei-hero-actions {
  margin-top: 1.85rem;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.page-stickerei .stickerei-hero-actions .btn {
  padding-inline: 1.5rem;
  box-shadow: 0 16px 28px rgba(201, 128, 23, 0.28);
}

.page-stickerei .stickerei-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  font-weight: 700;
}

.page-stickerei .stickerei-hero-link:hover,
.page-stickerei .stickerei-hero-link:focus-visible {
  color: rgba(255, 255, 255, 0.9);
}

.page-stickerei .stickerei-hero-link-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 21, 40, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  font-size: 1.45rem;
  line-height: 1;
}

.page-stickerei .stickerei-benefits-section {
  display: none;
  padding-top: 1.1rem;
  padding-bottom: 1.2rem;
}

.page-stickerei .stickerei-benefits-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.page-stickerei .stickerei-benefits-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem 2rem;
  align-items: start;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.page-stickerei .stickerei-benefits-head h2 {
  max-width: 640px;
  color: #171b24;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.page-stickerei .stickerei-benefits-head h2 span {
  color: #ec9208;
}

.page-stickerei .stickerei-benefits-head .btn {
  min-width: 240px;
  justify-content: center;
  color: #10233f;
  border-color: rgba(201, 128, 23, 0.55);
  background: transparent;
}

.page-stickerei .stickerei-benefits-head .btn:hover,
.page-stickerei .stickerei-benefits-head .btn:focus-visible {
  background: rgba(201, 128, 23, 0.08);
}

.page-stickerei .stickerei-benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-stickerei .stickerei-benefit-card {
  min-height: 100%;
  padding: 1.55rem 1.35rem 1.45rem;
  border-radius: 28px;
  background: #eef2f7;
}

.page-stickerei .stickerei-benefit-card h3 {
  margin-bottom: 0.65rem;
  color: #2b3342;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.page-stickerei .stickerei-benefit-card p {
  color: rgba(47, 53, 69, 0.82);
}

.page-stickerei .stickerei-benefit-card .feature-list {
  margin-top: 1rem;
}

.page-stickerei .stickerei-legacy-intro-section,
.page-stickerei .stickerei-legacy-process-section {
  display: none;
}

.page-stickerei .section:has(.stickerei-process-grid) .container {
  margin-top: -1.2rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.page-stickerei .stickerei-process-grid {
  margin-top: 0;
  gap: 1.4rem;
}

.page-stickerei .stickerei-process-grid .card {
  padding: 1.7rem 1.4rem 1.5rem;
  border-radius: 24px;
  background: #eef5fb;
  box-shadow:
    0 14px 34px rgba(17, 34, 61, 0.05),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.page-stickerei .stickerei-process-grid .card h2 {
  margin-bottom: 0.55rem;
}

.page-stickerei .stickerei-process-grid .card p {
  color: rgba(47, 53, 69, 0.8);
  line-height: 1.45;
}

.page-stickerei .stickerei-quality-section {
  padding-top: 1.8rem;
  padding-bottom: 1.2rem;
}

.page-stickerei .stickerei-quality-shell,
.page-stickerei .stickerei-visual-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

.page-stickerei .stickerei-quality-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr);
  gap: 1.25rem 1.6rem;
  align-items: start;
}

.page-stickerei .stickerei-quality-copy h2,
.page-stickerei .stickerei-visual-head h2 {
  color: #171b24;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
  line-height: 1.08;
}

.page-stickerei .stickerei-visual-head h2 span {
  color: #ec9208;
}

.page-stickerei .stickerei-quality-copy .services-kicker {
  margin-bottom: 0.75rem;
  color: #ec9208;
}

.page-stickerei .stickerei-quality-copy p:last-child {
  max-width: 460px;
  margin: 0.95rem 0 0;
  color: rgba(47, 53, 69, 0.8);
  line-height: 1.5;
}

.page-stickerei .stickerei-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.page-stickerei .stickerei-quality-section {
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}

.page-stickerei .stickerei-quality-shell {
  padding: clamp(1.45rem, 2.8vw, 2rem);
}

.page-stickerei .stickerei-quality-layout {
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.38fr);
  gap: 0.95rem 1.2rem;
}

.page-stickerei .stickerei-quality-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  line-height: 1.04;
}

.page-stickerei .stickerei-quality-copy p:last-child {
  max-width: 410px;
  margin-top: 0.72rem;
  font-size: 0.98rem;
  line-height: 1.42;
}

.page-stickerei .stickerei-quality-card {
  min-height: 100%;
  padding: 0.95rem 0.9rem 0.92rem;
  border-radius: 24px;
  background: #fbfcfe;
  border: 1px solid rgba(16, 35, 63, 0.06);
  box-shadow: 0 10px 24px rgba(18, 34, 66, 0.03);
}

.page-stickerei .stickerei-quality-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f5fb;
}

.page-stickerei .stickerei-quality-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(36%) saturate(1238%) hue-rotate(179deg) brightness(89%) contrast(94%);
}

.page-stickerei .stickerei-quality-card h3 {
  margin-top: 0.72rem;
  margin-bottom: 0.4rem;
  color: #171b24;
  font-size: 1rem;
  line-height: 1.12;
}

.page-stickerei .stickerei-quality-card p {
  color: rgba(47, 53, 69, 0.76);
  font-size: 0.88rem;
  line-height: 1.42;
}

.page-stickerei .stickerei-visual-section {
  padding-top: clamp(2rem, 3.6vw, 2.8rem);
  padding-bottom: 1.2rem;
}

.page-stickerei .stickerei-visual-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-stickerei .stickerei-visual-head {
  display: block;
  margin-bottom: 0;
  margin-top: 1.3rem;
}

.page-stickerei .stickerei-visual-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.page-stickerei .stickerei-visual-footer {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem 2rem;
  align-items: center;
}

.page-stickerei .stickerei-visual-footer p {
  max-width: 760px;
  color: rgba(60, 65, 79, 0.84);
  font-size: 1.02rem;
  line-height: 1.45;
}

.page-stickerei .stickerei-visual-footer strong {
  color: #2f3545;
}

.page-stickerei .stickerei-visual-footer-cta {
  border-color: #ec9208;
  color: #10233f;
}

.page-stickerei .stickerei-visual-footer-cta:hover,
.page-stickerei .stickerei-visual-footer-cta:focus-visible {
  background: rgba(236, 146, 8, 0.1);
}

.page-stickerei .stickerei-visual-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.74 / 1;
  border-radius: 22px;
  background: #10233f;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 34, 66, 0.08);
  --stickerei-visual-scale: 1;
  --stickerei-visual-scale-hover: 1.06;
  --stickerei-visual-position: center center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.page-stickerei .stickerei-visual-card:focus,
.page-stickerei .stickerei-visual-card:focus-visible {
  outline: none;
}

.page-stickerei .stickerei-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--stickerei-visual-position);
  display: block;
  transform: scale(var(--stickerei-visual-scale));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.page-stickerei .stickerei-visual-card-hoodies {
  --stickerei-visual-scale: 1.18;
  --stickerei-visual-scale-hover: 1.24;
  --stickerei-visual-position: center 26%;
}

.page-stickerei .stickerei-visual-card div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 35, 63, 0.02) 16%, rgba(16, 35, 63, 0.16) 44%, rgba(16, 35, 63, 0.88) 82%, rgba(16, 35, 63, 0.98) 100%);
  transition: background 0.35s ease;
}

.page-stickerei .stickerei-visual-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.12;
}

.page-stickerei .stickerei-visual-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  line-height: 1.42;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.35s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
}

.page-stickerei .stickerei-visual-card:hover > img,
.page-stickerei .stickerei-visual-card:focus > img,
.page-stickerei .stickerei-visual-card:focus-visible > img,
.page-stickerei .stickerei-visual-card:focus-within > img,
.page-stickerei .stickerei-visual-card.is-active > img {
  transform: scale(var(--stickerei-visual-scale-hover));
  filter: brightness(0.5);
}

.page-stickerei .stickerei-visual-card:hover div,
.page-stickerei .stickerei-visual-card:focus div,
.page-stickerei .stickerei-visual-card:focus-visible div,
.page-stickerei .stickerei-visual-card:focus-within div,
.page-stickerei .stickerei-visual-card.is-active div {
  background: linear-gradient(180deg, rgba(16, 35, 63, 0.3) 0%, rgba(16, 35, 63, 0.52) 32%, rgba(16, 35, 63, 0.9) 70%, rgba(16, 35, 63, 0.98) 100%);
}

.page-stickerei .stickerei-visual-card:hover p,
.page-stickerei .stickerei-visual-card:focus p,
.page-stickerei .stickerei-visual-card:focus-visible p,
.page-stickerei .stickerei-visual-card:focus-within p,
.page-stickerei .stickerei-visual-card.is-active p {
  max-height: 7.5rem;
  opacity: 1;
  transform: translateY(0);
}

.page-stickerei .stickerei-detail-section {
  padding-top: clamp(1.3rem, 2.8vw, 2rem);
  padding-bottom: 1.4rem;
}

.page-stickerei .stickerei-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 1.6rem;
  padding: 1.15rem;
  border-radius: 34px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
}

.page-stickerei .stickerei-detail-media {
  min-height: 0;
  aspect-ratio: 1.52 / 1;
  border-radius: 28px;
  overflow: hidden;
}

.page-stickerei .stickerei-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.page-stickerei .stickerei-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.35rem 0.25rem;
  color: #171b24;
}

.page-stickerei .stickerei-detail-copy .services-kicker {
  margin-bottom: 0.65rem;
  color: #f2a11d;
}

.page-stickerei .stickerei-detail-copy h2 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.03;
  color: #171b24;
}

.page-stickerei .stickerei-detail-list {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-stickerei .stickerei-detail-list li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(47, 53, 69, 0.84);
  font-size: 0.98rem;
  line-height: 1.4;
}

.page-stickerei .stickerei-detail-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(242, 161, 29, 0.7);
  color: #f2a11d;
  font-size: 0.72rem;
  font-weight: 700;
}

.page-stickerei .stickerei-steps-section {
  padding-top: clamp(1.4rem, 2.8vw, 2.2rem);
  padding-bottom: 1.5rem;
}

.page-stickerei .stickerei-steps-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.5fr);
  gap: 2rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: 34px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
}

.page-stickerei .stickerei-steps-copy {
  align-self: center;
}

.page-stickerei .stickerei-steps-copy .services-kicker {
  margin-bottom: 0.85rem;
  color: #ef8f09;
}

.page-stickerei .stickerei-steps-copy h2 {
  margin: 0;
  max-width: 10ch;
  color: #171b24;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.page-stickerei .stickerei-steps-list {
  --stickerei-step-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--stickerei-step-gap);
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.page-stickerei .stickerei-step-item {
  position: relative;
  padding-top: 3.35rem;
}

.page-stickerei .stickerei-step-item::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% - 10px);
  width: calc(100% + var(--stickerei-step-gap));
  height: 2px;
  background: rgba(16, 35, 63, 0.16);
}

.page-stickerei .stickerei-step-item:last-child::before {
  display: none;
}

.page-stickerei .stickerei-step-item:last-child::after {
  display: none;
}

.page-stickerei .stickerei-step-number {
  position: absolute;
  top: 0;
  left: calc(50% - 10px);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #f28f09;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(242, 143, 9, 0.22);
  z-index: 1;
}

.page-stickerei .stickerei-step-item h3 {
  margin: 0 0 0.7rem;
  color: #1a2436;
  font-size: 1.05rem;
  line-height: 1.2;
}

.page-stickerei .stickerei-step-item p {
  margin: 0;
  color: rgba(47, 53, 69, 0.82);
  font-size: 0.95rem;
  line-height: 1.58;
}

.page-stickerei .stickerei-steps-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 0.4rem;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.page-stickerei .stickerei-steps-footer p {
  margin: 0;
  max-width: 68ch;
  color: rgba(47, 53, 69, 0.82);
  font-size: 1rem;
  line-height: 1.62;
}

.page-stickerei .stickerei-steps-footer strong {
  color: #1a2436;
}

.page-stickerei .stickerei-steps-footer-cta {
  border-color: rgba(242, 143, 9, 0.78);
}

.page-stickerei .stickerei-steps-footer-cta:hover,
.page-stickerei .stickerei-steps-footer-cta:focus-visible {
  border-color: #f28f09;
}

.page-stickerei .stickerei-customer-section {
  padding-top: 1.8rem;
  padding-bottom: 1.4rem;
}

.page-stickerei .stickerei-customer-shell {
  display: grid;
  gap: 2rem;
}

.page-stickerei .stickerei-customer-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.5fr);
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.page-stickerei .stickerei-customer-head h2 {
  color: #171b24;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
}

.page-stickerei .stickerei-customer-head h2 span {
  color: #ec9208;
}

.page-stickerei .stickerei-customer-intro {
  justify-self: end;
  max-width: 430px;
  margin: 0;
  color: rgba(47, 53, 69, 0.82);
  font-weight: 500;
  line-height: 1.38;
  text-align: right;
}

.page-stickerei .reference-project-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(440px, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
}

.page-stickerei .reference-project-pill {
  width: fit-content;
  margin: 0 0 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(236, 146, 8, 0.16);
  color: #c47a08;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-stickerei .reference-project-copy {
  padding-left: 0.35rem;
}

.page-stickerei .reference-project-copy h3 {
  max-width: 430px;
  color: #171b24;
  font-size: clamp(1.85rem, 3.05vw, 2.85rem);
  line-height: 1.04;
  text-wrap: balance;
}

.page-stickerei .reference-project-copy > p:not(.reference-project-pill) {
  max-width: 420px;
  margin: 0.9rem 0 0;
  color: rgba(47, 53, 69, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.page-stickerei .reference-project-tags {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.1rem;
  row-gap: 0.85rem;
  max-width: 420px;
}

.page-stickerei .reference-project-tags span {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(47, 53, 69, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.page-stickerei .reference-project-tags img {
  width: 38px;
  height: 38px;
  padding: 0.55rem;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(236, 146, 8, 0.12);
  filter: brightness(0) saturate(100%) invert(13%) sepia(36%) saturate(1238%) hue-rotate(179deg) brightness(89%) contrast(94%);
}

.page-stickerei .reference-gallery {
  position: relative;
}

.page-stickerei .reference-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 14px;
  display: block;
  overflow: hidden;
  background: rgba(236, 239, 243, 0.9);
  cursor: zoom-in;
}

.page-stickerei .reference-gallery-main::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(8, 23, 46, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.page-stickerei .reference-gallery-main::before {
  content: "";
  position: absolute;
  left: calc(50% + 3px);
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #10233f;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.page-stickerei .reference-gallery-main.is-video-active::before,
.page-stickerei .reference-gallery-main.is-video-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.page-stickerei .reference-gallery-main img,
.page-stickerei .reference-gallery-main video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-stickerei .reference-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 54px;
  border: 0;
  border-radius: 0;
  display: none;
  place-items: center;
  background: transparent;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(8, 23, 46, 0.75);
  pointer-events: none;
}

.page-stickerei .reference-gallery-prev {
  left: 0.7rem;
}

.page-stickerei .reference-gallery-next {
  right: 0.7rem;
}

.page-stickerei .reference-gallery-thumbs {
  position: relative;
  margin-top: 0.85rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72px, 1fr);
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.05rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.page-stickerei .reference-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.page-stickerei .reference-gallery-thumbs button {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(236, 239, 243, 0.9);
  cursor: pointer;
  opacity: 0.62;
  scroll-snap-align: center;
}

.page-stickerei .reference-video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #10233f;
  font-size: 0.78rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(8, 23, 46, 0.2);
}

.page-stickerei .reference-gallery-thumbs button.is-active {
  border-color: #ec9208;
  opacity: 1;
}

.page-stickerei .reference-gallery-thumbs img,
.page-stickerei .reference-gallery-thumbs video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-stickerei .stickerei-reviews-section {
  padding-top: 1.8rem;
}

@media (max-width: 1180px) {
  .page-stickerei .stickerei-visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-stickerei .stickerei-benefits-head,
  .page-stickerei .stickerei-benefits-cards,
  .page-stickerei .stickerei-customer-head {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-quality-layout {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-detail-shell {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-detail-media {
    aspect-ratio: 1.35 / 1;
  }

  .page-stickerei .stickerei-steps-shell {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-steps-copy h2 {
    max-width: none;
  }

  .page-stickerei .stickerei-steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.6rem;
  }

  .page-stickerei .stickerei-step-item:nth-child(even)::before {
    display: none;
  }

  .page-stickerei .stickerei-steps-footer {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-steps-footer .btn {
    justify-self: start;
  }

  .page-stickerei .stickerei-quality-grid,
  .page-stickerei .stickerei-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-stickerei .stickerei-visual-card div {
    background: linear-gradient(180deg, rgba(16, 35, 63, 0.18) 8%, rgba(16, 35, 63, 0.34) 32%, rgba(16, 35, 63, 0.84) 72%, rgba(16, 35, 63, 0.97) 100%);
  }

  .page-stickerei .stickerei-benefits-head .btn {
    justify-self: start;
  }

  .page-stickerei .stickerei-customer-intro {
    justify-self: start;
    max-width: none;
    text-align: left;
    white-space: normal;
  }

  .page-stickerei .stickerei-customer-intro br {
    display: none;
  }

  .page-stickerei .stickerei-visual-footer {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-visual-footer .btn {
    justify-self: start;
  }

  .page-stickerei .reference-project-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-stickerei .page-hero .container {
    padding-top: 3.35rem;
    padding-bottom: 2.2rem;
  }

  .page-stickerei .page-hero .eyebrow {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    padding: 0.24rem 0.62rem;
    font-size: 0.78rem;
    transform: none;
  }

  .page-stickerei .stickerei-hero-title {
    width: min(100%, 17rem);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.46rem, 6.9vw, 1.9rem);
    line-height: 1.06;
  }

  .page-stickerei .stickerei-hero-copy-text {
    width: min(100%, 18rem);
    max-width: none;
    margin-top: 0.9rem;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .page-stickerei .stickerei-hero-title-line,
  .page-stickerei .stickerei-hero-copy-line {
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .page-stickerei .stickerei-hero-title-word {
    display: inline;
  }

  .page-stickerei .stickerei-hero-copy-line + .stickerei-hero-copy-line {
    margin-top: 0.08rem;
  }

  .page-stickerei .stickerei-hero-actions {
    width: 100%;
    max-width: min(100%, 17rem);
    margin-left: auto;
    margin-right: auto;
    gap: 0.85rem;
  }

  .page-stickerei .stickerei-hero-actions .btn,
  .page-stickerei .stickerei-hero-link {
    width: 100%;
    justify-content: center;
  }

  .page-stickerei .stickerei-hero-actions .btn {
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .page-stickerei .stickerei-quality-shell {
    padding: 1.25rem 1rem 1rem;
    border-radius: 28px;
  }

  .page-stickerei .stickerei-quality-layout {
    gap: 1rem;
  }

  .page-stickerei .stickerei-quality-copy .services-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .page-stickerei .stickerei-quality-copy h2 {
    max-width: 11ch;
    font-size: clamp(1.82rem, 8.5vw, 2.35rem);
    line-height: 1.04;
  }

  .page-stickerei .stickerei-quality-copy p:last-child {
    max-width: none;
    margin-top: 0.8rem;
    font-size: 0.98rem;
    line-height: 1.44;
  }

  .page-stickerei .stickerei-quality-grid,
  .page-stickerei .reference-project-tags {
    grid-template-columns: 1fr;
  }

  .page-stickerei .stickerei-quality-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .page-stickerei .stickerei-visual-shell {
    gap: 1.35rem;
  }

  .page-stickerei .stickerei-visual-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .page-stickerei .stickerei-visual-card {
    border-radius: 20px;
  }

  .page-stickerei .stickerei-visual-card {
    aspect-ratio: 1.36 / 1;
  }

  .page-stickerei .stickerei-visual-card div {
    gap: 0.3rem;
    padding: 0.72rem 0.76rem 0.7rem;
  }

  .page-stickerei .stickerei-visual-card h3 {
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .page-stickerei .stickerei-visual-card p {
    font-size: 0.89rem;
    line-height: 1.38;
  }

  .page-stickerei .stickerei-quality-card {
    min-height: 0;
    padding: 1rem 0.95rem 0.95rem;
    border-radius: 24px;
    text-align: left;
  }

  .page-stickerei .stickerei-quality-icon {
    width: 60px;
    height: 60px;
    margin-left: 0;
    margin-right: auto;
  }

  .page-stickerei .stickerei-quality-card img {
    width: 26px;
    height: 26px;
  }

  .page-stickerei .stickerei-quality-card h3 {
    margin-top: 0.8rem;
    margin-bottom: 0.42rem;
    font-size: 1.12rem;
    line-height: 1.08;
  }

  .page-stickerei .stickerei-quality-card p {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .page-stickerei .reference-project-card {
    padding: 1.1rem 0.95rem 0.95rem;
    border-radius: 28px;
    gap: 1.1rem;
    overflow: hidden;
  }

  .page-stickerei .reference-project-copy {
    min-width: 0;
    padding-left: 0;
  }

  .page-stickerei .reference-project-pill {
    margin-bottom: 0.7rem;
  }

  .page-stickerei .reference-project-copy h3 {
    max-width: 8.5ch;
    font-size: clamp(1.56rem, 7vw, 2rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .page-stickerei .reference-project-copy > p:not(.reference-project-pill) {
    max-width: 34ch;
    margin-top: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .page-stickerei .reference-project-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.4rem;
    row-gap: 0.72rem;
    max-width: none;
    margin-top: 1.05rem;
  }

  .page-stickerei .reference-project-tags span {
    min-width: 0;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.24;
    overflow-wrap: anywhere;
  }

  .page-stickerei .reference-project-tags img {
    width: 40px;
    height: 40px;
    padding: 0.58rem;
    display: block;
    background: #e7edf7;
    filter: none;
  }

  .page-stickerei .reference-gallery {
    min-width: 0;
  }

  .page-stickerei .reference-gallery-main {
    aspect-ratio: 1 / 1.02;
    border-radius: 18px;
  }

  .page-stickerei .reference-gallery-thumbs {
    grid-auto-columns: minmax(58px, 1fr);
    gap: 0.45rem;
    margin-top: 0.7rem;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .page-stickerei .reference-gallery-thumbs button {
    border-radius: 10px;
  }

  .page-stickerei .reference-gallery-arrow {
    top: calc(50% - 30px);
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .page-stickerei .reference-gallery-prev {
    left: 0.5rem;
  }

  .page-stickerei .reference-gallery-next {
    right: 0.5rem;
  }

  .page-stickerei .faq {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
  }

  .page-stickerei .faq-shell {
    padding: 1.15rem 0.95rem 1rem;
    border-radius: 28px;
  }

  .page-stickerei .faq-head {
    gap: 0.7rem;
  }

  .page-stickerei .faq-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .page-stickerei .faq-title {
    margin-top: 0.35rem;
    font-size: clamp(1.62rem, 7.2vw, 2.08rem);
    line-height: 1.05;
  }

  .page-stickerei .faq-intro {
    max-width: none;
    margin-right: 0;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .page-stickerei .stickerei-quality-copy > p,
  .page-stickerei .stickerei-customer-intro,
  .page-stickerei .stickerei-visual-footer p,
  .page-stickerei .reference-project-copy > p:not(.reference-project-pill),
  .page-stickerei .faq-intro,
  .page-stickerei .stickerei-steps-footer p {
    max-width: none;
    width: 100%;
    margin-right: 0;
    text-align: left;
    white-space: normal;
  }

  .page-stickerei .stickerei-quality-copy > p br,
  .page-stickerei .stickerei-customer-intro br,
  .page-stickerei .stickerei-visual-footer p br,
  .page-stickerei .reference-project-copy > p:not(.reference-project-pill) br,
  .page-stickerei .faq-intro br,
  .page-stickerei .stickerei-steps-footer p br {
    display: none;
  }

  .page-stickerei .faq-list {
    margin-top: 1.15rem;
    gap: 0.65rem;
  }

  .page-stickerei .faq-item {
    border-radius: 22px;
  }

  .page-stickerei .faq-question {
    gap: 0.8rem;
    padding: 0.98rem 1rem;
    font-size: 0.98rem;
    line-height: 1.26;
  }

  .page-stickerei .faq-icon {
    font-size: 1.28rem;
  }

  .page-stickerei .faq-answer {
    padding: 0.92rem 1rem 1.05rem;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .page-stickerei .stickerei-detail-shell {
    padding: 1rem;
    border-radius: 26px;
  }

  .page-stickerei .stickerei-detail-media {
    aspect-ratio: 1.2 / 1;
    border-radius: 22px;
  }

  .page-stickerei .stickerei-detail-copy h2 {
    max-width: none;
  }

  .page-stickerei .stickerei-steps-shell {
    gap: 1.15rem;
    padding: 1.35rem 1rem 1.1rem;
    border-radius: 28px;
  }

  .page-stickerei .stickerei-steps-copy {
    align-self: start;
  }

  .page-stickerei .stickerei-steps-copy .services-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .page-stickerei .stickerei-steps-copy h2 {
    max-width: 13ch;
    font-size: clamp(1.46rem, 6.8vw, 1.84rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .page-stickerei .stickerei-steps-list {
    position: relative;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 0.48rem;
  }

  .page-stickerei .stickerei-step-item {
    min-height: 0;
    padding: 0 0 0 3.75rem;
  }

  .page-stickerei .stickerei-step-item::before {
    display: none;
  }

  .page-stickerei .stickerei-step-item::after {
    content: "";
    position: absolute;
    top: 2.65rem;
    bottom: -1.6rem;
    left: 21px;
    width: 1px;
    background: linear-gradient(180deg, rgba(35, 56, 95, 0.22) 0%, rgba(35, 56, 95, 0.1) 100%);
  }

  .page-stickerei .stickerei-step-number {
    top: 0.08rem;
    left: 0;
    width: 42px;
    height: 42px;
    transform: none;
    font-size: 1rem;
  }

  .page-stickerei .stickerei-step-item h3 {
    margin-bottom: 0.48rem;
    font-size: 1.24rem;
    line-height: 1.12;
  }

  .page-stickerei .stickerei-step-item p {
    max-width: 30ch;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .page-stickerei .stickerei-steps-footer {
    margin-top: 0.65rem;
    padding-top: 0.9rem;
    gap: 0.8rem;
  }

  .page-stickerei .stickerei-steps-footer p {
    font-size: 0.93rem;
    line-height: 1.56;
  }

  .page-stickerei .stickerei-steps-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .page-stickerei .stickerei-step-item:last-child::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-stickerei .stickerei-visual-grid {
    grid-template-columns: 1fr;
  }
}

.page-digitaldruck:not(.page-stickerei) .page-hero {
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.9), rgba(14, 39, 70, 0.74)),
    url("../images/pages/leistungen/leistungen-hero-firmenkleidung-textilveredelung.jpg") center / cover no-repeat;
}

.page-digitaldruck.page-stickerei .page-hero .container {
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.9), rgba(14, 39, 70, 0.74)),
    url("../images/pages/digitaldruck/digitaldruck-hero-textildruck.webp") center / cover no-repeat;
}

.page-ablauf .page-hero,
.page-referenzen .page-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  position: relative;
  background: none;
  overflow: visible;
}

.page-ablauf .page-hero .container,
.page-referenzen .page-hero .container {
  width: var(--layout-width);
  margin: 0 auto;
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 4.2rem;
  padding-bottom: 3.3rem;
  border-radius: 34px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.page-ablauf .page-hero .container {
  background:
    linear-gradient(130deg, rgba(12, 33, 61, 0.56), rgba(24, 60, 101, 0.4)),
    url("../images/pages/ablauf/ablauf-hero-prozess-textilveredelung.webp") center / cover no-repeat;
}

.page-referenzen .page-hero {
  width: 100%;
}

.page-referenzen .page-hero .container {
  background-image: url("../images/pages/referenzen/referenzen-hero-textilveredelung-projekte.webp");
}

.page-ablauf .page-hero .container::before,
.page-referenzen .page-hero .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.page-ablauf .page-hero .container::before {
  display: none;
}

.page-referenzen .page-hero .container::before {
  background: rgba(8, 23, 46, 0.72);
}

.page-ablauf .page-hero .container,
.page-referenzen .page-hero .container {
  position: relative;
}

.page-ablauf .page-hero .container > *,
.page-referenzen .page-hero .container > * {
  position: relative;
  z-index: 1;
}

.page-ablauf .page-hero p,
.page-referenzen .page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.page-ablauf .ablauf-hero-title-line {
  display: inline;
}

.page-ablauf .ablauf-process-fact-desktop {
  display: inline;
}

.page-ablauf .ablauf-process-fact-mobile {
  display: none;
}

.page-ablauf .page-hero .eyebrow,
.page-referenzen .page-hero .eyebrow {
  font-size: 0.78rem;
  padding: 0.25rem 0.68rem;
}

/* SEO: reusable breadcrumb and category landing structure for future reference subpages. */
.breadcrumb-nav {
  width: var(--layout-width);
  max-width: 100%;
  margin: 1.15rem auto 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(16, 35, 63, 0.66);
  font-size: 0.95rem;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  color: rgba(16, 35, 63, 0.34);
}

.breadcrumb-list a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb-list a:hover,
.breadcrumb-list a:focus-visible {
  color: var(--gold-600);
}

.breadcrumb-list [aria-current="page"] {
  color: rgba(16, 35, 63, 0.76);
  font-weight: 700;
}

.page-referenzen .reference-category-hub-section,
.page-referenzen-template .reference-template-intro-section,
.page-referenzen-template .reference-template-structure-section,
.page-referenzen-template .reference-template-topics-section,
.page-referenzen-template .reference-template-preview-section,
.page-referenzen-template .reference-template-network-section {
  background: #ffffff;
}

.page-referenzen .reference-category-hub-shell,
.page-referenzen-template .reference-template-shell,
.page-referenzen-template .reference-template-preview-shell,
.page-referenzen-template .reference-template-network-shell {
  width: var(--layout-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-referenzen .reference-category-hub-shell,
.page-referenzen-template .reference-template-shell,
.page-referenzen-template .reference-template-preview-shell,
.page-referenzen-template .reference-template-network-shell {
  display: grid;
  gap: 1.7rem;
}

.page-referenzen .reference-category-hub-head,
.page-referenzen-template .reference-template-section-head {
  display: grid;
  gap: 0.85rem;
}

.page-referenzen .reference-category-hub-head h2,
.page-referenzen-template .reference-template-section-head h2 {
  margin: 0;
  color: #171b24;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.page-referenzen .reference-category-hub-head h2 span,
.page-referenzen-template .reference-template-section-head h2 span {
  color: #ec9208;
}

.page-referenzen .reference-category-hub-head p,
.page-referenzen-template .reference-template-section-head p {
  margin: 0;
  max-width: 60ch;
  color: rgba(16, 35, 63, 0.78);
  line-height: 1.65;
}

.reference-category-grid,
.reference-template-grid,
.reference-template-topic-grid,
.reference-template-preview-grid,
.reference-template-network-grid {
  display: grid;
  gap: 1rem;
}

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

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

.reference-template-topic-grid,
.reference-template-network-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-template-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-category-card,
.reference-template-step,
.reference-template-topic-card,
.reference-template-preview-card,
.reference-template-network-card {
  border-radius: 30px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 252, 0.96));
  box-shadow: 0 16px 35px rgba(8, 23, 46, 0.08);
}

.reference-category-card,
.reference-template-network-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.45rem;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.reference-category-card:hover,
.reference-category-card:focus-visible,
.reference-template-network-card:hover,
.reference-template-network-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(8, 23, 46, 0.14);
}

.reference-category-card:focus-visible,
.reference-template-network-card:focus-visible {
  outline: 2px solid rgba(236, 146, 8, 0.38);
  outline-offset: 3px;
}

.reference-category-card p,
.reference-template-network-card p {
  margin: 0;
  color: rgba(16, 35, 63, 0.76);
  line-height: 1.55;
}

.reference-category-card h3,
.reference-template-network-card h3,
.reference-template-step h3,
.reference-template-topic-card h3,
.reference-template-preview-card h3 {
  margin: 0;
  color: #0e2746;
  font-size: 1.22rem;
  line-height: 1.2;
}

.reference-category-card-tag,
.reference-template-step-tag,
.reference-template-network-tag {
  width: fit-content;
  border-radius: 999px;
  background: rgba(236, 146, 8, 0.12);
  color: #bf7b10;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.34rem 0.68rem;
}

.reference-category-card-link {
  margin-top: auto;
  color: #0e2746;
  font-weight: 800;
}

.reference-template-step,
.reference-template-topic-card,
.reference-template-preview-card {
  padding: 1.35rem 1.3rem 1.4rem;
}

.reference-template-step p,
.reference-template-topic-card p,
.reference-template-preview-card p {
  margin: 0.8rem 0 0;
  color: rgba(16, 35, 63, 0.76);
  line-height: 1.6;
}

.reference-template-quickfacts,
.reference-template-bullet-list {
  display: grid;
  gap: 0.72rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.reference-template-quickfacts li,
.reference-template-bullet-list li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(16, 35, 63, 0.78);
  line-height: 1.58;
}

.reference-template-quickfacts li::before,
.reference-template-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(236, 146, 8, 0.92);
  box-shadow: 0 0 0 5px rgba(236, 146, 8, 0.12);
}

.reference-template-preview-card img {
  width: 100%;
  height: clamp(210px, 22vw, 270px);
  border-radius: 22px;
  object-fit: cover;
}

.reference-template-preview-card p + p {
  margin-top: 0.55rem;
}

.page-referenzen-template .page-hero .container {
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.94), rgba(24, 60, 101, 0.84));
}

.page-referenzen-template.page-referenz-stickerei .page-hero .container {
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.92), rgba(24, 60, 101, 0.78)),
    url("../images/pages/stickerei/stickerei-referenzen-hero-illustration.webp") center / cover no-repeat;
}

.page-referenzen-template.page-referenz-digitaldruck .page-hero .container {
  background:
    linear-gradient(130deg, rgba(8, 23, 46, 0.92), rgba(24, 60, 101, 0.78)),
    url("../images/pages/digitaldruck/digitaldruck-hero-textildruck.webp") center / cover no-repeat;
}

.page-digitaldruck .stickerei-hero-copy-text {
  max-width: 42ch;
  margin-top: 1.05rem;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.45;
}

.page-digitaldruck #digitaldruck-quality-title span {
  color: #f28f09;
}

.page-stickerei #stickerei-quality-title span {
  color: #f28f09;
}

.page-stickerei:not(.page-digitaldruck) .stickerei-hero-copy-text {
  max-width: 40ch;
  margin-top: 1.05rem;
  font-size: clamp(1.08rem, 1.38vw, 1.2rem);
  line-height: 1.45;
}

.page-referenzen-template .references-final-cta-section {
  padding-top: 1.2rem;
}

.page-referenzen-template .references-final-cta {
  width: var(--layout-width);
  max-width: 100%;
  margin: 0 auto;
}

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

  .reference-template-topic-grid,
  .reference-template-preview-grid,
  .reference-template-network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .breadcrumb-nav {
    margin-top: 0.85rem;
  }

  .page-referenzen .reference-category-hub-head h2,
  .page-referenzen-template .reference-template-section-head h2 {
    font-size: clamp(1.84rem, 8vw, 2.34rem);
  }

  .reference-category-grid,
  .reference-template-grid,
  .reference-template-topic-grid,
  .reference-template-preview-grid,
  .reference-template-network-grid {
    grid-template-columns: 1fr;
  }

  .reference-category-card,
  .reference-template-step,
  .reference-template-topic-card,
  .reference-template-preview-card,
  .reference-template-network-card {
    border-radius: 24px;
  }

  .reference-template-preview-card img {
    height: 220px;
    border-radius: 18px;
  }
}

.page-ablauf .ablauf-process-shell,
.page-ablauf .faq-shell,
.page-ablauf .ablauf-final-cta,
.page-referenzen .references-gallery-shell,
.page-referenzen .reference-info-section .split-grid,
.page-referenzen .reviews-shell,
.page-referenzen .references-final-cta {
  width: var(--layout-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ================= REFERENZEN.HTML ================= */
.page-referenzen .references-gallery-section {
  padding-top: 4.2rem;
  background: #ffffff;
}

.page-referenzen .references-gallery-shell {
  display: grid;
  gap: 2.4rem;
}

.page-referenzen .references-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.page-referenzen .references-gallery-head .services-kicker {
  margin: 0 0 0.32rem;
}

.page-referenzen .references-gallery-head h2 {
  margin: 0;
  max-width: 760px;
  color: #171b24;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.04;
}

.page-referenzen .references-gallery-head h2 span {
  color: #ec9208;
}

.page-referenzen .references-gallery-intro {
  justify-self: end;
  max-width: 420px;
  margin: 0;
  padding-top: 1.08rem;
  color: rgba(47, 53, 69, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: right;
}

.page-referenzen .reference-project-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(440px, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
}

.page-referenzen .reference-project-card-accent {
  border-color: rgba(255, 255, 255, 0.12);
  background: #10233f;
  color: #ffffff;
}

.page-referenzen .reference-project-card-accent .reference-project-copy h3,
.page-referenzen .reference-project-card-accent .reference-project-copy > p:not(.reference-project-pill),
.page-referenzen .reference-project-card-accent .reference-project-tags span {
  color: rgba(255, 255, 255, 0.9);
}

.page-referenzen .reference-project-card-accent .reference-project-copy h3 {
  color: #ffffff;
}

.page-referenzen .reference-project-pill {
  width: fit-content;
  margin: 0 0 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(236, 146, 8, 0.16);
  color: #c47a08;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-referenzen .reference-project-copy h3 {
  max-width: 430px;
  color: #171b24;
  font-size: clamp(1.85rem, 3.05vw, 2.85rem);
  line-height: 1.04;
  text-wrap: balance;
}

.page-referenzen .reference-project-copy {
  padding-left: 0.35rem;
}

.page-referenzen .reference-project-copy > p:not(.reference-project-pill) {
  max-width: 420px;
  margin: 0.9rem 0 0;
  color: rgba(47, 53, 69, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.page-referenzen .reference-project-tags {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.1rem;
  row-gap: 0.85rem;
  max-width: 420px;
}

.page-referenzen .reference-project-tags span {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(47, 53, 69, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.page-referenzen .reference-project-tags img {
  width: 38px;
  height: 38px;
  padding: 0.55rem;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(236, 146, 8, 0.12);
  filter: brightness(0) saturate(100%) invert(13%) sepia(36%) saturate(1238%) hue-rotate(179deg) brightness(89%) contrast(94%);
}

.page-referenzen .reference-project-card-accent .reference-project-tags img {
  background: rgba(255, 255, 255, 0.14);
  filter: brightness(0) saturate(100%) invert(100%);
}

.page-referenzen .reference-gallery {
  position: relative;
}

.page-referenzen .reference-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 14px;
  display: block;
  overflow: hidden;
  background: rgba(236, 239, 243, 0.9);
  cursor: zoom-in;
}

.page-referenzen .reference-gallery-main::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(8, 23, 46, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.page-referenzen .reference-gallery-main::before {
  content: "";
  position: absolute;
  left: calc(50% + 3px);
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #10233f;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.page-referenzen .reference-gallery-main.is-video-active::before,
.page-referenzen .reference-gallery-main.is-video-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.page-referenzen .reference-gallery-main img,
.page-referenzen .reference-gallery-main video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-referenzen .reference-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 54px;
  border: 0;
  border-radius: 0;
  display: none;
  place-items: center;
  background: transparent;
  color: #ffffff;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(8, 23, 46, 0.75);
  transform: translateY(-50%);
  pointer-events: none;
}

.page-referenzen .reference-gallery-prev {
  left: 0.7rem;
}

.page-referenzen .reference-gallery-next {
  right: 0.7rem;
}

.page-referenzen .reference-gallery-thumbs {
  position: relative;
  margin-top: 0.85rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72px, 1fr);
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.05rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.page-referenzen .reference-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.page-referenzen .reference-gallery-thumbs button {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(236, 239, 243, 0.9);
  cursor: pointer;
  opacity: 0.62;
  scroll-snap-align: center;
}

.page-referenzen .reference-video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #10233f;
  font-size: 0.78rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(8, 23, 46, 0.2);
}

.page-referenzen .reference-gallery-thumbs button.is-active {
  border-color: #ec9208;
  opacity: 1;
}

.page-referenzen .reference-gallery-thumbs img,
.page-referenzen .reference-gallery-thumbs video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reference-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 2rem;
  display: none;
  place-items: center;
  background: rgba(8, 23, 46, 0.86);
}

.reference-lightbox.is-open {
  display: grid;
}

.reference-lightbox img,
.reference-lightbox video {
  max-width: var(--layout-width);
  max-height: 82vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.reference-lightbox-arrow {
  position: fixed;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-shadow: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.reference-lightbox-arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.reference-lightbox-arrow:hover,
.reference-lightbox-arrow:focus-visible {
  transform: translateY(-50%) scale(1.02);
}

.reference-lightbox-arrow[disabled] {
  opacity: 0.38;
  cursor: default;
  transform: translateY(-50%);
}

.reference-lightbox-prev {
  left: 1.2rem;
}

.reference-lightbox-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.5 2.5L5 8l5.5 5.5' stroke='white' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reference-lightbox-next {
  right: 1.2rem;
}

.reference-lightbox-next::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.5 2.5L11 8l-5.5 5.5' stroke='white' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reference-lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .reference-lightbox {
    padding: 1rem;
  }

  .reference-lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }

  .reference-lightbox-prev {
    left: 0.75rem;
  }

  .reference-lightbox-next {
    right: 0.75rem;
  }

  .page-referenzen .references-gallery-head {
    grid-template-columns: 1fr;
  }

  .page-referenzen .references-gallery-intro {
    justify-self: start;
    text-align: left;
  }

  .page-referenzen .reference-project-card {
    grid-template-columns: 1fr;
  }

  .page-referenzen .reference-project-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .page-referenzen .reference-project-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .page-referenzen .reference-project-tags {
    grid-template-columns: 1fr;
  }

  .page-referenzen .reference-gallery-arrow {
    top: calc(50% - 30px);
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .page-referenzen .reference-gallery-prev {
    left: 0.5rem;
  }

  .page-referenzen .reference-gallery-next {
    right: 0.5rem;
  }
}

@media (max-width: 640px) {
  .page-index .clients-row {
    padding: 1.8rem 0;
  }

  .page-index .partner-section {
    padding-top: 0;
  }

  .page-stickerei .stickerei-quality-copy,
  .page-stickerei .stickerei-detail-copy,
  .page-stickerei .stickerei-steps-copy,
  .page-stickerei .stickerei-customer-head,
  .page-stickerei .faq-head,
  .page-referenzen .references-gallery-head,
  .page-ablauf .ablauf-process-head,
  .page-ablauf .faq-head {
    padding-left: 0.38rem;
    padding-right: 0.12rem;
  }

  .reviews-kicker,
  .partner-kicker,
  .page-ueber-uns .about-who-copy .services-kicker,
  .page-stickerei .stickerei-benefits-head .services-kicker,
  .page-stickerei .stickerei-customer-head .services-kicker,
  .page-leistungen .leistungen-showcase-head .services-kicker,
  .page-leistungen .leistungen-info-copy .services-kicker,
  .page-stickerei .faq-kicker,
  .page-referenzen .references-gallery-head .services-kicker,
  .page-ablauf .ablauf-process-head .services-kicker,
  .page-ablauf .faq-kicker {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .page-referenzen .page-hero .container {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
  }

  .page-referenzen .page-hero .eyebrow {
    margin-bottom: 0.5rem;
    padding: 0.24rem 0.62rem;
    font-size: 0.78rem;
    transform: translateY(-0.18rem);
  }

  .page-referenzen .page-hero h1 {
    max-width: none;
    font-size: clamp(1.72rem, 7.4vw, 2.12rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .page-referenzen .page-hero p {
    max-width: none;
    margin-top: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .page-referenzen .referenzen-hero-copy {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }

  .page-referenzen .referenzen-hero-copy-line {
    display: block;
    white-space: nowrap;
  }

  .page-referenzen .referenzen-hero-copy-line + .referenzen-hero-copy-line {
    margin-top: 0.08rem;
  }

  .page-referenzen .page-hero p br {
    display: none;
  }

.page-index .partner-section,
.page-index .stats-band,
.page-index .services,
.page-index .workflow,
  .page-index .final-cta,
  .page-index .reviews,
  .page-index .references,
  .page-index .faq {
    padding-top: 1.15rem;
    padding-bottom: 0.95rem;
  }

  .page-index .stats-band {
    padding-top: 1.3rem;
    padding-bottom: 0.85rem;
  }

  .page-index .partner-kicker,
  .page-index .services-kicker,
  .page-index .faq-kicker {
    display: none;
  }

  .page-index .partner-title,
  .page-index .faq-title {
    margin-top: 0;
    font-size: clamp(1.72rem, 7.4vw, 2.08rem);
    line-height: 1.04;
  }

  .page-index .services-title {
    font-size: clamp(1.46rem, 6.5vw, 1.78rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
  }

  .page-index .final-cta-title,
  .page-index .references .section-title-light {
    font-size: clamp(1.82rem, 7.6vw, 2.28rem);
    line-height: 1.04;
  }

  .page-index .reviews {
    padding-top: 1.2rem;
    padding-bottom: 1rem;
  }

  .page-index .reviews-kicker {
    display: block;
  }

  .page-index .reviews-title {
    margin-top: 0.55rem;
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    line-height: 1.02;
  }

  .page-index .review-copy,
  .page-index .reviews-footer p {
    font-size: var(--index-flow-size);
    line-height: var(--index-flow-line);
  }

  .page-index .partner-kicker {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .page-index .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 0.9rem;
    padding: 1.2rem 0;
  }

  .page-index .stat-value {
    font-size: clamp(2.25rem, 7.2vw, 2.8rem);
  }

  .page-index .stat-label {
    font-size: 0.96rem;
  }

  .page-index .ref-body p,
  .page-index .references-footer p {
    font-size: var(--index-flow-size);
    line-height: var(--index-flow-line);
  }

  .page-index .references-footer p {
    margin-inline: auto;
    text-align: center;
  }

  .page-index .ref-body {
    min-height: 8.7rem;
    display: grid;
    align-content: start;
    grid-template-rows: auto auto;
  }

  .page-index .ref-body h3 {
    max-width: none;
    min-height: 2.14em;
    font-size: 1.34rem;
    line-height: 1.07;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .page-index .ref-body p {
    max-width: none;
    min-height: 2.2em;
    margin-top: 0.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .page-index .workflow-overview {
    margin-top: 0.3rem;
  }

  .page-index .references .ref-grid,
  .page-index .faq-list {
    margin-top: 1.2rem;
  }

  .page-index .reviews-slider {
    margin-top: 2rem;
  }

  .page-ueber-uns {
    --ueber-uns-flow-size: 0.94rem;
    --ueber-uns-flow-line: 1.18;
  }

  .page-ueber-uns .topbar {
    position: fixed;
    inset: 0 0 auto 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .page-ueber-uns .topbar.is-scrolled,
  .page-ueber-uns .topbar.is-menu-open {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(8, 23, 46, 0.08);
  }

  .page-ueber-uns .page-main {
    margin-top: 0;
  }

  .page-ueber-uns .about-hero {
    min-height: auto;
    background-color: #f4f1e7;
    background:
      radial-gradient(circle at 14% 18%, rgba(220, 231, 247, 0.82) 0%, rgba(220, 231, 247, 0.18) 30%, rgba(220, 231, 247, 0) 48%),
      radial-gradient(circle at 86% 16%, rgba(255, 236, 163, 0.78) 0%, rgba(255, 236, 163, 0.16) 34%, rgba(255, 236, 163, 0) 54%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 248, 220, 0.12) 100%),
      linear-gradient(90deg, #eef3fb 0%, #f7f4eb 52%, #fff1ba 100%);
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    overflow: hidden;
    padding: calc(var(--header-offset) + 0.22rem) 0 0;
  }

  .page-ueber-uns .about-hero .hero-media,
  .page-ueber-uns .about-hero .hero-layer,
  .page-ueber-uns .about-hero .hero-benefits {
    display: none;
  }

  .page-ueber-uns .about-hero .hero-content {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 1.08rem 0.46rem 1.55rem;
    grid-template-areas:
      "main"
      "scroll";
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    row-gap: 0.14rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
    isolation: isolate;
    color: #1e2430;
  }

  .page-ueber-uns .about-hero-main {
    width: 100%;
    max-width: 21rem;
    min-height: 0;
    display: grid;
    justify-self: center;
    justify-items: center;
    padding: 0;
    text-align: center;
    gap: 0.16rem;
  }

  .page-ueber-uns .about-hero .eyebrow {
    display: none;
  }

  .page-ueber-uns .about-hero-main > h1:not(.about-hero-title-mobile) {
    display: none;
  }

  .page-ueber-uns .about-hero-title-mobile {
    display: block;
    width: min(100%, 18.9rem);
    max-width: none;
    margin: 0 auto;
    font-family: "Readex Pro", sans-serif;
    font-weight: 800;
    font-size: var(--mobile-hero-title-size);
    line-height: var(--mobile-hero-title-line);
    letter-spacing: -0.02em;
    color: #051430;
    text-align: center;
  }

  .page-ueber-uns .about-hero-title-mobile-line {
    display: block;
    width: 100%;
  }

  .page-ueber-uns .about-hero-title-mobile-line:last-child {
    display: block;
    width: 100%;
  }

  .page-ueber-uns .about-hero .hero-copy {
    max-width: none;
    width: min(100%, 19.5rem);
    margin: 0.28rem auto 0;
    justify-self: center;
    color: rgba(30, 36, 48, 0.74);
    font-size: var(--ueber-uns-flow-size);
    line-height: var(--ueber-uns-flow-line);
    text-wrap: pretty;
    text-align: center;
  }

  .page-ueber-uns .about-hero-main > .hero-copy:not(.about-hero-copy-mobile-standalone) {
    display: none;
  }

  .page-ueber-uns .about-hero-copy-mobile-standalone {
    display: block;
    width: min(100%, 19.5rem);
  }

  .page-ueber-uns .about-hero-mobile-visual {
    display: block;
    width: 100%;
    margin: calc(0.08rem + 22px) 0 -1.12rem;
    position: relative;
    justify-self: center;
  }

  .page-ueber-uns .about-hero-mobile-visual img {
    display: block;
    position: relative;
    z-index: 1;
    width: min(100%, 272px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 18px 22px rgba(8, 23, 46, 0.16));
  }

  .page-ueber-uns .about-hero-mobile-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 0;
    width: 15rem;
    height: 15rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 251, 236, 0.72) 48%, rgba(255, 255, 255, 0) 74%);
  }

  .page-ueber-uns .about-hero-mobile-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    width: 9.2rem;
    height: 0.8rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(8, 23, 46, 0.14);
    filter: blur(10px);
  }

  .page-ueber-uns .hero-actions {
    width: min(100%, 15.8rem);
    margin: -1rem auto 0;
    padding-top: 0;
    display: grid;
    justify-self: center;
    justify-items: center;
    gap: 0.42rem;
    position: relative;
    z-index: 3;
  }

  .page-ueber-uns .hero-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 42px;
    border-radius: 999px;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.82rem 1rem;
  }

  .page-ueber-uns .hero-actions .btn-accent {
    background: var(--gold-600);
    box-shadow: 0 12px 18px rgba(201, 131, 20, 0.22);
  }

  .page-ueber-uns .hero-actions .btn-accent:hover,
  .page-ueber-uns .hero-actions .btn-accent:focus-visible {
    background: var(--gold-hover-fill);
  }

  .page-ueber-uns .btn-outline-whatsapp {
    border-color: rgba(35, 56, 95, 0.34);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 16px rgba(8, 23, 46, 0.06);
  }

  .page-ueber-uns .hero-scroll-indicator {
    justify-self: center;
    margin: 0.48rem auto 0.12rem;
    width: 40px;
    height: 18px;
    opacity: 0.86;
  }

  .page-ueber-uns .hero-scroll-indicator span {
    width: 14px;
    height: 14px;
    border-right-color: rgba(35, 56, 95, 0.72);
    border-bottom-color: rgba(35, 56, 95, 0.72);
  }

  .page-ueber-uns .about-stats {
    padding: 2rem 0 1.7rem;
  }

  .page-ueber-uns .partner-section,
  .page-ueber-uns .about-who,
  .page-ueber-uns .about-overview,
  .page-ueber-uns .about-story,
  .page-ueber-uns .sectors,
  .page-ueber-uns .references,
  .page-ueber-uns .reviews,
  .page-ueber-uns .final-cta {
    padding-top: 1.2rem;
    padding-bottom: 1rem;
  }

  .page-ueber-uns .about-who-copy p:not(.services-kicker),
  .page-ueber-uns .about-who-card p:last-child,
  .page-ueber-uns .partner-card p,
  .page-ueber-uns .about-overview-text,
  .page-ueber-uns .about-overview-card p,
  .page-ueber-uns .sectors-quote,
  .page-ueber-uns .industry-card p,
  .page-ueber-uns .sectors-footer p,
  .page-ueber-uns .about-story-panel p,
  .page-ueber-uns .about-story-stats p,
  .page-ueber-uns .ref-body p,
  .page-ueber-uns .references-footer p,
  .page-ueber-uns .review-copy,
  .page-ueber-uns .reviews-footer p,
  .page-ueber-uns .final-cta-shell > p {
    font-size: var(--ueber-uns-flow-size);
    line-height: var(--ueber-uns-flow-line);
  }

  .page-ueber-uns .ref-body {
    min-height: 8.7rem;
    display: grid;
    align-content: start;
    grid-template-rows: auto auto;
  }

  .page-ueber-uns .ref-body h3 {
    max-width: none;
    min-height: 2.14em;
    font-size: 1.34rem;
    line-height: 1.07;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .page-ueber-uns .ref-body p {
    max-width: none;
    min-height: 2.2em;
    margin-top: 0.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .page-referenzen .references-gallery-section {
    padding-top: 1.35rem;
  }

  .page-referenzen .references-gallery-shell {
    gap: 1.4rem;
  }

  .page-referenzen .references-gallery-head {
    padding-left: 0.38rem;
    padding-right: 0.12rem;
    gap: 0.95rem;
  }

  .page-referenzen .references-gallery-head .services-kicker {
    margin-bottom: 0.28rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .page-referenzen .references-gallery-head h2 {
    max-width: 11ch;
    font-size: clamp(1.74rem, 7.8vw, 2.18rem);
    line-height: 1.04;
  }

  .page-referenzen .references-gallery-intro {
    max-width: none;
    width: 100%;
    padding-top: 0;
    font-size: 0.96rem;
    line-height: 1.45;
    justify-self: stretch;
    white-space: normal;
  }

  .page-referenzen .reference-project-card {
    padding: 1.1rem 0.95rem 0.95rem;
    border-radius: 28px;
    gap: 1.1rem;
    overflow: hidden;
  }

  .page-referenzen .reference-project-copy {
    min-width: 0;
    padding-left: 0;
  }

  .page-referenzen .reference-project-pill {
    margin-bottom: 0.7rem;
  }

  .page-referenzen .reference-project-copy h3 {
    max-width: 9ch;
    font-size: clamp(1.56rem, 7vw, 2rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .page-referenzen .reference-project-copy > p:not(.reference-project-pill) {
    max-width: none;
    width: 100%;
    margin-top: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .page-referenzen .reference-project-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.4rem;
    row-gap: 0.72rem;
    max-width: none;
    margin-top: 1.05rem;
  }

  .page-referenzen .reference-project-tags span {
    min-width: 0;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.24;
    overflow-wrap: anywhere;
  }

  .page-referenzen .reference-project-tags img {
    width: 40px;
    height: 40px;
    padding: 0.58rem;
    display: block;
    background: #e7edf7;
    filter: none;
  }

  .page-referenzen .reference-project-card-accent .reference-project-tags img {
    background: rgba(255, 255, 255, 0.14);
    filter: brightness(0) saturate(100%) invert(100%);
  }

  .page-referenzen .reference-gallery {
    min-width: 0;
  }

  .page-referenzen .reference-gallery-main {
    aspect-ratio: 1 / 1.02;
    border-radius: 18px;
  }

  .page-referenzen .reference-gallery-thumbs {
    grid-auto-columns: minmax(58px, 1fr);
    gap: 0.45rem;
    margin-top: 0.7rem;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .page-referenzen .reference-gallery-thumbs button {
    border-radius: 10px;
  }

  .page-referenzen .reference-info-section .split-grid {
    gap: 0.9rem;
  }

  .page-referenzen .reference-info-card {
    padding: 1rem 1.28rem 0.95rem 1.28rem;
  }

  .page-referenzen .reference-info-card h2 {
    font-size: clamp(1.52rem, 6.8vw, 1.92rem);
  }

  .page-referenzen .reference-info-lead {
    font-size: 0.96rem;
    line-height: 1.45;
    margin-bottom: 0.48rem;
  }

  .page-referenzen .reference-info-list {
    margin-top: 1.45rem;
    gap: 0.55rem;
  }

  .page-referenzen .reference-info-list li {
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .page-referenzen .reference-info-list li::before {
    top: 0.58rem;
  }

  .page-referenzen .references-final-cta {
    padding: 1.15rem 0.95rem 1rem;
    border-radius: 28px;
  }

  .page-referenzen .references-final-cta-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.95rem;
  }

  .page-referenzen .references-final-cta h2 {
    font-size: clamp(1.82rem, 7.6vw, 2.28rem);
    line-height: 1.04;
  }

  .page-referenzen .references-final-cta p {
    max-width: none;
    margin: 0.7rem 0 1.2rem;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .page-referenzen .references-final-cta .btn {
    min-width: 0;
  }
}

.page-referenzen .cards-grid .card {
  border-top: 4px solid rgba(38, 78, 121, 0.7);
}

.page-referenzen .reference-info-card {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 253, 0.95));
}

.page-referenzen .reference-info-card-soft {
  box-shadow:
    0 14px 30px rgba(8, 23, 46, 0.1),
    inset 0 0 0 1px rgba(16, 35, 63, 0.05);
}

.page-referenzen .reference-info-card-warm {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 253, 0.95));
  box-shadow:
    0 14px 30px rgba(8, 23, 46, 0.1),
    inset 0 0 0 1px rgba(16, 35, 63, 0.05);
}

.page-referenzen .reference-info-kicker {
  margin-bottom: 0.75rem;
  color: rgba(74, 92, 126, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.page-referenzen .reference-info-lead {
  margin: 0;
  color: rgba(31, 43, 66, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-referenzen .reference-info-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.page-referenzen .reference-info-list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(60, 65, 79, 0.86);
  line-height: 1.5;
}

.page-referenzen .reference-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ec9208;
  box-shadow: 0 0 0 4px rgba(236, 146, 8, 0.12);
}

.page-referenzen .references-final-cta-section {
  padding: 2rem 0;
}

.page-referenzen .references-final-cta {
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #10233f;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 22px 55px rgba(16, 35, 63, 0.08);
}

.page-referenzen .references-final-cta-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.page-referenzen .references-final-cta-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(66%) sepia(88%) saturate(1009%) hue-rotate(359deg) brightness(96%) contrast(90%);
}

.page-referenzen .references-final-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.page-referenzen .references-final-cta p {
  max-width: 700px;
  margin: 0.75rem auto 1.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.45;
}

.page-referenzen .references-final-cta .final-cta-actions {
  margin-top: 0.2rem;
}

.page-referenzen .references-final-cta .btn {
  min-width: 220px;
}

.page-referenzen .references-final-cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-referenzen .references-final-cta .btn-outline-light:hover,
.page-referenzen .references-final-cta .btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(8, 23, 46, 0.18);
}

.page-referenzen .reviews-footer .reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 360px;
  min-height: 56px;
  padding: 0.9rem 1.8rem;
  border: 1.5px solid rgba(201, 128, 23, 0.9);
  border-radius: 999px;
  background: transparent;
  color: #1b2c4f;
  box-shadow: none;
}

.page-referenzen .reviews-footer .reviews-cta:hover,
.page-referenzen .reviews-footer .reviews-cta:focus-visible {
  background: rgba(201, 128, 23, 0.08);
  border-color: rgba(201, 128, 23, 1);
}

.page-stickerei .reviews-footer .reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 360px;
  min-height: 56px;
  padding: 0.9rem 1.8rem;
  border: 1.5px solid rgba(201, 128, 23, 0.9);
  border-radius: 999px;
  background: transparent;
  color: #1b2c4f;
  box-shadow: none;
}

.page-stickerei .reviews-footer .reviews-cta:hover,
.page-stickerei .reviews-footer .reviews-cta:focus-visible {
  background: rgba(201, 128, 23, 0.08);
  border-color: rgba(201, 128, 23, 1);
}

@media (max-width: 720px) {
  .reviews-arrow-next[disabled] {
    display: none;
  }

  .page-referenzen .reviews-footer .reviews-cta {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    background: #d78c14;
    color: #ffffff;
    border-color: #d78c14;
  }

  .page-referenzen .reviews-footer .reviews-cta:hover,
  .page-referenzen .reviews-footer .reviews-cta:focus-visible {
    background: #bf7b10;
    color: #ffffff;
    border-color: #bf7b10;
  }

  .page-stickerei .reviews-footer .reviews-cta {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    background: #d78c14;
    color: #ffffff;
    border-color: #d78c14;
  }

  .page-stickerei .reviews-footer .reviews-cta:hover,
  .page-stickerei .reviews-footer .reviews-cta:focus-visible {
    background: #bf7b10;
    color: #ffffff;
    border-color: #bf7b10;
  }
}

.page-referenzen .references-final-cta-note {
  margin: 0.2rem auto 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================= ABLAUF.HTML ===================== */
.page-ablauf .timeline-item {
  background: linear-gradient(180deg, #ffffff, #f9f7f4);
}

.page-ablauf .ablauf-process {
  padding: 4rem 0 2.5rem;
  background: #ffffff;
}

.page-ablauf .ablauf-process-shell {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
  overflow: hidden;
}

.page-ablauf .ablauf-process-head {
  margin: 0 0 clamp(2.4rem, 5vw, 4.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.page-ablauf .ablauf-process-head h2 {
  margin-bottom: 0.55rem;
  color: #171b24;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.page-ablauf .ablauf-process-head h2 span {
  color: #ec9208;
}

.page-ablauf .ablauf-process-head > p {
  justify-self: end;
  max-width: 390px;
  margin: 0;
  padding-top: 0.6rem;
  text-align: right;
  color: rgba(47, 53, 69, 0.78);
  font-weight: 700;
  line-height: 1.4;
}

.page-ablauf .ablauf-steps-map {
  position: relative;
  min-height: 990px;
  margin-top: 0.4rem;
}

.page-ablauf .ablauf-step {
  position: absolute;
  width: min(460px, 42%);
  min-height: 122px;
  padding: 1.15rem 1.35rem;
  border-radius: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 1.05rem;
  align-items: center;
  text-align: left;
  background: rgba(236, 239, 243, 0.86);
  box-shadow: 0 18px 38px rgba(17, 34, 61, 0.07);
  overflow: visible;
}

.page-ablauf .ablauf-step strong {
  color: #ec9208;
  font-family: "Readex Pro", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 0.85;
  font-weight: 800;
}

.page-ablauf .ablauf-step div {
  max-width: 310px;
  text-align: left;
}

.page-ablauf .ablauf-step h3 {
  margin-bottom: 0.25rem;
  color: #171b24;
  font-size: 1.2rem;
}

.page-ablauf .ablauf-step p {
  margin: 0;
  color: rgba(47, 53, 69, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
  text-wrap: pretty;
  hyphens: auto;
}

.page-ablauf .ablauf-step img {
  position: absolute;
  top: 50%;
  right: -64px;
  width: 118px;
  height: 118px;
  display: block;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 12px 16px rgba(8, 23, 46, 0.12));
  pointer-events: none;
}

.page-ablauf .ablauf-step-2 img {
  right: auto;
  left: -112px;
}

.page-ablauf .ablauf-step-6 img {
  right: auto;
  left: -98px;
}

.page-ablauf .ablauf-step-4 img {
  right: auto;
  left: -104px;
}

.page-ablauf .ablauf-step-1 img,
.page-ablauf .ablauf-step-3 img,
.page-ablauf .ablauf-step-5 img,
.page-ablauf .ablauf-step-7 img {
  right: -108px;
}

.page-ablauf .ablauf-step-3 img,
.page-ablauf .ablauf-step-5 img,
.page-ablauf .ablauf-step-7 img {
  right: -94px;
}

.page-ablauf .ablauf-step-3 img,
.page-ablauf .ablauf-step-5 img {
  right: -90px;
}

.page-ablauf .ablauf-step-1 {
  top: 0;
  left: 0;
}

.page-ablauf .ablauf-step-2 {
  top: 145px;
  right: 0;
}

.page-ablauf .ablauf-step-3 {
  top: 290px;
  left: 0;
}

.page-ablauf .ablauf-step-4 {
  top: 435px;
  right: 0;
}

.page-ablauf .ablauf-step-5 {
  top: 580px;
  left: 0;
}

.page-ablauf .ablauf-step-6 {
  top: 725px;
  right: 0;
}

.page-ablauf .ablauf-step-7 {
  top: 870px;
  left: 0;
}

.page-ablauf .ablauf-flow-arrow {
  position: absolute;
  width: 74px;
  height: 74px;
  background: url("../images/icons/ui/arrow.svg") center / contain no-repeat;
  opacity: 0.42;
}

.page-ablauf .ablauf-flow-arrow-1 {
  top: 96px;
  left: 47%;
  transform: rotate(12deg);
}

.page-ablauf .ablauf-flow-arrow-2 {
  top: 220px;
  left: 38.5%;
  transform: scaleX(-1) rotate(18deg);
}

.page-ablauf .ablauf-flow-arrow-3 {
  top: 386px;
  left: 47%;
  transform: rotate(12deg);
}

.page-ablauf .ablauf-flow-arrow-4 {
  top: 510px;
  left: 38.5%;
  transform: scaleX(-1) rotate(18deg);
}

.page-ablauf .ablauf-flow-arrow-5 {
  top: 676px;
  left: 47%;
  transform: rotate(12deg);
}

.page-ablauf .ablauf-flow-arrow-6 {
  top: 800px;
  left: 38.5%;
  transform: scaleX(-1) rotate(18deg);
}

.page-ablauf .ablauf-process-cta {
  margin: 2.6rem auto 0;
  display: flex;
  width: fit-content;
}

.page-ablauf .ablauf-process-facts {
  margin: 3rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(16, 35, 63, 0.1);
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.8rem 2rem;
  flex-wrap: wrap;
  color: rgba(47, 53, 69, 0.72);
  font-weight: 800;
}

.page-ablauf .ablauf-process-facts li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 2rem;
  border-radius: 999px;
  display: inline-block;
  background: rgba(47, 53, 69, 0.42);
  vertical-align: middle;
}

.page-ablauf .ablauf-final-cta-section {
  padding: 2rem 0 4rem;
}

.page-ablauf .ablauf-final-cta {
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #10233f;
  color: #ffffff;
  box-shadow: 0 22px 55px rgba(16, 35, 63, 0.08);
}

.page-ablauf .ablauf-final-cta-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.page-ablauf .ablauf-final-cta-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 0.82;
}

.page-ablauf .ablauf-final-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.page-ablauf .ablauf-final-cta p {
  max-width: 760px;
  margin: 0.75rem auto 1.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.45;
}

.page-ablauf .faq {
  background: #ffffff;
}

.page-ablauf .faq-shell {
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 42px rgba(17, 34, 61, 0.06),
    0 2px 8px rgba(8, 23, 46, 0.03);
}

@media (max-width: 900px) {
  .page-ablauf .ablauf-process-head {
    grid-template-columns: 1fr;
  }

  .page-ablauf .ablauf-process-head > p {
    justify-self: start;
    text-align: left;
  }

  .page-ablauf .ablauf-steps-map {
    min-height: 0;
    display: grid;
    gap: 1rem;
  }

  .page-ablauf .ablauf-step {
    position: relative;
    inset: auto;
    width: 100%;
    padding-right: 8.5rem;
  }

  .page-ablauf .ablauf-step img,
  .page-ablauf .ablauf-step-2 img,
  .page-ablauf .ablauf-step-4 img,
  .page-ablauf .ablauf-step-6 img {
    left: auto;
    right: 1.1rem;
    width: 92px;
    height: 92px;
  }

  .page-ablauf .ablauf-flow-arrow {
    display: none;
  }

}

@media (max-width: 620px) {
  .page-ablauf .ablauf-process-shell {
    border-radius: 24px;
  }

  .page-ablauf .ablauf-step {
    min-height: 150px;
    padding: 0.98rem 0.9rem 0.9rem 4.55rem;
  }

  .page-ablauf .ablauf-step strong {
    font-size: clamp(3.12rem, 13.2vw, 3.62rem);
    top: -0.72rem;
    left: calc(0.14rem + 20px);
  }

  .page-ablauf .ablauf-step img,
  .page-ablauf .ablauf-step-2 img,
  .page-ablauf .ablauf-step-4 img,
  .page-ablauf .ablauf-step-6 img {
    left: 0.55rem;
    bottom: 0.68rem;
    width: 64px;
    height: 64px;
  }

  .page-ablauf .ablauf-process-facts {
    justify-content: flex-start;
  }

  .page-ablauf .ablauf-process-facts li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-ablauf .page-hero .container {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
  }

  .page-ablauf .page-hero .eyebrow {
    margin-bottom: 0.5rem;
    padding: 0.24rem 0.62rem;
    font-size: 0.78rem;
    transform: translateY(-0.18rem);
  }

  .page-ablauf .page-hero h1 {
    max-width: 12.8ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.72rem, 7.4vw, 2.12rem);
    line-height: 1.04;
    text-wrap: balance;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .page-ablauf .ablauf-hero-title-line {
    display: block;
  }

  .page-ablauf .page-hero p {
    max-width: 31ch;
    width: auto;
    margin-top: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.42;
    text-wrap: pretty;
  }

  .page-ablauf .ablauf-process {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  .page-ablauf .ablauf-process-shell {
    padding: 1.15rem 0.95rem 1rem;
    border-radius: 28px;
  }

  .page-ablauf .ablauf-process-head {
    margin-bottom: 1.9rem;
    gap: 0.3rem;
  }

  .page-ablauf .ablauf-process-head .services-kicker {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .page-ablauf .ablauf-process-head h2 {
    margin-bottom: 0.08rem;
    max-width: 13.5ch;
    font-size: clamp(1.74rem, 7.8vw, 2.18rem);
    line-height: 1.04;
  }

  .page-ablauf .ablauf-process-head h2 span {
    white-space: nowrap;
  }

  .page-ablauf .ablauf-process-head > p {
    max-width: none;
    width: 100%;
    font-size: 0.96rem;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
  }

  .page-ablauf .ablauf-steps-map {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 0;
  }

  .page-ablauf .ablauf-step {
    display: block;
    position: relative;
    width: calc(100% - 4.4rem);
    max-width: 19.4rem;
    min-height: 0;
    padding: 1.06rem 1.18rem 0.92rem;
    border-radius: 24px;
    background: rgba(236, 239, 243, 0.96);
    box-shadow: 0 8px 18px rgba(17, 34, 61, 0.05);
    overflow: visible;
  }

  .page-ablauf .ablauf-step strong {
    position: absolute;
    top: -1.52rem;
    z-index: 2;
    padding: 0;
    font-size: clamp(3.76rem, 15vw, 4.62rem);
    line-height: 0.82;
    transform: none;
    text-shadow: 0 8px 18px rgba(236, 146, 8, 0.12);
  }

  .page-ablauf .ablauf-step div {
    max-width: none;
    min-width: 0;
    display: grid;
    gap: 0.48rem;
  }

  .page-ablauf .ablauf-step h3 {
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .page-ablauf .ablauf-step p {
    font-size: clamp(0.8rem, 3.4vw, 0.86rem);
    line-height: 1.4;
  }

  .page-ablauf .ablauf-step::after {
    content: "";
    position: absolute;
    bottom: -4.15rem;
    left: 50%;
    width: 64px;
    height: 64px;
    background: url("../images/icons/ui/arrow.svg") center / contain no-repeat;
    opacity: 0.38;
    pointer-events: none;
  }

  .page-ablauf .ablauf-step:last-of-type::after {
    display: none;
  }

  .page-ablauf .ablauf-step img,
  .page-ablauf .ablauf-step-2 img,
  .page-ablauf .ablauf-step-4 img,
  .page-ablauf .ablauf-step-6 img {
    position: absolute;
    bottom: 0.1rem;
    top: auto;
    width: 102px;
    height: 102px;
    margin-top: 0;
    transform: translateY(0.9rem);
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(15, 31, 58, 0.1));
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0.98) 58%, rgba(0, 0, 0, 0) 76%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0.98) 58%, rgba(0, 0, 0, 0) 76%);
  }

  .page-ablauf .ablauf-step-1,
  .page-ablauf .ablauf-step-3,
  .page-ablauf .ablauf-step-5,
  .page-ablauf .ablauf-step-7 {
    align-self: flex-end;
    padding-left: 5.75rem;
  }

  .page-ablauf .ablauf-step-2,
  .page-ablauf .ablauf-step-4,
  .page-ablauf .ablauf-step-6 {
    align-self: flex-start;
    padding-right: 5.75rem;
  }

  .page-ablauf .ablauf-step-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .page-ablauf .ablauf-step-1 strong,
  .page-ablauf .ablauf-step-3 strong,
  .page-ablauf .ablauf-step-5 strong,
  .page-ablauf .ablauf-step-7 strong {
    left: 1rem;
  }

  .page-ablauf .ablauf-step-2 strong,
  .page-ablauf .ablauf-step-4 strong,
  .page-ablauf .ablauf-step-6 strong {
    right: 1rem;
    left: auto;
  }

  .page-ablauf .ablauf-step-1 img,
  .page-ablauf .ablauf-step-3 img,
  .page-ablauf .ablauf-step-5 img,
  .page-ablauf .ablauf-step-7 img {
    left: -2.35rem;
    right: auto;
  }

  .page-ablauf .ablauf-step-5 img {
    bottom: 0;
    width: 96px;
    height: 96px;
    transform: translateY(1rem);
  }

  .page-ablauf .ablauf-step-2 img,
  .page-ablauf .ablauf-step-4 img,
  .page-ablauf .ablauf-step-6 img {
    right: -2.35rem;
    left: auto;
  }

  .page-ablauf .ablauf-step-1::after,
  .page-ablauf .ablauf-step-3::after,
  .page-ablauf .ablauf-step-5::after {
    left: 28%;
    transform: rotate(22deg);
  }

  .page-ablauf .ablauf-step-2::after,
  .page-ablauf .ablauf-step-4::after,
  .page-ablauf .ablauf-step-6::after {
    left: 66%;
    transform: scaleX(-1) rotate(18deg);
  }

  .page-ablauf .ablauf-flow-arrow {
    display: none;
  }

  .page-ablauf .ablauf-process-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1.2rem;
  }

  .page-ablauf .ablauf-process-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    margin-top: 1.4rem;
    padding-top: 1rem;
    gap: 0.7rem;
    font-size: 0.88rem;
  }

  .page-ablauf .ablauf-process-facts li {
    min-height: 100%;
    padding: 0.78rem 0.82rem 0.8rem;
    border: 1px solid rgba(16, 35, 63, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 243, 247, 0.95));
    box-shadow: none;
    color: rgba(16, 35, 63, 0.82);
    line-height: 1.28;
    font-weight: 600;
  }

  .page-ablauf .ablauf-process-facts li::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    margin-top: 0.38rem;
    border-radius: 0.12rem;
    flex: 0 0 auto;
    background: linear-gradient(180deg, #ec9208, #d48408);
    box-shadow: 0 0 0 0.18rem rgba(236, 146, 8, 0.12);
  }

.page-ablauf .ablauf-process-facts li::after {
  display: none;
}

  .page-ablauf .ablauf-process-fact-desktop {
    display: none;
  }

  .page-ablauf .ablauf-process-fact-mobile {
    display: block;
    white-space: normal;
  }

  .page-ablauf .ablauf-process-fact-mobile-line {
    display: block;
  }

  .page-ablauf .faq {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
  }

  .page-ablauf .faq-shell {
    padding: 1.15rem 0.95rem 1rem;
    border-radius: 28px;
  }

  .page-ablauf .faq-head {
    gap: 0.7rem;
  }

  .page-ablauf .faq-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .page-ablauf .faq-title {
    margin-top: 0.35rem;
    font-size: clamp(1.62rem, 7.2vw, 2.08rem);
    line-height: 1.05;
  }

  .page-ablauf .faq-intro {
    max-width: none;
    width: 100%;
    margin-right: 0;
    font-size: 0.96rem;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
  }

  .page-ablauf .faq-intro br {
    display: none;
  }

  .page-ablauf .faq-list {
    margin-top: 1.15rem;
    gap: 0.65rem;
  }

  .page-ablauf .faq-item {
    border-radius: 22px;
  }

  .page-ablauf .faq-question {
    gap: 0.8rem;
    padding: 0.98rem 1rem;
    font-size: 0.98rem;
    line-height: 1.26;
  }

  .page-ablauf .faq-icon {
    font-size: 1.28rem;
  }

  .page-ablauf .faq-answer {
    padding: 0.92rem 1rem 1.05rem;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .page-ablauf .references-final-cta,
  .page-ablauf .ablauf-final-cta {
    padding: 1.15rem 0.95rem 1rem;
    border-radius: 28px;
  }

  .page-ablauf .ablauf-final-cta-section {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
  }

  .page-ablauf .ablauf-final-cta-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.95rem;
  }

  .page-ablauf .ablauf-final-cta h2 {
    font-size: clamp(1.82rem, 7.6vw, 2.28rem);
    line-height: 1.04;
  }

  .page-ablauf .ablauf-final-cta p {
    max-width: none;
    margin: 0.7rem 0 1.2rem;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .page-ablauf .ablauf-final-cta .btn {
    width: 100%;
  }
}

/* ================= KONTAKT.HTML ==================== */
.page-kontakt .card {
  min-height: 100%;
}

.page-kontakt .contact-page-main {
  padding-top: 2rem;
  background: #ffffff;
}

.page-kontakt .contact-hero-panel {
  padding: 1rem 0 0;
}

.page-kontakt .contact-hero-shell {
  min-height: 230px;
  padding: clamp(2rem, 5vw, 4.2rem);
  border-radius: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(8, 23, 46, 0.68) 0%, rgba(8, 23, 46, 0.78) 100%),
    url("../images/pages/ueber-uns/ueber-uns-wer-wir-sind-textilien.webp");
  background-position: center, center 24%;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}

.page-kontakt .contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-kontakt .contact-hero-shell h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1;
}

.page-kontakt .contact-layout-section {
  padding: 1rem 0 3rem;
}

.page-kontakt .contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.page-kontakt .contact-info-card,
.page-kontakt .contact-form-panel {
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 34, 61, 0.06);
}

.page-kontakt .contact-info-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 1.35rem;
}

.page-kontakt .contact-info-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.page-kontakt .contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 146, 8, 0.14);
  color: #ec9208;
  font-size: 1rem;
  font-weight: 800;
}

.page-kontakt .contact-info-icon img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(51%) sepia(96%) saturate(1168%) hue-rotate(12deg) brightness(97%) contrast(94%);
}

.page-kontakt .contact-info-item h2 {
  margin-bottom: 0.2rem;
  color: #171b24;
  font-size: 1rem;
  line-height: 1.2;
}

.page-kontakt .contact-info-item a,
.page-kontakt .contact-info-item p {
  margin: 0;
  color: rgba(47, 53, 69, 0.78);
  font-size: 0.96rem;
  line-height: 1.45;
}

.page-kontakt .contact-info-item p + p {
  margin-top: 0.45rem;
}

.page-kontakt .contact-form-panel {
  padding: clamp(1.5rem, 3.4vw, 2.4rem);
  display: grid;
  gap: 1rem;
}

.page-kontakt .contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}

.page-kontakt .contact-service-choice {
  margin: 0 0 1.3rem;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.page-kontakt .contact-service-choice legend {
  width: 100%;
  grid-column: 1 / -1;
  margin-bottom: 0.35rem;
  color: #171b24;
  font-weight: 800;
}

.page-kontakt .contact-service-choice label {
  cursor: pointer;
}

.page-kontakt .contact-service-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-kontakt .contact-service-choice.is-invalid span {
  border-color: rgba(190, 53, 53, 0.42);
  box-shadow: 0 0 0 3px rgba(190, 53, 53, 0.08);
}

.page-kontakt .contact-field-error {
  width: 100%;
  grid-column: 1 / -1;
  margin: -0.15rem 0 0;
  color: #b63a3a;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.page-kontakt .contact-service-choice span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.55rem;
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(16, 35, 63, 0.14);
  border-radius: 999px;
  background: #fbfbfc;
  color: rgba(23, 27, 36, 0.76);
  font-weight: 800;
  line-height: 1.1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-kontakt .contact-service-choice i {
  width: 24px;
  height: 24px;
  margin-right: 0.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 35, 63, 0.08);
  color: #23385f;
  font-style: normal;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.page-kontakt .contact-service-choice i img {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(33%) saturate(1334%) hue-rotate(180deg) brightness(92%) contrast(95%);
}

.page-kontakt .contact-service-choice input:checked + span {
  border-color: rgba(236, 146, 8, 0.72);
  background: rgba(236, 146, 8, 0.14);
  color: #c98017;
  box-shadow: 0 8px 18px rgba(236, 146, 8, 0.12);
}

.page-kontakt .contact-service-choice input:checked + span i {
  background: rgba(236, 146, 8, 0.22);
  color: #c98017;
}

.page-kontakt .contact-service-choice input:checked + span i img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(96%) saturate(1168%) hue-rotate(12deg) brightness(97%) contrast(94%);
}

.page-kontakt .contact-service-choice input:focus-visible + span {
  outline: 3px solid rgba(236, 146, 8, 0.24);
  outline-offset: 2px;
}

.page-kontakt .contact-service-choice p {
  grid-column: 1 / -1;
  margin: -0.15rem 0 0;
  color: rgba(47, 53, 69, 0.58);
  font-size: 0.82rem;
  line-height: 1.35;
}

.page-kontakt .contact-form-panel label {
  display: grid;
  gap: 0.3rem;
  width: 100%;
  color: #171b24;
  font-weight: 700;
}

.page-kontakt .contact-form-panel label span {
  display: inline-block;
  margin-bottom: 0.45rem;
}

.page-kontakt .contact-form-panel input,
.page-kontakt .contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 26px;
  background: #fbfbfc;
  box-shadow: none;
  padding: 0.68rem 0.95rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.page-kontakt .contact-form-panel textarea {
  min-height: 140px;
  resize: vertical;
}

.page-kontakt .contact-form-panel .btn {
  justify-self: start;
  margin-top: 0.5rem;
}

.page-kontakt .contact-submit-status {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.final-cta-note-mobile-break {
  display: none;
}

.page-kontakt .contact-submit-status[data-state="error"] {
  color: #b63a3a;
}

.page-kontakt .contact-submit-status[data-state="success"] {
  color: #1f7a3d;
}

.page-kontakt .contact-success-dialog[hidden] {
  display: none;
}

.page-kontakt .contact-success-dialog {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.page-kontakt .contact-success-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 19, 36, 0.54);
  backdrop-filter: blur(4px);
}

.page-kontakt .contact-success-dialog-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100vw - 2.5rem), 540px);
  max-width: calc(100vw - 2.5rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(16, 35, 63, 0.18);
  text-align: center;
  overflow-wrap: anywhere;
}

.page-kontakt .contact-success-dialog-kicker {
  margin: 0 0 0.75rem;
  color: #c98017;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-kontakt .contact-success-dialog-panel h2 {
  margin: 0;
  color: #171b24;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.08;
}

.page-kontakt .contact-success-dialog-copy {
  margin: 0.9rem 0 0.85rem;
  color: rgba(47, 53, 69, 0.8);
  font-size: 1rem;
  line-height: 1.55;
}

.page-kontakt .contact-success-dialog-panel .btn {
  min-width: 180px;
}

.page-kontakt .contact-success-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.page-kontakt .contact-success-dialog-actions .btn-outline {
  color: #10233f;
  border-color: rgba(16, 35, 63, 0.18);
  background: #ffffff;
}

.page-kontakt .contact-success-dialog-actions .btn-outline:hover,
.page-kontakt .contact-success-dialog-actions .btn-outline:focus-visible {
  background: rgba(16, 35, 63, 0.06);
}

@media (max-width: 900px) {
  .page-kontakt .contact-success-dialog {
    display: grid;
    place-items: center;
    padding: 1rem;
  }

  .page-kontakt .contact-success-dialog-panel {
    box-sizing: border-box;
    width: min(calc(100vw - 2rem), 430px);
    max-width: calc(100vw - 2rem);
    max-height: min(82dvh, 560px);
    left: 50%;
    top: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    padding: 1.1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    border-radius: 24px;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.2);
  }

  .page-kontakt .contact-success-dialog-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
  }

  .page-kontakt .contact-success-dialog-panel h2 {
    max-width: none;
    font-size: clamp(1.34rem, 6.4vw, 1.6rem);
    line-height: 1.08;
  }

  .page-kontakt .contact-success-dialog-copy {
    max-width: none;
    margin: 0.75rem 0 0.75rem;
    font-size: 0.92rem;
    line-height: 1.46;
  }

  .page-kontakt .contact-success-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .page-kontakt .contact-success-dialog-panel .btn {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

.page-kontakt .contact-map-section {
  padding: 0 0 4rem;
}

.page-kontakt .contact-map-panel {
  min-height: 360px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background:
    linear-gradient(rgba(245, 248, 242, 0.42), rgba(245, 248, 242, 0.42)),
    url("../images/pages/kontakt/kontakt-standort-google-maps.webp") center / cover no-repeat;
  overflow: hidden;
}

.page-kontakt .contact-map-consent {
  max-width: 440px;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(8, 23, 46, 0.12);
  text-align: center;
}

.page-kontakt .contact-map-consent h2 {
  margin-bottom: 0.5rem;
  color: #171b24;
  font-size: 1.45rem;
}

.page-kontakt .contact-map-consent p {
  margin: 0 auto 1rem;
  color: rgba(47, 53, 69, 0.76);
  font-size: 0.95rem;
}

.page-kontakt .contact-map-consent a {
  color: #c98017;
  font-weight: 800;
}

@media (max-width: 900px) {
  .page-kontakt .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-kontakt .contact-hero-shell,
  .page-kontakt .contact-info-card,
  .page-kontakt .contact-form-panel,
  .page-kontakt .contact-map-panel {
    border-radius: 22px;
  }

  .page-kontakt .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .page-kontakt .contact-service-choice {
    grid-template-columns: 1fr;
  }

  .page-kontakt .contact-form-panel .btn {
    width: 100%;
  }
}

/* ================= SHARED LAYOUT NORMALIZATION ===== */
.stats-band,
.partner-section,
.services,
.final-cta,
.about-stats,
.about-overview,
.about-story,
.leistungen-showcase,
.page-kontakt .contact-layout-section,
.page-kontakt .contact-map-section,
.page-referenzen .references-gallery-section,
.page-referenzen .reference-info-section,
.page-referenzen .references-final-cta-section,
.page-referenzen .reviews,
.page-stickerei .stickerei-quality-section,
.page-stickerei .stickerei-visual-section,
.page-stickerei .stickerei-detail-section,
.page-stickerei .stickerei-steps-section,
.page-stickerei .stickerei-customer-section,
.page-stickerei .stickerei-reviews-section,
.page-impressum .legal-partner-section,
.page-impressum .legal-note-section,
.page-impressum .legal-content-section,
.page-impressum .legal-terms-section,
.page-ueber-uns .about-who,
.page-ueber-uns .sectors,
.page-ueber-uns .final-cta,
.page-ueber-uns .reviews {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.partner-shell,
.services-shell,
.final-cta-shell,
.reviews-shell,
.about-overview-shell,
.sectors-shell,
.page-leistungen .service-showcase-card,
.page-referenzen .reference-project-card,
.page-stickerei .reference-project-card,
.page-stickerei .stickerei-benefits-shell,
.page-stickerei .section:has(.stickerei-process-grid) .container,
.page-stickerei .stickerei-quality-shell,
.page-stickerei .stickerei-steps-shell,
.page-kontakt .contact-hero-shell,
.page-impressum .legal-partner-card,
.page-impressum .legal-prose {
  padding: var(--surface-pad-lg);
  border-radius: var(--surface-radius-lg);
}

.partner-card,
.service-panel,
.industry-card,
.about-who-card,
.about-overview-card,
.about-story-panel,
.about-story-stats,
.page-kontakt .contact-info-card,
.page-kontakt .contact-form-panel,
.page-kontakt .contact-map-panel,
.page-kontakt .contact-map-consent,
.page-impressum .legal-card,
.page-referenzen .references-final-cta,
.page-stickerei .stickerei-benefit-card,
.page-stickerei .stickerei-process-grid .card,
.page-stickerei .stickerei-quality-card,
.page-stickerei .stickerei-detail-shell {
  padding: var(--surface-pad-md);
  border-radius: var(--surface-radius-md);
}

.page-stickerei .stickerei-visual-card div {
  padding: var(--surface-pad-sm);
}

@media (max-width: 900px) {
  .partner-shell,
  .services-shell,
  .final-cta-shell,
  .reviews-shell,
  .about-overview-shell,
  .sectors-shell,
  .page-leistungen .service-showcase-card,
  .page-referenzen .reference-project-card,
  .page-stickerei .reference-project-card,
  .page-stickerei .stickerei-benefits-shell,
  .page-stickerei .section:has(.stickerei-process-grid) .container,
  .page-stickerei .stickerei-quality-shell,
  .page-stickerei .stickerei-steps-shell,
  .page-kontakt .contact-hero-shell,
  .page-impressum .legal-partner-card,
  .page-impressum .legal-prose {
    border-radius: 28px;
  }

  .partner-card,
  .service-panel,
  .industry-card,
  .about-who-card,
  .about-overview-card,
  .about-story-panel,
  .about-story-stats,
  .page-kontakt .contact-info-card,
  .page-kontakt .contact-form-panel,
  .page-kontakt .contact-map-panel,
  .page-kontakt .contact-map-consent,
  .page-impressum .legal-card,
  .page-referenzen .references-final-cta,
  .page-stickerei .stickerei-benefit-card,
  .page-stickerei .stickerei-process-grid .card,
  .page-stickerei .stickerei-quality-card,
  .page-stickerei .stickerei-detail-shell {
    border-radius: 24px;
  }
}

@media (max-width: 620px) {
  .page-index .final-cta-note-mobile-break {
    display: block;
  }

  .page-index .final-cta-actions {
    display: grid;
    justify-items: center;
    gap: 0.78rem;
  }

  .page-index .final-cta-actions .btn {
    width: min(100%, 17.2rem);
  }

  .page-index .references-footer .btn {
    width: min(100%, 17.2rem);
    justify-self: center;
  }

  .page-index .references-footer-mobile-break {
    display: block;
  }

  .page-index .references-footer-mobile-nowrap {
    white-space: nowrap;
  }

  .partner-shell,
  .services-shell,
  .final-cta-shell,
  .reviews-shell,
  .about-overview-shell,
  .sectors-shell,
  .page-leistungen .service-showcase-card,
  .page-referenzen .reference-project-card,
  .page-stickerei .reference-project-card,
  .page-stickerei .stickerei-benefits-shell,
  .page-stickerei .section:has(.stickerei-process-grid) .container,
  .page-stickerei .stickerei-quality-shell,
  .page-stickerei .stickerei-steps-shell,
  .page-kontakt .contact-hero-shell,
  .page-impressum .legal-partner-card,
  .page-impressum .legal-prose,
  .partner-card,
  .service-panel,
  .industry-card,
  .about-who-card,
  .about-overview-card,
  .about-story-panel,
  .about-story-stats,
  .page-kontakt .contact-info-card,
  .page-kontakt .contact-form-panel,
  .page-kontakt .contact-map-panel,
  .page-kontakt .contact-map-consent,
  .page-impressum .legal-card,
  .page-referenzen .references-final-cta,
  .page-stickerei .stickerei-benefit-card,
  .page-stickerei .stickerei-process-grid .card,
  .page-stickerei .stickerei-quality-card,
  .page-stickerei .stickerei-detail-shell {
    border-radius: 22px;
  }
}

/* ================= IMPRESSUM.HTML ================== */
.page-impressum .page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 156, 47, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(8, 23, 46, 0.98), rgba(24, 54, 92, 0.95));
}

.page-impressum .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(226, 156, 47, 0.14), transparent 20%);
  pointer-events: none;
}

.page-impressum .page-hero .container {
  position: relative;
  z-index: 1;
}

.page-impressum .legal-partner-section,
.page-impressum .legal-note-section {
  padding-top: clamp(1.25rem, 2.8vw, 2rem);
}

.page-impressum .legal-partner-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
  padding: var(--surface-pad-lg);
  border-radius: var(--surface-radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.page-impressum .legal-partner-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 336px;
  width: min(100%, 260px);
  margin: 0 auto;
  padding: 0.35rem;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.page-impressum .legal-partner-badge img {
  width: min(250px, 100%);
  height: auto;
  display: block;
}

.page-impressum .legal-partner-badge-icon {
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
}

.page-impressum .legal-partner-badge-icon::before,
.page-impressum .legal-partner-badge-icon::after {
  content: "";
  position: absolute;
  inset: 0.2rem 1.1rem;
  border-radius: 999px;
  border: 2px solid #161d2b;
  transform: rotate(22deg);
}

.page-impressum .legal-partner-badge-icon::after {
  inset: 0.2rem 1.1rem;
  border-color: #c11d1f;
  transform: rotate(-22deg);
}

.page-impressum .legal-partner-brand {
  color: #20252e;
  font-family: "Readex Pro", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.page-impressum .legal-partner-brand strong {
  color: #c11d1f;
}

.page-impressum .legal-partner-bar {
  width: calc(100% + 2.4rem);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.page-impressum .legal-partner-foot {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.page-impressum .legal-partner-copy h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
}

.page-impressum .legal-partner-copy p:not(.services-kicker) {
  margin: 0;
  max-width: 58ch;
  color: rgba(16, 35, 63, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.page-impressum .legal-partner-copy p:not(.services-kicker) + p:not(.services-kicker) {
  margin-top: 0.9rem;
}

.page-impressum .legal-partner-copy .btn {
  margin-top: 0.9rem;
}

.page-impressum .legal-note-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1.45rem;
  border: 1px solid rgba(201, 128, 23, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.page-impressum .legal-note-banner span {
  display: none;
}

.page-impressum .legal-note-banner p {
  color: var(--gold-600);
  font-family: "Readex Pro", sans-serif;
  max-width: none;
  font-size: clamp(1.18rem, 2.3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
}

.page-impressum .legal-note-banner p span {
  display: block;
}

.page-impressum .legal-content-section {
  padding-top: clamp(1.25rem, 2.8vw, 2rem);
}

.page-impressum .legal-terms-section {
  padding-top: clamp(1.25rem, 2.8vw, 2rem);
}

.page-impressum .legal-terms-shell {
  padding: var(--surface-pad-lg);
  border: 1px solid rgba(226, 231, 239, 0.95);
  border-radius: var(--surface-radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.page-impressum .legal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.page-impressum .legal-card,
.page-impressum .legal-accordion,
.page-impressum .legal-prose,
.page-impressum .legal-cta {
  border-radius: var(--surface-radius-md);
}

.page-impressum .legal-card {
  padding: var(--surface-pad-lg);
  box-shadow: 0 18px 35px rgba(8, 23, 46, 0.12);
}

.page-impressum .legal-card-company,
.page-impressum .legal-card-insurance {
  grid-column: span 7;
}

.page-impressum .legal-card-contact,
.page-impressum .legal-card-tax {
  grid-column: span 5;
}

.page-impressum .legal-card-dispute {
  grid-column: 1 / -1;
}

.page-impressum .legal-card-dispute h2 {
  white-space: nowrap;
  font-size: clamp(1.3rem, 2vw, 1.95rem);
}

.page-impressum .legal-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  color: var(--ink-900);
}

.page-impressum .legal-card h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.08rem;
  color: var(--ink-900);
}

.page-impressum .legal-card p,
.page-impressum .legal-card li {
  color: rgba(16, 35, 63, 0.8);
  font-size: 1rem;
  line-height: 1.65;
}

.page-impressum .legal-card p {
  margin: 0;
}

.page-impressum .legal-card p + p {
  margin-top: 0.7rem;
}

/* ================= 404.HTML ======================== */
.page-404 .error-page-main {
  padding: clamp(1.25rem, 2.8vw, 2rem) 0 4rem;
}

.page-404 .error-space-section {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.page-404 .error-space-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: clamp(34rem, 72vh, 46rem);
  padding: clamp(2rem, 4.5vw, 4rem);
  border-radius: 2.25rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(245, 161, 24, 0.2), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.1), transparent 24%),
    radial-gradient(circle at 62% 82%, rgba(116, 151, 228, 0.18), transparent 24%),
    linear-gradient(135deg, #07162d 0%, #0d2342 48%, #102e54 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(7, 22, 45, 0.22);
}

.page-404 .error-space-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  opacity: 0.32;
  pointer-events: none;
}

.page-404 .error-space-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 4% 10%, rgba(255, 255, 255, 0.88) 0 2px, transparent 2.8px),
    radial-gradient(circle at 9% 24%, rgba(255, 255, 255, 0.62) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 13% 42%, rgba(255, 255, 255, 0.88) 0 2px, transparent 2.8px),
    radial-gradient(circle at 17% 68%, rgba(255, 255, 255, 0.72) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.78) 0 1.8px, transparent 2.5px),
    radial-gradient(circle at 26% 36%, rgba(255, 255, 255, 0.58) 0 1.3px, transparent 2px),
    radial-gradient(circle at 31% 58%, rgba(255, 255, 255, 0.82) 0 1.9px, transparent 2.6px),
    radial-gradient(circle at 36% 22%, rgba(255, 255, 255, 0.8) 0 1.7px, transparent 2.3px),
    radial-gradient(circle at 41% 46%, rgba(255, 255, 255, 0.68) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 46% 12%, rgba(255, 255, 255, 0.9) 0 2.1px, transparent 2.9px),
    radial-gradient(circle at 49% 74%, rgba(255, 255, 255, 0.62) 0 1.4px, transparent 2px),
    radial-gradient(circle at 54% 28%, rgba(255, 255, 255, 0.88) 0 1.9px, transparent 2.7px),
    radial-gradient(circle at 58% 54%, rgba(255, 255, 255, 0.72) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 63% 16%, rgba(255, 255, 255, 0.84) 0 1.8px, transparent 2.5px),
    radial-gradient(circle at 66% 39%, rgba(255, 255, 255, 0.58) 0 1.3px, transparent 2px),
    radial-gradient(circle at 71% 62%, rgba(255, 255, 255, 0.82) 0 2px, transparent 2.7px),
    radial-gradient(circle at 75% 24%, rgba(255, 255, 255, 0.74) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 79% 48%, rgba(255, 255, 255, 0.88) 0 1.9px, transparent 2.6px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 87% 36%, rgba(255, 255, 255, 0.84) 0 1.8px, transparent 2.5px),
    radial-gradient(circle at 91% 58%, rgba(255, 255, 255, 0.76) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 95% 22%, rgba(255, 255, 255, 0.92) 0 2px, transparent 2.8px),
    radial-gradient(circle at 7% 82%, rgba(255, 255, 255, 0.64) 0 1.4px, transparent 2px),
    radial-gradient(circle at 19% 88%, rgba(255, 255, 255, 0.86) 0 1.9px, transparent 2.6px),
    radial-gradient(circle at 34% 84%, rgba(255, 255, 255, 0.7) 0 1.6px, transparent 2.3px),
    radial-gradient(circle at 52% 90%, rgba(255, 255, 255, 0.88) 0 1.8px, transparent 2.5px),
    radial-gradient(circle at 68% 86%, rgba(255, 255, 255, 0.62) 0 1.4px, transparent 2px),
    radial-gradient(circle at 82% 80%, rgba(255, 255, 255, 0.84) 0 1.8px, transparent 2.4px),
    radial-gradient(circle at 93% 88%, rgba(255, 255, 255, 0.7) 0 1.5px, transparent 2.2px);
  opacity: 0.72;
  clip-path: inset(0 0 0 42%);
  pointer-events: none;
  animation: errorShellStarsPulse 6.8s ease-in-out infinite;
}

.page-404 .error-space-shell > * {
  position: relative;
  z-index: 1;
}

.page-404 .error-space-copy {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 33rem;
  z-index: 2;
}

.page-404 .error-space-copy > * {
  position: relative;
  z-index: 1;
}

.page-404 .error-space-copy .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-404 .error-space-kicker {
  margin: 0;
  color: var(--color-gold);
  font-family: "Readex Pro", var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-404 .error-space-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.page-404 .error-space-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 29rem;
}

.page-404 .error-space-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.35rem;
}

.page-404 .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.page-404 .btn-outline-light:hover,
.page-404 .btn-outline-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.page-404 .error-space-visual {
  position: relative;
  min-height: clamp(24rem, 54vw, 33rem);
}

.page-404 .error-space-sticky {
  position: absolute;
  top: 7.4rem;
  right: 2.8rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.45rem;
  background: #ffe16c;
  color: #5c4703;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 14px 28px rgba(92, 71, 3, 0.18);
  transform: rotate(4deg);
}

.page-404 .error-space-code {
  position: absolute;
  top: 49%;
  left: 54%;
  z-index: 2;
  color: rgba(129, 151, 190, 0.2);
  font-family: "Readex Pro", var(--font-heading);
  font-size: clamp(8rem, 17vw, 13rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.09em;
  transform: translate(-50%, -50%);
}

.page-404 .error-space-illustration {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 36px rgba(7, 22, 45, 0.24));
}

.page-404 .error-star {
  fill: rgba(255, 255, 255, 0.82);
}

.page-404 .error-star-lg {
  opacity: 1;
}

.page-404 .error-star-md {
  opacity: 0.85;
}

.page-404 .error-star-sm {
  opacity: 0.68;
}

.page-404 .error-star-twinkle-1 {
  animation: errorStarTwinkle 3.8s ease-in-out infinite;
}

.page-404 .error-star-twinkle-2 {
  animation: errorStarTwinkle 4.4s ease-in-out infinite 0.8s;
}

.page-404 .error-star-twinkle-3 {
  animation: errorStarTwinkle 5s ease-in-out infinite 1.4s;
}

.page-404 .error-space-planet {
  animation: errorPlanetDrift 9.8s ease-in-out infinite;
}

.page-404 .error-space-planet-body {
  fill: #4fb4f5;
}

.page-404 .error-space-planet-land {
  fill: #28648d;
}

.page-404 .error-space-planet-land-alt {
  fill: #2f78a9;
}

.page-404 .error-space-planet-ring {
  fill: none;
  stroke: rgba(166, 213, 255, 0.34);
  stroke-width: 8;
}

.page-404 .error-space-moon {
  animation: errorPlanetDrift 8.6s ease-in-out infinite reverse;
}

.page-404 .error-space-moon-core {
  fill: #f4f7ff;
}

.page-404 .error-space-moon-crater {
  fill: #d7e0f2;
}

.page-404 .error-space-rocket {
  animation: errorRocketDrift 7.8s ease-in-out infinite;
}

.page-404 .error-space-rocket-body {
  fill: #ffffff;
}

.page-404 .error-space-rocket-window {
  fill: #4fb4f5;
}

.page-404 .error-space-rocket-fin {
  fill: var(--color-gold);
}

.page-404 .error-space-rocket-flame {
  fill: #ffb74d;
}

.page-404 .error-space-orbit {
  fill: none;
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.page-404 .error-astronaut-overlay {
  position: absolute;
  z-index: 3;
  width: clamp(24rem, 50vw, 44rem);
  height: auto;
  left: 58%;
  top: 62%;
  transform: translate(-50%, -50%) rotate(14deg);
  animation: errorAstronautFloat 6.5s ease-in-out infinite;
  filter: drop-shadow(0 24px 22px rgba(7, 22, 45, 0.22));
  pointer-events: none;
}

.page-404 .error-astronaut-png {
  transform-box: fill-box;
  transform-origin: center;
  animation: errorAstronautFloat 6.5s ease-in-out infinite;
  filter: drop-shadow(0 24px 22px rgba(7, 22, 45, 0.22));
}

.page-404 .error-astronaut-cord {
  fill: none;
  stroke: rgba(255, 255, 255, 0.44);
  stroke-width: 4.5;
  stroke-linecap: round;
}

.page-404 .error-astronaut-scene {
  filter: drop-shadow(0 24px 22px rgba(7, 22, 45, 0.22));
}

.page-404 .error-astronaut-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: errorAstronautFloat 6.5s ease-in-out infinite;
}

.page-404 .error-astronaut-pack,
.page-404 .error-astronaut-torso,
.page-404 .error-astronaut-arm,
.page-404 .error-astronaut-leg {
  fill: #ffffff;
  stroke: rgba(11, 33, 66, 0.08);
  stroke-width: 2;
}

.page-404 .error-astronaut-helmet-ring,
.page-404 .error-astronaut-boot,
.page-404 .error-astronaut-glove {
  fill: #dbe4f5;
  stroke: rgba(11, 33, 66, 0.06);
  stroke-width: 2;
}

.page-404 .error-astronaut-helmet {
  fill: #ffffff;
  stroke: rgba(11, 33, 66, 0.08);
  stroke-width: 2;
}

.page-404 .error-astronaut-visor {
  fill: #244574;
}

.page-404 .error-astronaut-detail {
  fill: #f2a118;
  filter: drop-shadow(0 2px 2px rgba(242, 161, 24, 0.18));
}

.page-404 .error-astronaut-shield path {
  fill: #070b14;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2;
}

.page-404 .error-astronaut-shield {
  filter: drop-shadow(0 10px 14px rgba(7, 11, 20, 0.28));
}

.page-404 .error-astronaut-shield text {
  fill: #ffffff;
  font-family: "Readex Pro", var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-anchor: middle;
}

@keyframes errorAstronautFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(14deg);
  }

  50% {
    transform: translate(-50%, calc(-50% - 12px)) rotate(17deg);
  }
}

@keyframes errorPlanetDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes errorRocketDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, -8px, 0) rotate(4deg);
  }
}

@keyframes errorStarTwinkle {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes errorShellStarsPulse {
  0%,
  100% {
    opacity: 0.56;
  }

  50% {
    opacity: 0.82;
  }
}

@media (max-width: 980px) {
  .page-404 .error-space-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }

  .page-404 .error-space-copy,
  .page-404 .error-space-text {
    max-width: 100%;
  }

  .page-404 .error-space-copy h1 {
    max-width: 12ch;
  }

  .page-404 .error-space-visual {
    min-height: 23rem;
    order: -1;
  }

  .page-404 .error-space-code {
    top: 50%;
    left: 54%;
  }

  .page-404 .error-astronaut-overlay {
    width: clamp(18rem, 48vw, 26rem);
    left: 56%;
    top: 61%;
  }

  .page-404 .error-space-sticky {
    top: 5.8rem;
    right: 2rem;
  }
}

@media (max-width: 620px) {
  .page-404 .error-page-main {
    padding-top: 0.7rem;
  }

  .page-404 .error-space-shell {
    padding: 1.5rem;
    border-radius: 1.75rem;
  }

  .page-404 .error-space-kicker {
    font-size: 2.2rem;
  }

  .page-404 .error-space-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    max-width: 9ch;
  }

  .page-404 .error-space-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .page-404 .error-space-actions {
    flex-direction: column;
  }

  .page-404 .error-space-actions .btn {
    width: 100%;
  }

  .page-404 .error-space-visual {
    order: 2;
    margin-top: 0.85rem;
    min-height: 23.5rem;
  }

  .page-404 .error-space-code {
    top: 51%;
    left: 52%;
    font-size: clamp(5rem, 22vw, 7rem);
  }

  .page-404 .error-astronaut-overlay {
    width: min(122vw, 29rem);
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%) rotate(14deg);
  }

  .page-404 .error-space-sticky {
    min-height: 2.7rem;
    top: 4.6rem;
    right: 1rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.82rem;
  }

  .page-404 .error-space-code {
    top: 18%;
    font-size: clamp(4.8rem, 22vw, 6.2rem);
  }
}

.page-impressum .legal-card a {
  color: var(--gold-600);
  font-weight: 800;
}

.page-impressum .legal-label {
  margin-bottom: 0.65rem;
  color: rgba(47, 70, 100, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-impressum .legal-bullet-list {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0;
  padding: 0;
  list-style: none;
}

.page-impressum .legal-card h2 + .legal-bullet-list,
.page-impressum .legal-card h3 + .legal-bullet-list,
.page-impressum .legal-card p + .legal-bullet-list {
  margin-top: 0.7rem;
}

.page-impressum .legal-card > .legal-bullet-list:last-child,
.page-impressum .legal-card > p:last-child {
  margin-bottom: 0;
}

.page-impressum .legal-bullet-list li {
  position: relative;
  padding-left: 1.15rem;
}

.page-impressum .legal-bullet-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 800;
}

.page-impressum .legal-terms-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 1rem 2.2rem;
  align-items: start;
  margin-bottom: 1.4rem;
}

.page-impressum .legal-terms-intro h2 {
  margin: 0.2rem 0 0;
  max-width: none;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.02;
  color: var(--ink-900);
}

.page-impressum .legal-terms-title span {
  display: block;
}

.page-impressum .legal-terms-copy {
  max-width: 410px;
  justify-self: end;
  margin-top: 0.2rem;
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: right;
}

.page-impressum .legal-accordion {
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(245, 248, 252, 0.9);
  box-shadow: none;
  overflow: hidden;
}

.page-impressum .legal-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: "Readex Pro", sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  line-height: 1.2;
  color: var(--ink-900);
}

.page-impressum .legal-accordion summary::-webkit-details-marker {
  display: none;
}

.page-impressum .legal-accordion summary::after {
  content: "+";
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 156, 47, 0.14);
  color: var(--gold-600);
  font-size: 1.45rem;
  font-weight: 700;
}

.page-impressum .legal-accordion[open] summary::after {
  content: "\2212";
}

.page-impressum .legal-accordion-panel {
  padding: 0 1.4rem 1.4rem;
}

.page-impressum .legal-prose {
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: #fff;
  padding: var(--surface-pad-lg);
}

.page-impressum .legal-term-block + .legal-term-block {
  margin-top: 1.55rem;
}

.page-impressum .legal-term-block h3 {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  color: var(--ink-900);
}

.page-impressum .legal-term-block h4 {
  margin: 0.95rem 0 0.45rem;
  font-size: 1rem;
  color: var(--ink-900);
}

.page-impressum .legal-term-block p {
  margin: 0;
  color: rgba(16, 35, 63, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.page-impressum .legal-term-block p + p {
  margin-top: 0.7rem;
}

.page-impressum .legal-term-block > .legal-bullet-list {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.page-impressum .legal-term-block > :last-child {
  margin-bottom: 0;
}

.page-impressum .legal-term-highlight {
  color: var(--ink-900);
  font-style: italic;
}

.page-impressum .legal-cta,
.page-datenschutz .legal-cta {
  margin-top: 0.4rem;
}

.page-impressum .legal-cta-icon,
.page-datenschutz .legal-cta-icon {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-impressum .legal-cta-icon img,
.page-datenschutz .legal-cta-icon img {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  filter: brightness(0) saturate(100%) invert(69%) sepia(81%) saturate(1718%) hue-rotate(355deg) brightness(97%) contrast(88%);
}

@media (max-width: 900px) {
  .page-impressum .legal-partner-card,
  .page-impressum .legal-grid {
    grid-template-columns: 1fr;
  }

  .page-impressum .legal-card-company,
  .page-impressum .legal-card-contact,
  .page-impressum .legal-card-tax,
  .page-impressum .legal-card-insurance,
  .page-impressum .legal-card-dispute {
    grid-column: auto;
  }

  .page-impressum .legal-card-dispute h2 {
    white-space: normal;
  }

  .page-impressum .legal-note-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-impressum .legal-terms-intro {
    grid-template-columns: 1fr;
  }

  .page-impressum .legal-terms-copy {
    justify-self: start;
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .page-impressum .legal-partner-card,
  .page-impressum .legal-terms-shell,
  .page-impressum .legal-note-banner,
  .page-impressum .legal-card,
  .page-impressum .legal-accordion,
  .page-impressum .legal-prose,
  .page-impressum .legal-cta,
  .page-datenschutz .legal-terms-shell,
  .page-datenschutz .legal-note-banner,
  .page-datenschutz .legal-card,
  .page-datenschutz .legal-cta {
    border-radius: 22px;
  }

  .page-impressum .legal-partner-badge {
    min-height: 290px;
    border-radius: 22px;
  }

  .page-impressum .legal-accordion summary,
  .page-impressum .legal-accordion-panel {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .page-impressum .legal-terms-shell {
    padding: var(--surface-pad-md);
  }

}

/* ================= DATENSCHUTZ.HTML ================ */
.page-datenschutz .legal-stack .card {
  border-left: 4px solid rgba(193, 122, 19, 0.75);
}

.page-datenschutz .legal-cta-desktop-break {
  display: none;
}

@media (min-width: 901px) {
  .page-datenschutz .legal-cta-desktop-break {
    display: block;
  }

  .page-datenschutz .legal-cta p {
    max-width: 68ch;
  }
}

/* ================= SHARED LEGAL LAYOUT ================ */
.page-legal .legal-note-section,
.page-legal .legal-content-section,
.page-legal .legal-terms-section {
  padding-top: clamp(1.25rem, 2.8vw, 2rem);
}

.page-legal .legal-note-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1.45rem;
  border: 1px solid rgba(201, 128, 23, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.page-legal .legal-note-banner p {
  margin: 0 auto;
  color: var(--gold-600);
  font-family: "Readex Pro", sans-serif;
  max-width: none;
  font-size: clamp(1.18rem, 2.3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-legal .legal-note-banner p span {
  display: block;
}

.page-legal .legal-note-banner p span + span {
  margin-top: 0.08rem;
}

.page-legal .legal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.page-legal .legal-card,
.page-legal .legal-accordion,
.page-legal .legal-prose,
.page-legal .legal-cta {
  border-radius: var(--surface-radius-md);
}

.page-legal .legal-card {
  padding: var(--surface-pad-lg);
  box-shadow: 0 18px 35px rgba(8, 23, 46, 0.12);
  overflow: hidden;
}

.page-legal .legal-card-company,
.page-legal .legal-card-insurance {
  grid-column: span 7;
}

.page-legal .legal-card-contact,
.page-legal .legal-card-tax {
  grid-column: span 5;
}

.page-legal .legal-card-dispute {
  grid-column: 1 / -1;
}

.page-legal .legal-card-dispute h2 {
  white-space: normal;
  text-wrap: balance;
}

.page-legal .legal-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  color: var(--ink-900);
  text-wrap: balance;
}

.page-legal .legal-card h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.08rem;
  color: var(--ink-900);
}

.page-legal .legal-card p,
.page-legal .legal-card li {
  color: rgba(16, 35, 63, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.page-legal .legal-card p {
  margin: 0;
}

.page-legal .legal-card p + p {
  margin-top: 0.7rem;
}

.page-legal .legal-card a {
  color: var(--gold-600);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.page-legal .legal-label {
  margin-bottom: 0.65rem;
  color: rgba(47, 70, 100, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-legal .legal-bullet-list {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0;
  padding: 0;
  list-style: none;
}

.page-legal .legal-card h2 + .legal-bullet-list,
.page-legal .legal-card h3 + .legal-bullet-list,
.page-legal .legal-card p + .legal-bullet-list {
  margin-top: 0.7rem;
}

.page-legal .legal-card > .legal-bullet-list:last-child,
.page-legal .legal-card > p:last-child {
  margin-bottom: 0;
}

.page-legal .legal-bullet-list li {
  position: relative;
  padding-left: 1.15rem;
}

.page-legal .legal-bullet-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 800;
}

.page-legal .legal-terms-shell {
  padding: var(--surface-pad-lg);
  border: 1px solid rgba(226, 231, 239, 0.95);
  border-radius: var(--surface-radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.page-legal .legal-terms-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 1rem 2.2rem;
  align-items: start;
  margin-bottom: 1.4rem;
}

.page-legal .legal-terms-intro h2 {
  margin: 0.2rem 0 0;
  max-width: none;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.02;
  color: var(--ink-900);
}

.page-legal .legal-terms-title span {
  display: block;
}

.page-legal .legal-terms-copy {
  max-width: 38ch;
  justify-self: end;
  margin-top: 0.2rem;
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: right;
  text-wrap: balance;
}

.page-legal .legal-accordion {
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(245, 248, 252, 0.9);
  box-shadow: none;
  overflow: hidden;
}

.page-legal .legal-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: "Readex Pro", sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  line-height: 1.2;
  color: var(--ink-900);
  overflow-wrap: anywhere;
}

.page-legal .legal-accordion summary::-webkit-details-marker {
  display: none;
}

.page-legal .legal-accordion summary::after {
  content: "+";
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 156, 47, 0.14);
  color: var(--gold-600);
  font-size: 1.45rem;
  font-weight: 700;
}

.page-legal .legal-accordion[open] summary::after {
  content: "\2212";
}

.page-legal .legal-accordion-panel {
  padding: 0 1.4rem 1.4rem;
}

.page-legal .legal-prose {
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: #fff;
  padding: var(--surface-pad-lg);
}

.page-legal .legal-term-block + .legal-term-block {
  margin-top: 1.55rem;
}

.page-legal .legal-term-block h3 {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  color: var(--ink-900);
}

.page-legal .legal-term-block h4 {
  margin: 0.95rem 0 0.45rem;
  font-size: 1rem;
  color: var(--ink-900);
}

.page-legal .legal-term-block p {
  margin: 0;
  color: rgba(16, 35, 63, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.page-legal .legal-term-block p + p {
  margin-top: 0.7rem;
}

.page-legal .legal-term-block > .legal-bullet-list {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.page-legal .legal-term-block > :last-child {
  margin-bottom: 0;
}

.page-legal .legal-term-highlight {
  color: var(--ink-900);
  font-style: italic;
}

.page-legal .legal-cta {
  margin-top: 0.4rem;
}

.page-legal .legal-cta h2 {
  text-wrap: balance;
}

.page-legal .legal-cta p {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.page-legal .legal-cta .btn {
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .page-legal .legal-grid {
    grid-template-columns: 1fr;
  }

  .page-legal .legal-card-company,
  .page-legal .legal-card-contact,
  .page-legal .legal-card-tax,
  .page-legal .legal-card-insurance,
  .page-legal .legal-card-dispute {
    grid-column: auto;
  }

  .page-legal .legal-note-banner {
    padding: 1rem 1.15rem;
  }

  .page-legal .legal-terms-intro {
    grid-template-columns: 1fr;
  }

  .page-legal .legal-terms-copy {
    justify-self: start;
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .page-legal .legal-hero p br {
    display: none;
  }
}

@media (max-width: 620px) {
  .page-legal .legal-note-banner,
  .page-legal .legal-card,
  .page-legal .legal-terms-shell,
  .page-legal .legal-accordion,
  .page-legal .legal-prose,
  .page-legal .legal-cta {
    border-radius: 22px;
  }

  .page-legal .legal-card,
  .page-legal .legal-terms-shell {
    padding: var(--surface-pad-md);
  }

  .page-legal .legal-note-banner p {
    font-size: clamp(1rem, 4.8vw, 1.25rem);
    letter-spacing: 0.03em;
  }

  .page-legal .legal-label {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .page-legal .legal-card h2 {
    font-size: clamp(1.4rem, 6.8vw, 1.78rem);
  }

  .page-legal .legal-card h3 {
    font-size: 1rem;
  }

  .page-legal .legal-card p,
  .page-legal .legal-card li,
  .page-legal .legal-term-block p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .page-legal .legal-terms-intro {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .page-legal .legal-terms-intro h2 {
    font-size: clamp(1.48rem, 7vw, 1.86rem);
  }

  .page-legal .legal-terms-copy {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .page-legal .legal-accordion summary {
    padding: 1rem 1.1rem;
    gap: 0.75rem;
    font-size: 1rem;
  }

  .page-legal .legal-accordion summary::after {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .page-legal .legal-accordion-panel {
    padding: 0 1.1rem 1.1rem;
  }

  .page-legal .legal-prose {
    padding: 1.1rem;
  }

  .page-legal .legal-term-block + .legal-term-block {
    margin-top: 1.25rem;
  }

  .page-legal .legal-term-block h3 {
    margin-bottom: 0.6rem;
    font-size: 1.08rem;
  }

  .page-legal .legal-term-block h4 {
    font-size: 0.96rem;
  }

  .page-legal .legal-cta {
    padding: var(--surface-pad-md);
  }

  .page-legal .legal-cta-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.9rem;
  }

  .page-legal .legal-cta-icon img {
    width: 1.28rem;
    height: 1.28rem;
  }

  .page-legal .legal-cta h2 {
    font-size: clamp(1.7rem, 8vw, 2rem);
  }

  .page-legal .legal-cta p {
    max-width: 22ch;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .page-legal .legal-cta .btn {
    width: min(100%, 17.5rem);
  }
}

/* Keep the old per-icon overrides empty so the base square marker above wins. */
.page-leistungen .leistungen-info-block-icon.icon-audience::before,
.page-leistungen .leistungen-info-block-icon.icon-fit::before,
.page-leistungen .leistungen-info-block-icon.icon-process::before {
  content: "";
}

@media (max-width: 700px) {
  .page-leistungen .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-leistungen .hero-actions .btn {
    max-width: none;
  }

  .leistungen-showcase-head {
    gap: 0.9rem;
  }

  .leistungen-showcase-quote {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .page-leistungen .service-showcase-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "action";
    grid-template-rows: auto auto auto;
    gap: 0.38rem;
    padding: 1.2rem;
    border-radius: 28px;
  }

  .page-leistungen .service-showcase-copy h3 {
    max-width: none;
    margin-bottom: 0.7rem;
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .page-leistungen .service-showcase-copy p:not(.service-showcase-tag) {
    max-width: none;
    margin-bottom: 0.28rem;
    font-size: 0.98rem;
  }

  .page-leistungen .service-showcase-action {
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
    justify-content: center;
  }

  .page-leistungen .service-showcase-media {
    min-height: 230px;
    overflow: hidden;
    border-radius: 24px;
  }

  .page-leistungen .service-showcase-media img {
    min-height: 230px;
    max-height: 285px;
    transform: none;
  }

  .page-leistungen .service-floating-card {
    left: 0.85rem;
    right: auto;
    top: 0.85rem;
    bottom: auto;
    min-width: 176px;
    width: min(12rem, calc(100% - 1.5rem));
    padding: 0.85rem 0.95rem;
    border-radius: 20px;
    box-shadow: 0 16px 28px rgba(8, 23, 46, 0.14);
  }

  .page-leistungen .service-floating-card strong {
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
  }

  .page-leistungen .service-floating-card div {
    gap: 0.55rem;
  }

  .page-leistungen .service-floating-card p {
    font-size: 0.72rem;
  }

  .page-leistungen .leistungen-info-card,
  .page-leistungen .split-grid .card,
  .page-inner .cta-box {
    padding: var(--surface-pad-md);
  }

  .page-leistungen .leistungen-info-copy h2 {
    font-size: clamp(1.7rem, 7.8vw, 2.2rem);
  }

  .page-leistungen .leistungen-info-lead {
    font-size: 1rem;
  }

  .page-leistungen .leistungen-info-copy-text {
    font-size: 0.97rem;
  }

  .page-digitaldruck .cta-box h2 {
    max-width: 13ch;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 640px) {
    .page-digitaldruck .stickerei-customer-head h2 {
      max-width: 12.5ch;
    }
  }

  .page-leistungen .leistungen-info-mini-list {
    gap: 0.55rem;
  }

  .page-leistungen .leistungen-info-point {
    gap: 0.25rem 0.75rem;
    padding: 0.95rem;
    border-radius: 20px;
  }

  .page-leistungen .leistungen-info-point-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .page-leistungen .leistungen-info-point-icon img {
    width: 1.28rem;
    height: 1.28rem;
  }

  .page-leistungen .leistungen-info-grid {
    gap: 0.8rem;
    margin-top: 1.15rem;
    padding-top: 1.1rem;
  }

  .page-leistungen .leistungen-info-block {
    padding: 0.95rem 1rem 1rem;
    border-radius: 20px;
  }

  .page-leistungen .leistungen-info-block h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .page-leistungen .leistungen-info-block p {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .page-leistungen {
    --leistungen-flow-size: 0.94rem;
    --leistungen-flow-line: 1.18;
  }

  .page-leistungen .page-main {
    margin-top: 0;
  }

  .page-leistungen .topbar {
    position: fixed;
    inset: 0 0 auto 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .page-leistungen .topbar.is-scrolled,
  .page-leistungen .topbar.is-menu-open {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(8, 23, 46, 0.08);
  }

  .page-leistungen .leistungen-hero {
    min-height: auto;
    background-color: #f4f1e7;
    background:
      radial-gradient(circle at 14% 18%, rgba(220, 231, 247, 0.82) 0%, rgba(220, 231, 247, 0.18) 30%, rgba(220, 231, 247, 0) 48%),
      radial-gradient(circle at 86% 16%, rgba(255, 236, 163, 0.78) 0%, rgba(255, 236, 163, 0.16) 34%, rgba(255, 236, 163, 0) 54%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 248, 220, 0.12) 100%),
      linear-gradient(90deg, #eef3fb 0%, #f7f4eb 52%, #fff1ba 100%);
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    overflow: hidden;
    padding: calc(var(--header-offset) + 0.22rem) 0 0;
  }

  .page-leistungen .leistungen-hero .hero-media,
  .page-leistungen .leistungen-hero .hero-layer,
  .page-leistungen .leistungen-hero .hero-benefits {
    display: none;
  }

  .page-leistungen .leistungen-hero .hero-content {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 0.8rem 0.6rem 0.96rem;
    grid-template-areas:
      "main"
      "scroll";
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    row-gap: 0.18rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
    isolation: isolate;
  }

  .page-leistungen .leistungen-hero-main {
    width: 100%;
    max-width: 21rem;
    min-height: 0;
    display: grid;
    justify-self: center;
    justify-items: center;
    padding: 0;
    text-align: center;
    gap: 0.22rem;
  }

  .page-leistungen .leistungen-hero .eyebrow {
    display: none;
  }

  .page-leistungen .leistungen-hero-main > h1:not(.leistungen-hero-title-mobile) {
    display: block;
  }

  .page-leistungen .leistungen-hero-title-mobile {
    display: none;
  }

  .page-leistungen .hero-copy {
    max-width: none;
    width: min(100%, 19rem);
    margin: 0.28rem auto 0;
    color: rgba(30, 36, 48, 0.74);
    font-size: var(--leistungen-flow-size);
    line-height: var(--leistungen-flow-line);
    text-wrap: pretty;
  }

  .page-leistungen .leistungen-hero-main > .hero-copy:not(.hero-copy-mobile-standalone) {
    display: none;
  }

  .page-leistungen .hero-copy-mobile-standalone {
    display: block;
  }

  .page-leistungen .leistungen-hero-mobile-visual {
    display: block;
    width: min(100%, 19rem);
    margin: -0.12rem 0 0.58rem;
    position: relative;
  }

  .page-leistungen .leistungen-hero-mobile-visual img {
    display: block;
    position: relative;
    z-index: 1;
    width: min(100%, 320px);
    height: auto;
    margin: 0 auto;
    transform: translateX(-2px);
    filter: drop-shadow(0 18px 22px rgba(8, 23, 46, 0.16));
  }

  .page-leistungen .leistungen-hero-mobile-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 0;
    width: 15rem;
    height: 15rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 251, 236, 0.72) 48%, rgba(255, 255, 255, 0) 74%);
  }

  .page-leistungen .leistungen-hero-mobile-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.28rem;
    z-index: 0;
    width: 8.8rem;
    height: 0.78rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(8, 23, 46, 0.14);
    filter: blur(10px);
  }

  .page-leistungen .hero-actions {
    width: min(100%, 15.8rem);
    margin: 0.08rem auto 0;
    padding-top: 0;
    display: grid;
    gap: 0.46rem;
  }

  .page-leistungen .hero-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 42px;
    border-radius: 999px;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.82rem 1rem;
  }

  .page-leistungen .hero-actions .btn-accent {
    background: var(--gold-600);
    box-shadow: 0 12px 18px rgba(201, 131, 20, 0.22);
  }

  .page-leistungen .hero-actions .btn-accent:hover,
  .page-leistungen .hero-actions .btn-accent:focus-visible {
    background: var(--gold-hover-fill);
  }

  .page-leistungen .btn-outline-whatsapp {
    border-color: rgba(35, 56, 95, 0.34);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 16px rgba(8, 23, 46, 0.06);
  }

  .page-leistungen .hero-scroll-indicator {
    margin: 0.56rem auto 0.12rem;
    width: 40px;
    height: 18px;
    opacity: 0.86;
  }

  .page-leistungen .hero-scroll-indicator span {
    width: 14px;
    height: 14px;
    border-right-color: rgba(35, 56, 95, 0.72);
    border-bottom-color: rgba(35, 56, 95, 0.72);
  }

  .page-leistungen .leistungen-showcase-quote,
  .page-leistungen .split-grid .card p,
  .page-leistungen .split-grid .feature-list li,
  .page-leistungen .service-showcase-copy p:not(.service-showcase-tag),
  .page-leistungen .leistungen-info-lead,
  .page-leistungen .leistungen-info-copy-text,
  .page-leistungen .leistungen-info-point p,
  .page-leistungen .leistungen-info-block p,
  .page-leistungen .cta-box p {
    font-size: var(--leistungen-flow-size);
    line-height: var(--leistungen-flow-line);
  }
}

@media (max-width: 520px) {
  .page-index {
    --index-flow-size: 0.9rem;
    --index-flow-line: 1.18;
  }

  .page-ueber-uns {
    --ueber-uns-flow-size: 0.9rem;
    --ueber-uns-flow-line: 1.18;
  }

  .page-leistungen {
    --leistungen-flow-size: 0.9rem;
    --leistungen-flow-line: 1.18;
  }

  .page-index .hero-content {
    width: 100%;
    padding-top: 0.84rem;
  }

  .page-index .hero-main > h1:not(.index-hero-title-mobile) {
    width: min(100%, 18.9rem);
    font-size: clamp(1.28rem, 7vw, 1.62rem);
  }

  .page-index .hero-copy {
    width: min(100%, 18.8rem);
    font-size: var(--index-flow-size);
    line-height: var(--index-flow-line);
  }

  .page-index .hero-actions .btn {
    min-height: 40px;
    font-size: 0.8rem;
  }

  .page-index .index-hero-mobile-visual-image {
    width: min(100%, 270px);
  }

  .page-index .hero-actions {
    width: min(100%, 14.8rem);
  }

  .page-ueber-uns .hero h1 {
    max-width: none;
    width: min(100%, 18.9rem);
    font-size: clamp(1.28rem, 7vw, 1.62rem);
  }

  .page-ueber-uns .hero-copy {
    max-width: none;
    width: min(100%, 18.9rem);
    font-size: var(--ueber-uns-flow-size);
    line-height: var(--ueber-uns-flow-line);
  }

  .page-ueber-uns .about-hero-mobile-visual img {
    width: min(100%, 258px);
  }

  .page-ueber-uns .hero-actions {
    width: min(100%, 14.8rem);
  }

  .page-ueber-uns .hero-actions .btn {
    min-height: 40px;
    font-size: 0.8rem;
  }

  .page-leistungen .hero h1 {
    max-width: none;
    width: min(100%, 18.4rem);
    font-size: clamp(1.4rem, 7.6vw, 1.76rem);
  }

  .page-leistungen .hero-copy {
    max-width: none;
    width: min(100%, 18.8rem);
    font-size: var(--leistungen-flow-size);
    line-height: var(--leistungen-flow-line);
  }

  .page-leistungen .leistungen-hero-mobile-visual img {
    width: min(100%, 300px);
  }

  .page-leistungen .hero-actions {
    width: min(100%, 14.8rem);
  }

  .page-leistungen .hero-actions .btn {
    min-height: 40px;
    font-size: 0.8rem;
  }

  .page-leistungen .service-showcase-card {
    padding: 1rem;
  }

  .page-leistungen .service-showcase-tag {
    margin-bottom: 1.2rem;
  }

  .page-leistungen .service-showcase-media {
    min-height: 210px;
  }

  .page-leistungen .service-showcase-media img {
    min-height: 210px;
    max-height: 250px;
  }

  .page-leistungen .service-floating-card {
    padding: 0.8rem 0.9rem;
  }
}

@media (max-width: 640px) {
  .partner-title,
  .faq-title {
    font-size: clamp(1.72rem, 7.4vw, 2.08rem);
    line-height: 1.04;
  }

  .reviews-title {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    line-height: 1.02;
  }

  .final-cta-title,
  .references .section-title-light,
  .page-referenzen .references-final-cta h2,
  .page-ablauf .ablauf-final-cta h2 {
    font-size: clamp(1.82rem, 7.6vw, 2.28rem);
    line-height: 1.04;
  }

  .review-copy,
  .reviews-footer p,
  .faq-intro,
  .faq-answer,
  .final-cta-shell > p,
  .page-referenzen .references-final-cta p,
  .page-ablauf .ablauf-final-cta p {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .page-index .faq-intro {
    text-wrap: balance;
  }

  .page-index .faq-intro-line {
    display: inline;
    white-space: normal;
  }

  .faq-question {
    font-size: 0.98rem;
    line-height: 1.26;
  }
}

@media (max-width: 980px) and (min-width: 768px) {
  .page-index .workflow-overview {
    display: grid;
    width: min(100%, 920px);
    margin-top: 0.2rem;
  }

  .page-index .workflow-cards {
    display: none;
  }

  .page-index .workflow-rail {
    width: min(100%, 900px);
    gap: clamp(0.3rem, 0.9vw, 0.7rem);
  }

  .page-index .workflow-node {
    width: clamp(86px, 11vw, 118px);
    flex-basis: clamp(86px, 11vw, 118px);
  }

  .page-index .workflow-summary {
    width: min(100%, 900px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem 0.8rem;
    align-items: start;
  }

  .page-index .workflow-summary li {
    font-size: clamp(0.9rem, 1.55vw, 1.08rem);
    line-height: 1.18;
  }

  .page-index .hero-content {
    width: min(100%, 1120px);
    padding-inline: clamp(2.35rem, 4.6vw, 3.2rem);
    box-sizing: border-box;
  }

  .page-ueber-uns .about-hero {
    width: 100%;
    min-height: 540px;
    margin-inline: 0;
    padding: 0;
    border-bottom-left-radius: 52px;
    border-bottom-right-radius: 52px;
    background: linear-gradient(90deg, #f6f2e8 0%, #fbf9f3 38%, #ffffff 100%);
  }

  .page-ueber-uns .about-hero::after {
    content: none;
  }

  .page-ueber-uns .about-hero .hero-media,
  .page-ueber-uns .about-hero .hero-layer {
    display: block;
  }

  .page-ueber-uns .about-hero .hero-benefits {
    display: flex;
  }

  .page-ueber-uns .about-hero .hero-content {
    width: min(100%, 960px);
    min-height: 540px;
    padding: calc(2rem + var(--header-offset)) clamp(1.7rem, 3.6vw, 2.35rem) 0.92rem;
    grid-template-areas:
      "main"
      "scroll"
      "benefits";
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: stretch;
    row-gap: 0.34rem;
    text-align: left;
    box-sizing: border-box;
  }

  .page-ueber-uns .about-hero-main {
    width: min(100%, 33rem);
    max-width: 33rem;
    justify-self: start;
    justify-items: start;
    text-align: left;
    gap: 0;
  }

  .page-ueber-uns .about-hero .eyebrow {
    display: inline-block;
    margin-bottom: 0.6rem;
  }

  .page-ueber-uns .about-hero-main > h1:not(.about-hero-title-mobile) {
    display: block;
  }

  .page-ueber-uns .about-hero-title-mobile,
  .page-ueber-uns .about-hero-copy-mobile-standalone,
  .page-ueber-uns .about-hero-mobile-visual {
    display: none;
  }

  .page-ueber-uns .about-hero h1 {
    max-width: 12.8ch;
    font-size: clamp(2.1rem, 4.2vw, 2.68rem);
    line-height: 0.96;
    letter-spacing: -0.022em;
    text-wrap: balance;
  }

  .page-ueber-uns .about-hero h1 br {
    display: none;
  }

  .page-ueber-uns .about-hero .hero-copy {
    width: auto;
    max-width: 30.5rem;
    margin: 0.6rem 0 0;
    justify-self: start;
    color: rgba(30, 36, 48, 0.78);
    font-size: 0.98rem;
    line-height: 1.42;
    text-align: left;
  }

  .page-ueber-uns .about-hero-main > .hero-copy:not(.about-hero-copy-mobile-standalone) {
    display: block;
  }

  .page-ueber-uns .hero-actions {
    width: auto;
    margin: 0.95rem 0 0;
    padding-top: 0;
    justify-self: start;
    justify-items: initial;
    gap: 0.68rem;
  }

  .page-ueber-uns .hero-actions .btn {
    width: auto;
    min-height: 48px;
    padding: 0.86rem 1rem;
    font-size: 0.92rem;
  }

  .page-ueber-uns .hero-scroll-indicator {
    justify-self: center;
    margin: 0.3rem auto 0.04rem;
    width: 44px;
    height: 22px;
    opacity: 0.86;
  }

  .page-ueber-uns .about-hero-media {
    inset: 0;
  }

  .page-ueber-uns .hero-video {
    position: absolute;
    right: clamp(0.1rem, 0.9vw, 0.9rem);
    bottom: 0;
    width: clamp(22.5rem, 44vw, 27.8rem);
    height: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
  }

  .page-ueber-uns .hero-layer {
    background:
      linear-gradient(90deg, rgba(246, 242, 232, 0.97) 0%, rgba(246, 242, 232, 0.92) 34%, rgba(246, 242, 232, 0.68) 50%, rgba(246, 242, 232, 0.24) 65%, rgba(246, 242, 232, 0.05) 78%, rgba(246, 242, 232, 0) 88%);
  }

  .page-ueber-uns .hero-benefits {
    max-width: 100%;
    margin-top: 0.08rem;
    padding-top: 0.72rem;
    gap: 0.34rem 0.74rem;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .page-ueber-uns .hero-benefits li {
    width: auto;
    font-size: 0.8rem;
  }

  .page-ueber-uns .hero-benefits li:not(:last-child)::after {
    margin-left: 0.74rem;
  }

  .page-leistungen .leistungen-hero .hero-content {
    width: min(100%, 1120px);
    padding-inline: clamp(2.35rem, 4.6vw, 3.2rem);
    box-sizing: border-box;
  }

  .services-header {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.76fr);
    gap: 1rem 1.4rem;
    align-items: end;
  }

  .services-intro {
    justify-self: end;
    text-align: right;
    max-width: 30ch;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .page-index .service-panel-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    align-items: start;
  }

  .page-index .service-badge {
    justify-self: start;
    align-self: start;
    width: fit-content;
    max-width: 100%;
    padding: 0.32rem 0.72rem;
    white-space: nowrap;
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .page-index .service-panel-body,
  .page-index .service-panel-body p,
  .page-index .service-panel-body .service-list {
    padding-right: 0;
  }

  .reviews-head,
  .reviews-footer {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 1rem 1.4rem;
    align-items: end;
  }

  .reviews-score,
  .reviews-cta {
    justify-self: end;
    width: auto;
  }

  .reviews-slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
  }

  .reviews-viewport {
    overflow: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: auto;
  }

  .reviews-track {
    display: grid;
    width: auto;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 0.9rem) / 2);
    gap: 0.9rem;
    padding-right: 0;
  }

  .reviews-arrow-prev,
  .reviews-arrow-next {
    display: inline-flex;
  }

  .review-card {
    flex: 0 0 auto;
    max-width: none;
    scroll-snap-align: unset;
  }

  .reviews-cta {
    width: min(100%, 320px);
    min-width: 280px;
    justify-content: center;
    background: transparent;
    color: var(--ink-900);
    border-color: rgba(201, 128, 23, 0.9);
  }

  .page-referenzen .reviews-footer .reviews-cta {
    width: min(100%, 320px);
    min-width: 280px;
  }

  .reviews-cta:hover,
  .reviews-cta:focus-visible {
    background: rgba(201, 128, 23, 0.08);
    color: var(--ink-900);
    border-color: rgba(201, 128, 23, 1);
  }

  .references-footer {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 1rem 1.4rem;
    align-items: end;
  }

  .references-footer .btn {
    justify-self: end;
  }

  .faq-head {
    grid-template-columns: minmax(0, 1.06fr) minmax(210px, 0.74fr);
    gap: 1rem 1.4rem;
    align-items: start;
  }

  .faq-intro {
    justify-self: end;
    max-width: 46ch;
    text-align: right;
  }

  .page-index .faq-intro {
    max-width: none;
  }

  .page-index .faq-intro {
    max-width: 39ch;
  }

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

  .page-inner .split-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .page-ueber-uns .about-who-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    gap: 1rem;
  }

  .page-ueber-uns .about-who-copy {
    grid-column: 1 / -1;
  }

  .page-ueber-uns .about-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-ueber-uns .about-overview-card:last-child {
    grid-column: 1 / -1;
  }

  .page-ueber-uns .sectors-head,
  .page-ueber-uns .sectors-footer {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.68fr);
  }

  .page-ueber-uns .sectors-quote {
    justify-self: end;
    text-align: right;
  }

  .page-kontakt .contact-layout {
    grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
    gap: 1.2rem;
  }

  .page-kontakt .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .page-referenzen .references-gallery-head {
    grid-template-columns: minmax(0, 0.92fr) minmax(270px, 0.74fr);
  }

  .page-referenzen .references-gallery-intro {
    justify-self: end;
    width: min(100%, 41ch);
    max-width: 41ch;
    font-size: 0.93rem;
    text-align: right;
    text-wrap: balance;
  }

  .page-referenzen .references-gallery-intro br {
    display: none;
  }

  .page-referenzen .reference-project-card,
  .page-stickerei .reference-project-card {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1fr);
    gap: 1.2rem 1.4rem;
    padding: 1.35rem;
  }

  .page-referenzen .reference-project-copy h3,
  .page-stickerei .reference-project-copy h3 {
    max-width: none;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
  }

  .page-stickerei .stickerei-detail-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.2rem;
  }

  .page-stickerei .stickerei-detail-copy h2 {
    max-width: none;
    font-size: clamp(1.62rem, 2.6vw, 2.2rem);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .page-index .hero-content {
    width: min(100%, 1120px);
    padding-inline: clamp(2.35rem, 4.6vw, 3.2rem);
    box-sizing: border-box;
  }

  .page-leistungen .leistungen-hero .hero-content {
    width: min(100%, 1120px);
    padding-inline: clamp(2.35rem, 4.6vw, 3.2rem);
    box-sizing: border-box;
  }

  .page-leistungen .leistungen-hero {
    width: 100%;
    margin-inline: 0;
  }

  .page-leistungen .leistungen-hero .hero-content {
    min-height: 538px;
    padding-top: calc(2.45rem + var(--header-offset));
    padding-bottom: 0.95rem;
    align-content: start;
    row-gap: 0.36rem;
  }

  .page-leistungen .leistungen-hero-main {
    max-width: 39rem;
  }

  .page-leistungen .leistungen-hero h1 {
    max-width: 13.4ch;
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 0.94;
    letter-spacing: -0.025em;
    text-wrap: pretty;
  }

  .page-leistungen .leistungen-hero .hero-copy {
    max-width: 30.8rem;
    margin-top: 0.68rem;
    font-size: 1rem;
    line-height: 1.44;
  }

  .page-leistungen .hero-actions {
    margin-top: 1rem;
    gap: 0.72rem;
  }

  .page-leistungen .hero-actions .btn {
    min-height: 50px;
    padding-inline: 1rem;
    font-size: 0.94rem;
  }

  .page-leistungen .hero-scroll-indicator {
    margin-top: 0.38rem;
    height: 24px;
  }

  .page-leistungen .leistungen-hero-media {
    inset: 0;
  }

  .page-leistungen .hero-video {
    position: absolute;
    right: clamp(1rem, 2.2vw, 1.85rem);
    top: 48%;
    bottom: auto;
    width: clamp(29rem, 42vw, 33rem);
    height: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: right center;
    transform: translateY(-50%);
  }

  .page-leistungen .hero-layer {
    background:
      linear-gradient(90deg, rgba(244, 241, 231, 0.96) 0%, rgba(244, 241, 231, 0.9) 33%, rgba(244, 241, 231, 0.62) 51%, rgba(244, 241, 231, 0.24) 64%, rgba(244, 241, 231, 0.05) 75%, rgba(244, 241, 231, 0) 84%);
  }

  .page-leistungen .hero-benefits {
    max-width: 100%;
    margin-top: 0.08rem;
    padding-top: 0.72rem;
    gap: 0.38rem 0.78rem;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .page-leistungen .hero-benefits li {
    width: auto;
    font-size: 0.82rem;
  }

  .page-leistungen .hero-benefits li:not(:last-child)::after {
    margin-left: 0.78rem;
  }

  .page-ueber-uns .about-hero {
    width: 100%;
    margin-inline: 0;
    background: linear-gradient(90deg, #f6f2e8 0%, #fbf9f3 38%, #ffffff 100%);
  }

  .page-ueber-uns .about-hero::after {
    content: none;
  }

  .page-ueber-uns .about-hero .hero-content {
    width: min(100%, 1100px);
    min-height: 538px;
    padding: calc(2.45rem + var(--header-offset)) clamp(2.35rem, 4.6vw, 3.2rem) 0.95rem;
    box-sizing: border-box;
    align-content: start;
    row-gap: 0.36rem;
  }

  .page-ueber-uns .about-hero-main {
    max-width: 39.5rem;
  }

  .page-ueber-uns .about-hero h1 {
    max-width: 12.4ch;
    font-size: clamp(2.48rem, 4.1vw, 3.08rem);
    line-height: 0.94;
    letter-spacing: -0.025em;
    text-wrap: pretty;
  }

  .page-ueber-uns .about-hero h1 br {
    display: block;
  }

  .page-ueber-uns .about-hero .hero-copy {
    max-width: 36.5rem;
    margin-top: 0.68rem;
    font-size: 1rem;
    line-height: 1.44;
  }

  .page-ueber-uns .hero-actions {
    margin-top: 1rem;
    gap: 0.72rem;
  }

  .page-ueber-uns .hero-actions .btn {
    min-height: 50px;
    padding-inline: 1rem;
    font-size: 0.94rem;
  }

  .page-ueber-uns .about-hero .hero-scroll-indicator {
    margin-top: 0.38rem;
    height: 24px;
  }

  .page-ueber-uns .about-hero-media {
    inset: 0;
  }

  .page-ueber-uns .hero-video {
    position: absolute;
    right: clamp(1.7rem, 3vw, 2.5rem);
    bottom: 0;
    width: clamp(27rem, 39vw, 31rem);
    height: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
  }

  .page-ueber-uns .hero-layer {
    background:
      linear-gradient(90deg, rgba(246, 243, 235, 0.96) 0%, rgba(246, 243, 235, 0.9) 34%, rgba(246, 243, 235, 0.6) 52%, rgba(246, 243, 235, 0.24) 65%, rgba(246, 243, 235, 0.05) 75%, rgba(246, 243, 235, 0) 84%);
  }

  .page-ueber-uns .hero-benefits {
    max-width: 100%;
    margin-top: 0.08rem;
    padding-top: 0.72rem;
    gap: 0.38rem 0.78rem;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .page-ueber-uns .hero-benefits li {
    width: auto;
    font-size: 0.82rem;
  }

  .page-ueber-uns .hero-benefits li:not(:last-child)::after {
    margin-left: 0.78rem;
  }

  .page-ueber-uns .hero-benefits li:last-child {
    display: none;
  }

  .page-ueber-uns .hero-benefits li:nth-child(3)::after {
    display: none;
  }

  .page-referenzen .references-gallery-head {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  }

  .page-referenzen .references-gallery-intro {
    justify-self: end;
    width: min(100%, 35ch);
    max-width: 35ch;
    font-size: 0.95rem;
    text-align: right;
    text-wrap: balance;
  }

  .page-referenzen .references-gallery-intro br {
    display: none;
  }
}

.page-leistungen .hero-actions .btn-outline-whatsapp {
  border: 1.5px solid rgba(35, 56, 95, 0.46);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 16px rgba(8, 23, 46, 0.06);
}

.page-leistungen .hero-actions .btn-outline-whatsapp:hover,
.page-leistungen .hero-actions .btn-outline-whatsapp:focus-visible {
  border-color: rgba(35, 56, 95, 0.58);
  background: rgba(255, 255, 255, 1);
}

/* Keep the Leistungen intro block on one calm body-copy rhythm. */
.page-leistungen .leistungen-info-card {
  --leistungen-info-flow-size: 1rem;
  --leistungen-info-flow-line: 1.56;
  --leistungen-info-flow-color: rgba(60, 65, 79, 0.82);
}

.page-leistungen .leistungen-info-lead,
.page-leistungen .leistungen-info-copy-text,
.page-leistungen .leistungen-info-mini-list li,
.page-leistungen .leistungen-info-copy .seo-link-copy,
.page-leistungen .leistungen-info-point p,
.page-leistungen .leistungen-info-block p {
  color: var(--leistungen-info-flow-color);
  font-size: var(--leistungen-info-flow-size);
  line-height: var(--leistungen-info-flow-line);
}

@media (max-width: 700px) {
  .page-leistungen .leistungen-info-card {
    --leistungen-info-flow-size: 0.97rem;
    --leistungen-info-flow-line: 1.52;
  }
}

.page-referenzen .referenzen-hero-copy {
  max-width: 42ch;
  font-size: clamp(1.18rem, 1.72vw, 1.34rem);
  line-height: 1.5;
}

.page-referenzen .referenzen-hero-copy-line + .referenzen-hero-copy-line {
  margin-top: 0.14rem;
}

@media (max-width: 900px) {
  .page-stickerei .branch-hero-copy-single-line {
    max-width: 42ch;
    width: min(100%, 42ch);
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .page-referenzen .referenzen-hero-copy {
    max-width: 31ch;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .page-referenzen .referenzen-hero-copy-line + .referenzen-hero-copy-line {
    margin-top: 0.08rem;
  }
}

@media (max-width: 700px) {
  :root {
    --mobile-flow-size: 0.95rem;
    --mobile-flow-line: 1.5;
    --mobile-hero-title-size: clamp(1.62rem, 7.2vw, 1.96rem);
    --mobile-hero-title-line: 1.04;
  }

  .page-index {
    --index-flow-size: var(--mobile-flow-size);
    --index-flow-line: var(--mobile-flow-line);
  }

  .page-ueber-uns {
    --ueber-uns-flow-size: var(--mobile-flow-size);
    --ueber-uns-flow-line: var(--mobile-flow-line);
  }

  .page-leistungen {
    --leistungen-flow-size: var(--mobile-flow-size);
    --leistungen-flow-line: var(--mobile-flow-line);
  }

  .page-leistungen .leistungen-info-card {
    --leistungen-info-flow-size: var(--mobile-flow-size);
    --leistungen-info-flow-line: var(--mobile-flow-line);
  }

  .page-main p:not(.eyebrow):not(.services-kicker):not(.service-showcase-tag):not(.contact-success-kicker):not(.stat-value):not(.about-stat-value):not(.about-who-card-value):not(.about-hero-title-mobile),
  .page-main li {
    font-size: var(--mobile-flow-size);
    line-height: var(--mobile-flow-line);
    text-wrap: pretty;
  }

  .page-leistungen .service-floating-card div {
    gap: 0.42rem;
  }

  .page-leistungen .service-floating-card p {
    font-size: 0.66rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  .page-ueber-uns .about-who-card-value {
    font-size: clamp(2.25rem, 7.2vw, 2.8rem);
    line-height: 1;
  }

  .page-ueber-uns .about-hero h1,
  .page-leistungen .hero h1,
  .page-referenzen .page-hero h1,
  .page-ablauf .page-hero h1,
  .page-stickerei .stickerei-hero-title,
  .page-digitaldruck .stickerei-hero-title,
  .page-kontakt .contact-hero-shell h1 {
    font-size: var(--mobile-hero-title-size);
    line-height: var(--mobile-hero-title-line);
    letter-spacing: -0.02em;
  }

  .page-index .index-hero-title-mobile {
    display: none;
  }

  .page-index .hero-main > h1:not(.index-hero-title-mobile) {
    display: block;
    width: min(100%, 18.9rem);
    max-width: none;
    margin: 0 auto;
    font-size: var(--mobile-hero-title-size);
    line-height: var(--mobile-hero-title-line);
    letter-spacing: -0.02em;
    text-align: center;
  }

  .page-index .hero-main {
    gap: 0.26rem;
  }
}

@media (max-width: 520px) {
  .page-leistungen .leistungen-info-card {
    --leistungen-info-flow-size: 0.94rem;
    --leistungen-info-flow-line: 1.48;
  }
}
