/* Vollstaendiges Startseiten-Template mit Placeholdern fuer Bilder. */

:root {
  /* Basis für rem und typische Abstandsstufen */
  --step-size: 16px;
  --page-max-width: 1180px;
  --band-inner-width: min(100% - 2rem, var(--page-max-width));
  --text-color: #222222;
  --soft-text: #666666;
  --muted-border: #e8e8e8;
  --surface-light: #f7f7f7;
  --brand-yellow: #ffcc00;
  --brand-red: #e30613;
  --brand-grey: #6d6d6d;
  --header-icon-bg: #f0f0f0;
  --header-icon-stroke: #7a7a7a;
  --header-bar-shadow: 0 4px 18px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  --support-text-yellow: #ffcc00;
  --support-text-yellow-soft: #e6b800;
  --product-slider-arrow: 88px;
  --product-slider-gutter: clamp(0.35rem, 1.5vw, 1rem);
  --product-card-gap: clamp(2rem, 4vw, 3rem);
  --product-track-bg: #e8e8e8;
  /* Höhe des weißen Bereichs über den Produktbildern (Titelzeile inkl. Padding); an Headline-Zeilenzahl angepasst */
  --product-head-band-height: clamp(2.35rem, 8.5vw, 4.15rem);
  --products-slider-pad-y-top: clamp(0.1rem, 0.28vw, 0.22rem);
  --products-slider-pad-y-bottom: clamp(0.18rem, 0.5vw, 0.33rem);
  /* Sichtbares Grau ca. oben/unten am weißen Produktbild */
  --product-image-gray-gap: 5px;
  /* Abstand Titelblock ↔ Bildzeile (muss zu ::before-Start passen) */
  --product-card-head-image-gap: 0px;
  --product-title-color: var(--brand-yellow);
  --footer-panel-bg: #ffffff;
  --footer-elev-1: 0 2px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --footer-nav-bg: #f5f5f5;
  /* Topbar fix: Höhe ≈ min-height + untere Linie (siehe .topbar / .topbar-surface) */
  --topbar-fixed-height: 121px;
  --reveal-duration: 0.55s;
  --reveal-distance: 16px;
  --support-visual-slide: clamp(4rem, 14vw, 8rem);
  --font-text: "Lato", system-ui, sans-serif;
  --font-heading: "Oswald", system-ui, sans-serif;
  --font-claim: "Oswald", system-ui, sans-serif;
}

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

html {
  font-size: var(--step-size);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: #ffffff;
}

body {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: clamp(16px, 1.04rem, 18px);
  line-height: 1.55;
}

/* Überschriften: Oswald Regular (400) */
h1,
h2,
h3,
.products-header h2,
.product-card-head h3,
.footer-card h2,
.footer-links h3 {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* Scroll-Reveal: ohne JS bleibt Inhalt sichtbar (kein html.js-reveal) */
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .reveal:not(.is-in-view) {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
    transition:
      opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
      transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js-reveal .reveal.is-in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Facts: Container statisch, Karten gestaffelt */
  html.js-reveal .reveal.reveal--stagger-facts:not(.is-in-view) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html.js-reveal .reveal.reveal--stagger-facts:not(.is-in-view) .fact-card {
    opacity: 0;
    transform: translate3d(0, calc(var(--reveal-distance) * 0.85), 0);
    transition:
      opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js-reveal .reveal.reveal--stagger-facts.is-in-view .fact-card:nth-child(1) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.03s;
  }

  html.js-reveal .reveal.reveal--stagger-facts.is-in-view .fact-card:nth-child(2) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.1s;
  }

  html.js-reveal .reveal.reveal--stagger-facts.is-in-view .fact-card:nth-child(3) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.17s;
  }

  html.js-reveal .reveal.reveal--stagger-facts.is-in-view .fact-card:nth-child(4) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.24s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal,
  html.js-reveal .reveal.reveal--stagger-facts .fact-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.page-frame {
  width: 100%;
  max-width: var(--page-max-width);
  margin-inline: auto;
  box-sizing: border-box;
  background: #ffffff;
}

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

.container {
  width: var(--band-inner-width);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.band-inner {
  width: var(--band-inner-width);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  min-width: 0;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
  max-width: none;
  background: transparent;
}

.topbar-surface {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--muted-border);
  box-shadow: var(--header-bar-shadow);
}

.topbar {
  min-height: 120px;
  max-height: 120px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.brand-small-logo {
  display: block;
  width: auto;
  height: 75px;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.logo-mark {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.digit-3 {
  color: var(--brand-red);
}

.letter-c {
  color: var(--brand-grey);
}

.logo-text {
  color: var(--brand-red);
  line-height: 1.05;
}

.header-actions {
  flex-shrink: 0;
}

.header-actions-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions-list > li:has([aria-label="Warenkorb"]),
.header-actions-list > li:has([aria-label="Mein Konto"]),
.header-actions-list > li:has(.header-icon-btn--lang),
.header-actions-list > li:has([aria-label="Menü öffnen"]) {
  display: none;
}

.header-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: var(--header-icon-bg);
  color: var(--header-icon-stroke);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.18s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .header-icon-btn:hover {
    transform: scale(1.05);
  }

  .header-icon-btn:active {
    transform: scale(0.96);
  }
}

a.header-icon-btn {
  text-decoration: none;
}

.header-icon-btn:hover,
.header-icon-btn:focus-visible {
  background: #e6e6e6;
  color: #4a4a4a;
  outline: none;
}

.header-icon-btn:focus-visible {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--brand-red);
}

.header-icon-btn svg {
  display: block;
}

.header-icon-btn--lang {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero-surface {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--topbar-fixed-height);
  background: #ffffff;
  border-bottom: 1px solid var(--muted-border);
  box-shadow: var(--header-bar-shadow);
}

.hero {
  min-height: clamp(220px, max(24vw, 22vh), 400px);
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  grid-template-areas: "hero-logo hero-visual";
  gap: clamp(0.65rem, 1.5vw, 1.1rem);
  align-items: stretch;
  align-content: stretch;
  padding: 1rem 0 1rem;
}

.hero-content {
  grid-area: hero-logo;
  justify-self: start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.hero-visual {
  grid-area: hero-visual;
  justify-self: stretch;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
  min-height: clamp(200px, max(22vw, 20vh), 340px);
  overflow: visible;
  background-color: #ffffff;
}

.hero-visual__frame {
  flex: 1 1 auto;
  width: 100%;
  min-height: clamp(200px, max(22vw, 20vh), 340px);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: right center;
  border: none;
}

.hero-video-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  padding: clamp(0.35rem, 0.9vw, 0.55rem) 0 0;
}

.hero-video-dot {
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border: 2px solid var(--brand-yellow);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero-video-dot.is-active {
  background: var(--brand-yellow);
}

.hero-video-dot:hover {
  transform: scale(1.12);
}

.hero-video-dot:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

@media (min-width: 761px) {
  .hero {
    padding: 1rem min(0.35rem, 1.2vw) 1rem min(0.65rem, 1.8vw);
  }

  .hero-visual {
    margin-right: clamp(-0.75rem, -2.2vw, -0.2rem);
  }
}

.brand-main {
  margin: 0;
  max-width: min(504px, 92%);
  line-height: 0;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: min(504px, 92%);
  height: auto;
  aspect-ratio: 1115.44 / 590.45;
  object-fit: contain;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: hero-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-visual {
    animation: hero-rise 0.68s 0.07s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes hero-rise {
    from {
      opacity: 0;
      transform: translate3d(0, 14px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}

/* Keine Schatten auf Bild- bzw. Bild-Platzhalter-Flächen */
.hero-visual,
.support-visual .ph-image,
.support-visual-img,
.ph-support-left,
.ph-support-right,
.ph-product {
  box-shadow: none;
}

.ph-image {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #dddddd;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, #f4f4f4 0%, #e9e9e9 100%);
  color: rgba(122, 122, 122, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

main section {
  padding: 1.35rem 0;
}

section.products {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: clamp(0.65rem, 1.6vw, 1rem) 0 0;
  /*
   * Sektion liegt außerhalb .page-frame: sonst wäre 100% in --band-inner-width = Viewport
   * und breiter als der Text im Frame. Gleiche effektive Spaltenbreite wie .container im Main.
   */
  --band-inner-width: min(
    max(0px, min(100vw, var(--page-max-width)) - 2rem),
    var(--page-max-width)
  );
}

.support-section {
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "support-left support-mid support-right";
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  align-items: center;
  padding-block: clamp(2rem, 4.5vw, 3.25rem);
  background: #ffffff;
}

.support-visual {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.support-visual--left {
  grid-area: support-left;
  justify-self: start;
  align-self: center;
  width: 100%;
  max-width: min(100%, 420px);
}

.support-visual--right {
  grid-area: support-right;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: min(100%, 380px);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes support-visual-in-left {
    from {
      opacity: 0;
      transform: translate3d(calc(var(--support-visual-slide) * -1), 0, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes support-visual-in-right {
    from {
      opacity: 0;
      transform: translate3d(var(--support-visual-slide), 0, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .support-visual--left {
    animation: support-visual-in-left 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
  }

  .support-visual--right {
    animation: support-visual-in-right 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.35s;
  }
}

.support-visual .ph-image {
  flex: 1;
  width: 100%;
  min-height: clamp(200px, 28vw, 280px);
}

.support-visual-img {
  display: block;
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  min-height: clamp(200px, 28vw, 280px);
  object-fit: cover;
}

.ph-support-left {
  border-radius: 4px;
  border: none;
  transform: perspective(1000px) rotateY(11deg);
  transform-origin: left center;
}

.ph-support-right {
  border: none;
  border-radius: 0;
  mask-image: radial-gradient(ellipse 75% 88% at 62% 48%, #000 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 88% at 62% 48%, #000 42%, transparent 78%);
}

.support-copy {
  grid-area: support-mid;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0.5rem 0.75rem;
}

.support-block {
  margin: 0;
  width: 100%;
  max-width: min(100%, 36rem);
}

.support-lead {
  margin: 0 0 clamp(1.5rem, 4vw, 2.75rem);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  font-family: var(--font-claim);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--support-text-yellow);
}

.support-lead-line {
  display: block;
  font-size: 40pt;
}

.support-lead-line--medium {
  font-weight: 500;
}

.support-lead-line--light {
  font-weight: 300;
}

.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-claim);
  font-size: 16pt;
  font-weight: 500;
  color: var(--support-text-yellow);
}

.support-list li {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1.35;
  text-align: left;
}

.support-list li::before {
  content: "+";
  flex-shrink: 0;
  color: var(--support-text-yellow);
  font-weight: 500;
}

.ph-device,
.ph-patient {
  min-height: 220px;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.16rem 0.46rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 400;
  background: var(--brand-yellow);
}

.about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 6.5vw, 4.75rem);
  padding-top: clamp(2.25rem, 5vw, 3.75rem);
  /* weniger Weißraum zur Facts-Zeile (ca. 50px gesamt) */
  padding-bottom: clamp(0.55rem, 1.35vw, 1rem);
  background: #ffffff;
}

.about-split {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(1.75rem, 4vw, 3.25rem);
}

.about-split__copy {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 0;
}

.about-split__copy h2 {
  display: inline-block;
  margin: 0;
  padding: 0.4em 0.6em;
  vertical-align: top;
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: 25pt;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--brand-yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about-split__copy h2 + p {
  margin-top: clamp(1rem, 2.2vw, 1.35rem);
}

.about-split__copy p {
  margin: 0 0 0.85rem;
  font-family: var(--font-text);
  font-size: 15pt;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.55;
  text-align: left;
}

.about-split__copy p:last-child {
  margin-bottom: 0;
}

.legal-page-main {
  margin-top: var(--topbar-fixed-height);
  width: 100%;
}

.legal-page {
  gap: 0;
  padding-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.legal-page__copy {
  flex: none;
  width: 100%;
  max-width: 100%;
}

.legal-page__copy h1 {
  display: inline-block;
  margin: 0;
  padding: 0.4em 0.6em;
  vertical-align: top;
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: 25pt;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
  background: var(--brand-yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.legal-page__copy h1 + p,
.legal-page__copy h1 + h2 {
  margin-top: clamp(1rem, 2.2vw, 1.35rem);
}

.legal-page__copy h2 {
  display: block;
  margin: clamp(1.35rem, 2.8vw, 1.75rem) 0 0.65rem;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 18pt;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text-color);
  background: transparent;
  box-decoration-break: initial;
  -webkit-box-decoration-break: initial;
}

.legal-page__copy h3 {
  margin: 1.1rem 0 0.55rem;
  font-family: var(--font-heading);
  font-size: 16pt;
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-color);
}

.legal-page__copy h4 {
  margin: 0.9rem 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 15pt;
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-color);
}

.legal-page__copy strong {
  font-weight: 700;
}

.legal-page__copy p,
.legal-page__copy li {
  margin: 0 0 0.85rem;
  font-family: var(--font-text);
  font-size: 15pt;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.55;
  text-align: left;
}

.legal-page__copy ul,
.legal-page__copy ol {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.legal-page__copy li:last-child {
  margin-bottom: 0;
}

.legal-page__copy p:last-child {
  margin-bottom: 0;
}

.legal-page__copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-links a[aria-current="page"] {
  text-decoration: underline;
}

.about-split__media {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  align-self: flex-start;
  display: block;
}

.about-split__media--video {
  position: relative;
  width: 100%;
  max-height: min(520px, 72vh);
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    4px 6px 14px rgba(0, 0, 0, 0.08),
    10px 14px 32px rgba(0, 0, 0, 0.12);
}

.about-split__media--video.is-playing .about-video-play {
  opacity: 0;
  pointer-events: none;
}

.about-video-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3.25rem, 9vw, 4.75rem);
  height: clamp(3.25rem, 9vw, 4.75rem);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition:
    opacity 0.25s ease,
    transform 0.2s ease;
}

.about-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.about-video-play:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px var(--brand-red);
}

.about-video-play svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-split-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border: none;
  cursor: pointer;
}

.about-split-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(520px, 72vh);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border: none;
  border-radius: 2px;
  /* Schlagschatten wie Referenz: nach rechts/unten, weich */
  box-shadow:
    4px 6px 14px rgba(0, 0, 0, 0.08),
    10px 14px 32px rgba(0, 0, 0, 0.12);
}

.about-split--image-left .about-split-img {
  box-shadow: none;
}

.facts {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(0.5rem, 2vw, 1.75rem);
  padding-top: clamp(calc(0.55rem + 50px), calc(1.35vw + 50px), calc(1rem + 50px));
  padding-bottom: clamp(calc(2rem + 50px), calc(4.5vw + 50px), calc(3.25rem + 50px));
  background: #ffffff;
}

.fact-card {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.fact-icon img {
  display: block;
  width: 120px;
  height: 120px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.fact-card p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.04rem, 18px);
  line-height: 1.55;
  font-weight: 400;
  color: #333333;
}

.products-intro {
  padding-bottom: 20px;
  box-sizing: border-box;
}

.products-header {
  margin: 0;
  width: 100%;
  text-align: left;
}

.products-header h2 {
  display: inline-block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 25pt;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--product-title-color);
  background: transparent;
}

.products-slider-surface {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: var(--products-slider-pad-y-top) 0 var(--products-slider-pad-y-bottom);
}

/* Grauer Streifen: volle Viewport-Breite; Karten-Spalte bleibt über --band-inner-width ausgerichtet */
.products-slider-surface::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: calc(var(--products-slider-pad-y-top) + var(--product-head-band-height) + var(--product-card-head-image-gap));
  bottom: var(--products-slider-pad-y-bottom);
  background: var(--product-track-bg);
  pointer-events: none;
}

.products-slider-surface > .product-slider {
  position: relative;
  z-index: 1;
}

.product-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: var(--product-slider-gutter);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.product-slider__track-column {
  flex: 0 1 auto;
  width: var(--band-inner-width);
  max-width: calc(100% - 2 * var(--product-slider-arrow) - 2 * var(--product-slider-gutter));
  min-width: 0;
}

.slider-control {
  flex-shrink: 0;
  align-self: center;
  width: 100%;
  max-width: var(--product-slider-arrow);
  min-height: 80px;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--brand-yellow);
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(20px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.slider-control svg {
  display: block;
  width: 72px;
  height: 72px;
}

.slider-control:hover:not(:disabled) {
  opacity: 0.85;
  transform: translateY(20px) scale(1.06);
}

.slider-control:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.product-viewport {
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
  /* Weiß/Grau: Fläche kommt von .products-slider-surface (durchgehend grau) + weißem Seitenhintergrund */
  background: transparent;
}

.product-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: var(--product-card-gap);
  row-gap: 0;
  transition: transform 0.35s ease;
  will-change: transform;
  background: transparent;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
  justify-items: stretch;
  gap: var(--product-card-head-image-gap);
  min-width: 0;
  min-height: 0;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.product-card-head {
  width: 100%;
  box-sizing: border-box;
  min-height: var(--product-head-band-height);
  padding: clamp(0.18rem, 0.45vw, 0.26rem) 0 0;
  background: transparent;
  text-align: left;
}

/* Titel wie Referenz: schwarz, schmal hoch, gelbe Linie breiter als Text (volle Kopfzeilenbreite) */
.product-card-head h3 {
  margin: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 18pt;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #111111;
  background: transparent;
  border: none;
}

.product-card-head h3::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(2px, 0.35vw, 4px);
  margin-top: 0.2em;
  background: var(--brand-yellow);
}

.product-card.is-active .product-card-head h3::after {
  height: clamp(3px, 0.45vw, 5px);
}

.product-card .ph-product,
.product-card .ph-image.ph-product {
  grid-row: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(100% - (2 * var(--product-image-gray-gap)));
  aspect-ratio: 1;
  margin-inline: 0;
  margin-top: var(--product-image-gray-gap);
  margin-bottom: var(--product-image-gray-gap);
  align-self: center;
  min-height: 0;
  border: none !important;
  border-radius: 2px;
  background: #ffffff;
}

.product-card .ph-image.ph-product:not(.ph-product--photo) {
  color: rgba(90, 90, 90, 0.45);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .product-card .ph-image.ph-product {
    transition: box-shadow 0.22s ease;
  }

  .product-card:hover .ph-image.ph-product {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
}

.ph-product {
  aspect-ratio: 1;
  min-height: 100px;
  width: 100%;
  border-radius: 2px;
  border: 1px solid #d8d8d8;
}

.ph-product--photo {
  display: grid;
  padding: 0;
  place-items: stretch;
}

.ph-product--photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin-top: 0;
  border-top: none;
  position: relative;
  z-index: 1;
  background: #ffffff;
  /* Außerhalb .page-frame: gleiche Content-Breite wie Main / Produkte (s. section.products) */
  --band-inner-width: min(
    max(0px, min(100vw, var(--page-max-width)) - 2rem),
    var(--page-max-width)
  );
}

.footer-main-surface {
  width: 100%;
  max-width: 100%;
  padding: calc(clamp(1.1rem, 2.6vw, 1.75rem) + 60px) 0 calc(clamp(1rem, 2.2vw, 1.5rem) + 60px);
  background: transparent;
  overflow-x: hidden;
}

.band-track-align {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.band-track-align__gutter {
  display: none;
}

.band-track-align__main {
  width: 100%;
  min-width: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(0.85rem, 2.2vw, 1.35rem);
  row-gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

.footer-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--footer-panel-bg);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--footer-elev-1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-card--brand,
.footer-card--location {
  box-shadow: none;
  border: none;
}

.footer-card h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 0;
  padding: 0.4em clamp(0.55rem, 1.2vw, 0.85rem);
  padding-bottom: 0.4em;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 18pt;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--brand-yellow);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-card-body {
  flex: 1;
  padding: 0.9rem clamp(0.75rem, 1.8vw, 1.15rem) 1.05rem;
  background: var(--footer-panel-bg);
}

.footer-card--brand h2,
.footer-card--location h2,
.footer-card--contact h2 {
  padding-bottom: 0.4em;
  border-bottom: 4px solid #ffffff;
}

.footer-card-body--contact {
  background: var(--brand-yellow);
  padding: 0.8rem clamp(0.75rem, 1.8vw, 1.15rem) 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  flex: 1;
  line-height: 0;
  text-decoration: none;
}

.footer-card--brand .footer-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 0;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(0.65rem, 1.5vw, 1rem);
}

.footer-brand-logo {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: clamp(108px, 16.8vw, 144px);
  object-fit: contain;
}

.footer-location-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-location-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 0.12rem;
}

.footer-location-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-address {
  margin: 0;
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 16pt;
  line-height: 1.45;
  font-weight: 300;
  color: #222222;
}

.footer-address strong {
  font-weight: 300;
}

.footer-bottom__main .footer-site-group-logo {
  display: block;
  position: relative;
  z-index: 2;
  width: auto;
  max-width: min(100%, 200px);
  height: auto;
  max-height: clamp(1.6rem, 4.2vw, 2.25rem);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.footer-address a {
  color: #222222;
  text-decoration: none;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.9vw, 1.7rem);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 0;
  color: #1a1a1a;
  display: grid;
  place-items: center;
}

.footer-contact-icon img {
  display: block;
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.footer-contact-list a {
  font-family: var(--font-heading);
  font-size: 16pt;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #141414;
  text-decoration: none;
}

.footer-contact-list a:hover {
  text-decoration: underline;
}

.footer-links-surface {
  display: none;
  width: 100%;
  background: var(--footer-nav-bg);
  box-shadow: inset 0 6px 10px -4px rgba(0, 0, 0, 0.1);
  padding: clamp(1.25rem, 2.8vw, 1.75rem) 0 clamp(1.15rem, 2.6vw, 1.65rem);
}

.footer-links {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(1rem, 3.2vw, 2.25rem);
  row-gap: 0;
  align-items: start;
  box-sizing: border-box;
}

.footer-links nav {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.footer-links h3 {
  margin: 0 0 0.65rem;
  font-size: 25pt;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: #222222;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.04rem, 18px);
  line-height: 1.55;
  font-weight: 300;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  box-shadow: none;
}

.footer-bottom .band-inner {
  padding-block: clamp(0.95rem, 2.2vw, 1.25rem);
}

.footer-bottom__main {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.25rem;
  min-height: 52px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.legal-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 1;
  max-width: calc(100% - 2 * clamp(5rem, 22vw, 12rem));
  box-sizing: border-box;
}

.legal-links li {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.legal-links li + li::before {
  content: "|";
  margin: 0 0.55rem;
  color: #b8b8b8;
  font-weight: 300;
  pointer-events: none;
}

.legal-links a {
  font-size: 0.68rem;
  color: #4a4a4a;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .support-visual .ph-image {
    min-height: 200px;
  }

  .support-visual--left,
  .support-visual--right {
    max-width: 100%;
    justify-self: stretch;
  }

  .ph-support-left {
    transform: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 3vw, 2rem);
    row-gap: clamp(1rem, 2.5vw, 1.35rem);
  }
}

@media (max-width: 760px) {
  .header-actions-list {
    gap: 0.35rem;
  }

  .header-icon-btn {
    width: 34px;
    height: 34px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero-logo"
      "hero-visual";
    min-height: clamp(220px, max(28vw, 32vh), 440px);
  }

  .hero-visual {
    justify-self: stretch;
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    row-gap: clamp(0.85rem, 2.2vw, 1.1rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: clamp(1rem, 2.5vw, 1.35rem);
  }

  .about-split {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.15rem;
  }

  .footer-bottom .band-inner {
    padding-block: 1rem;
  }

  .footer-bottom__main {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    row-gap: 0.65rem;
  }

  .footer-bottom__main .legal-links {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    max-width: none;
    width: 100%;
    margin: 0;
    justify-content: center;
    align-self: center;
    order: 2;
  }

  .footer-bottom__main .footer-site-group-logo {
    align-self: flex-start;
    order: 1;
  }
}

@media (max-width: 520px) {
  .support-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "support-left"
      "support-mid"
      "support-right";
  }

  .support-visual--left,
  .support-visual--right {
    justify-self: center;
    max-width: min(100%, 360px);
  }

  .ph-support-right {
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: 6px;
    border: 1px solid #d8d8d8;
  }

  .support-lead-line {
    font-size: clamp(2rem, 10vw, 40pt);
  }

  .support-list {
    font-size: clamp(0.95rem, 4.2vw, 16pt);
  }

  .facts {
    gap: 0.35rem;
  }

  .fact-icon {
    width: min(120px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .fact-icon img {
    width: 100%;
    height: auto;
    max-width: 120px;
    max-height: 120px;
  }

  .fact-card p {
    line-height: 1.5;
  }

  .product-slider {
    gap: 0.35rem;
  }

  .product-slider__track-column {
    max-width: calc(100% - 120px);
  }

  .slider-control {
    max-width: 52px;
  }

  .slider-control svg {
    width: 44px;
    height: 44px;
  }
}

