/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  background: #eef3f7;
}

:root {
  --text: #111;
  --text-muted: #333;
  --surface: #fff;
  --surface-soft: #f6f7f8;
  --header-bg: rgba(15, 20, 26, 0.56);
  --header-strong: rgba(15, 20, 26, 0.92);
  --on-dark: rgba(255, 255, 255, 0.95);
  --on-dark-muted: rgba(255, 255, 255, 0.6);
  --on-dark-border: rgba(255, 255, 255, 0.1);
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #f5f8fb 0%, #eef3f7 100%);
}

body.home-page::before {
  background: linear-gradient(180deg, #f7f9fb 0%, #edf3f8 100%);
}

body.is-drawer-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 9px;
  top: 9px;
  z-index: 11000;
  padding: 7.5px 10.5px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  border: 0.75px solid #d9dde1;
  transform: translateY(-180%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 12px;
}

.page-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(15px, 2.8vw, 30px) 13.5px 31.5px;
}

.page-intro {
  margin: 0 0 16.5px;
  padding: clamp(15px, 2.4vw, 25.5px);
  border-radius: 21px;
  border: 0.75px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(130deg, rgba(12, 19, 28, 0.86), rgba(27, 41, 55, 0.74));
  backdrop-filter: blur(9px) saturate(125%);
  -webkit-backdrop-filter: blur(9px) saturate(125%);
  box-shadow:
    0 15px 33px rgba(7, 16, 25, 0.24),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.18);
}

.page-intro__kicker {
  margin: 0 0 7.5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(225, 236, 248, 0.78);
}

.page-intro__title {
  margin: 0 0 9px;
  color: rgb(247, 166, 0);
  font-size: clamp(22.5px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

.page-intro__text {
  margin: 0;
  max-width: 90ch;
  color: rgba(238, 245, 252, 0.93);
  font-size: clamp(13.5px, 1.45vw, 18.75px);
  line-height: 1.5;
}

.page-section {
  margin-top: 13.5px;
}

.page-section__title {
  margin: 0 0 9px;
  color: #102334;
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 800;
  line-height: 1.2;
}

.page-section__lead {
  margin: -1.5px 0 10.5px;
  color: #294052;
  font-size: clamp(12.75px, 1.08vw, 14.25px);
  line-height: 1.5;
  max-width: 78ch;
}

.info-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10.5px;
}

.info-grid.info-grid--stack {
  grid-template-columns: 1fr;
}

.info-grid.info-grid--career {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  grid-template-areas:
    "open contact"
    "initiative contact";
  align-items: start;
}

.career-overview__open {
  grid-area: open;
}

.career-overview__contact {
  grid-area: contact;
}

.career-overview__initiative {
  grid-area: initiative;
}

.career-overview__open,
.career-overview__initiative {
  min-height: 100%;
}

.career-overview__initiative a {
  overflow-wrap: anywhere;
}

.career-contact-list {
  margin-top: 10.5px;
  display: grid;
  gap: 9px;
}

.career-contact-list--compact {
  margin-top: 6px;
}

.career-contact-list__item {
  display: grid;
  gap: 3px;
  padding: 9px 10.5px;
  border-radius: 10.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(244, 248, 252, 0.7);
}

.career-contact-list__item strong {
  color: #102334;
  font-size: clamp(10.5px, 0.95vw, 12px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.career-contact-list__item span,
.career-contact-list__item a {
  color: #203545;
  font-size: clamp(12px, 1vw, 14.25px);
  line-height: 1.55;
  text-decoration: none;
}

.career-contact-list__item a {
  color: #153148;
  font-weight: 700;
}

.career-contact-list__item a:hover {
  text-decoration: underline;
}

.info-card {
  border-radius: 15px;
  padding: 13.5px 13.5px 15px;
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 7.5px 18px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.5);
}

.info-card h2 {
  margin: 0 0 6px;
  color: #102334;
  font-size: clamp(16.5px, 1.6vw, 22.5px);
  line-height: 1.2;
}

.info-card__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(195px, 38vw, 420px);
  object-fit: contain;
  object-position: center;
  border-radius: 10.5px;
  margin: 0 0 10.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background: rgba(244, 248, 252, 0.75);
}

.info-card__image--wide-crop {
  height: clamp(142.5px, 22vw, 225px);
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.info-card p {
  margin: 0;
  color: #2a3d4f;
  font-size: clamp(12.75px, 1.2vw, 15.75px);
  line-height: 1.45;
}

.info-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.info-card__list li {
  margin: 0;
  position: relative;
  padding-left: 9px;
  color: #2a3d4f;
  font-size: clamp(12.75px, 1.2vw, 15.75px);
  line-height: 1.45;
}

.info-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.info-grid.info-grid--zubehoer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.info-grid.info-grid--zubehoer .info-card--wide {
  grid-column: 1 / -1;
}

.info-card.info-card--zubehoer {
  display: grid;
  grid-template-rows: clamp(210px, 24vw, 285px) auto;
  gap: 10.5px;
}

.info-card__image.info-card__image--zubehoer {
  width: 100%;
  height: 100%;
  border-radius: 10.5px;
  object-position: center;
  object-fit: contain;
  max-height: none;
  margin: 0;
  border: 0;
  background: transparent;
}

.info-card__image.info-card__image--zubehoer-zyklon {
  max-height: clamp(202.5px, 24vw, 300px);
  width: 112%;
  max-width: none;
  clip-path: inset(10% 14% 10% 14%);
  transform: translate(-34px, -9px) scale(1.08);
  transform-origin: center;
}

.info-card__switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10.5px;
  align-items: stretch;
}

.info-card__image.info-card__image--zubehoer-switch {
  width: 100%;
  max-width: 405px;
  justify-self: start;
}

.info-card__image.info-card__image--zubehoer-switch-single {
  justify-self: center;
  width: 104%;
  max-width: none;
  transform: translateX(16px) scale(1.01);
}

.info-card__image.info-card__image--zubehoer-switch-double {
  width: 111%;
  max-width: none;
  justify-self: center;
  transform: translateX(4px) scale(1.02);
  transform-origin: center;
}

.info-card__image.info-card__image--zubehoer-spares {
  width: min(100%, 405px);
  justify-self: start;
}

.info-card.info-card--zubehoer-spares-card {
  grid-template-columns: clamp(210px, 24vw, 300px) minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22.5px);
  padding: clamp(12px, 1.8vw, 18px);
}

.info-card.info-card--zubehoer-spares-card .info-card__content {
  gap: 6px;
}

.info-card.info-card--zubehoer-spares-card h3 {
  margin: 0;
  color: #102334;
  font-size: clamp(16.5px, 1.4vw, 21px);
  line-height: 1.2;
}

.info-card__image.info-card__image--zubehoer-spares {
  width: 100%;
  max-width: none;
  height: clamp(195px, 22vw, 270px);
}

.info-card--zubehoer .info-card__content {
  display: grid;
  gap: 4.5px;
}

.info-card--zubehoer h2 {
  margin: 0;
}

.info-card--zubehoer p {
  margin: 0;
  max-width: 72ch;
}

.info-card--zubehoer.info-card--zubehoer-text {
  grid-template-rows: auto;
}

.career-teaser {
  margin-top: 12px;
}

.career-teaser__card {
  border-radius: 15px;
  padding: clamp(12px, 2vw, 18px);
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 7.5px 18px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.5);
}

.career-teaser__card h2 {
  margin: 0 0 6px;
  color: #102334;
  font-size: clamp(18px, 1.9vw, 25.5px);
  line-height: 1.2;
}

.career-teaser__card p {
  margin: 0 0 9px;
  color: #2a3d4f;
  font-size: clamp(12px, 1.1vw, 14.25px);
  line-height: 1.45;
}

.career-teaser__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 749.25px;
  padding: 7.5px 13.5px;
  background: linear-gradient(120deg, #0f2436, #173956);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 7.5px 15px rgba(15, 36, 54, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.career-teaser__link:hover {
  transform: translateY(-0.75px);
}

.career-teaser__link:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.6);
  outline-offset: 1.5px;
}

.job-posting {
  margin-top: 12px;
}

.job-posting__card {
  border-radius: 15px;
  padding: clamp(12px, 2vw, 18px);
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 7.5px 18px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.5);
}

.job-posting__card h2 {
  margin: 0 0 6px;
  color: #102334;
  font-size: clamp(18px, 1.9vw, 25.5px);
  line-height: 1.2;
}

.job-posting__card p {
  margin: 0 0 9px;
  color: #2a3d4f;
  font-size: clamp(12px, 1.1vw, 14.25px);
  line-height: 1.45;
}

.job-posting__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 749.25px;
  padding: 7.5px 13.5px;
  margin-bottom: 9px;
  background: linear-gradient(120deg, #0f2436, #173956);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 7.5px 15px rgba(15, 36, 54, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-posting__download:hover {
  transform: translateY(-0.75px);
}

.job-posting__download:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.6);
  outline-offset: 1.5px;
}

.job-posting__preview {
  position: relative;
  width: min(615px, 100%);
  margin: 0 auto;
  aspect-ratio: 210 / 297;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.job-posting__preview-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: zoom-in;
  text-decoration: none;
}

.job-posting__canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.job-posting__preview-fallback {
  position: absolute;
  inset: auto 0 13.5px 0;
  text-align: center;
  color: #344b5f;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 0.75px 0 rgba(255, 255, 255, 0.6);
}

.location-map {
  margin-top: 12px;
}

.location-map__card {
  border-radius: 15px;
  padding: clamp(12px, 2vw, 18px);
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 7.5px 18px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.5);
}

.location-map__card h2 {
  margin: 0 0 4.5px;
  color: #102334;
  font-size: clamp(18px, 1.9vw, 25.5px);
  line-height: 1.2;
}

.location-map__card p {
  margin: 0 0 9px;
  color: #2a3d4f;
  font-size: clamp(12px, 1.1vw, 14.25px);
  line-height: 1.45;
}

.location-map__embed {
  border-radius: 10.5px;
  overflow: clip;
  border: 0.75px solid rgba(16, 35, 53, 0.12);
}

.location-map__embed iframe {
  display: block;
  width: 100%;
  height: clamp(210px, 36vw, 322.5px);
  border: 0;
}

.legal-content {
  margin-top: 12px;
  display: grid;
  gap: 9px;
}

.legal-single h2 {
  margin-bottom: 10.5px;
}

.legal-single h3 {
  margin: 12px 0 4.5px;
  color: #102334;
  font-size: clamp(14.25px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.3;
}

.legal-single p {
  margin: 0 0 4.5px;
}

.site-footer {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 13.5px 19.5px;
}

.site-footer__inner {
  border-radius: 10.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.12);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 6px 13.5px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.5);
  padding: 7.5px 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10.5px;
  flex-wrap: wrap;
}

.site-footer__divider {
  color: rgba(16, 35, 53, 0.35);
}

.site-footer a {
  color: #102334;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer a:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.6);
  outline-offset: 1.5px;
  border-radius: 3px;
}

.contact-form-section {
  margin-top: 12px;
}

.contact-form-card {
  border-radius: 15px;
  padding: clamp(12px, 2vw, 18px);
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 7.5px 18px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.5);
}

.contact-form-card h2 {
  margin: 0 0 6px;
  color: #102334;
  font-size: clamp(18px, 1.9vw, 25.5px);
  line-height: 1.2;
}

.contact-form-card p {
  margin: 0 0 10.5px;
  color: #2a3d4f;
  font-size: clamp(12px, 1.15vw, 14.25px);
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 9px;
}

.contact-form__status {
  margin: 0 0 10.5px;
  padding: 10.5px 12px;
  border-radius: 10.5px;
  border: 0.75px solid rgba(21, 54, 83, 0.1);
  font-size: clamp(12px, 1.02vw, 14.25px);
  line-height: 1.5;
}

.contact-form__status--success {
  color: #123a2c;
  background: rgba(226, 247, 236, 0.92);
  border-color: rgba(33, 122, 80, 0.18);
}

.contact-form__status--error {
  color: #6b1f1f;
  background: rgba(252, 236, 236, 0.94);
  border-color: rgba(194, 57, 57, 0.18);
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__field {
  display: grid;
  gap: 4.5px;
}

.contact-form__field label {
  font-weight: 700;
  color: #102334;
  font-size: clamp(10.5px, 0.95vw, 12px);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 0.75px solid rgba(21, 54, 83, 0.22);
  border-radius: 9px;
  padding: 8.25px 9px;
  font: inherit;
  color: #102334;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 105px;
}

.contact-form__field input:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: none;
  border-color: rgba(37, 150, 190, 0.7);
  box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.15);
}

.contact-form__field input:user-invalid,
.contact-form__field textarea:user-invalid {
  border-color: rgba(194, 57, 57, 0.7);
}

.contact-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 1.5px;
  color: #203545;
  font-size: clamp(11.25px, 0.95vw, 12.75px);
  line-height: 1.5;
}

.contact-form__consent input {
  margin: 1.5px 0 0;
  width: 13.5px;
  height: 13.5px;
  accent-color: #173956;
}

.contact-form__consent a {
  color: #153148;
  font-weight: 700;
  text-decoration: none;
}

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

.contact-form__submit {
  justify-self: start;
  border: 0;
  border-radius: 749.25px;
  padding: 8.25px 15px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #0f2436, #173956);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 7.5px 15px rgba(15, 36, 54, 0.26);
}

.contact-form__submit:hover {
  transform: translateY(-0.75px);
}

.contact-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.home {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(13.5px, 3vw, 31.5px) 13.5px 31.5px;
  min-height: calc(100vh - 105px);
}

.hero {
  position: relative;
  display: grid;
  gap: 18px;
  isolation: isolate;
}

body.fx-liquid .hero::before {
  content: "";
  position: absolute;
  left: -52.5px;
  right: -52.5px;
  top: -67.5px;
  height: 240px;
  pointer-events: none;
  z-index: 0;
  filter: blur(21px);
  opacity: 0.5;
  background:
    radial-gradient(50% 70% at 76% 36%, rgba(37, 150, 190, 0.42), rgba(37, 150, 190, 0) 78%),
    radial-gradient(44% 65% at 24% 42%, rgba(247, 166, 0, 0.36), rgba(247, 166, 0, 0) 78%);
  animation: heroMistShift 17s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  border-radius: 749.25px;
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

body.fx-liquid .hero__glow {
  mix-blend-mode: screen;
  animation: blobOrbit 18s ease-in-out infinite;
  will-change: transform, border-radius;
}

.hero__glow--one {
  width: 240px;
  height: 165px;
  top: 30px;
  right: 60px;
  background: rgba(247, 166, 0, 0.34);
  animation-delay: -4s;
  animation-duration: 17s;
}

.hero__glow--two {
  width: 195px;
  height: 150px;
  bottom: 22.5px;
  left: 15px;
  background: rgba(37, 150, 190, 0.28);
  animation-delay: -10s;
  animation-duration: 20s;
}

@keyframes blobOrbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 59% 41% 52% 48% / 46% 54% 46% 54%;
  }
  33% {
    transform: translate3d(16.5px, -12px, 0) scale(1.1);
    border-radius: 43% 57% 39% 61% / 63% 37% 63% 37%;
  }
  66% {
    transform: translate3d(-15px, 10.5px, 0) scale(0.92);
    border-radius: 67% 33% 56% 44% / 38% 62% 38% 62%;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 59% 41% 52% 48% / 46% 54% 46% 54%;
  }
}

@keyframes heroMistShift {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-13.5px);
  }
  100% {
    transform: translateX(0);
  }
}

.hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.9fr);
  gap: clamp(12px, 2vw, 21px);
  padding: clamp(13.5px, 2.5vw, 25.5px);
  border-radius: 22.5px;
  border: 0.75px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(130deg, rgba(10, 15, 21, 0.86), rgba(27, 42, 56, 0.74));
  backdrop-filter: blur(10.5px) saturate(128%);
  -webkit-backdrop-filter: blur(10.5px) saturate(128%);
  box-shadow:
    0 18px 43.5px rgba(7, 15, 24, 0.32),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero__copy {
  align-self: center;
}

.hero__kicker {
  margin: 0 0 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9.75px;
  font-weight: 700;
  color: rgba(237, 244, 252, 0.8);
}

.hero__title {
  margin: 0 0 12px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: rgb(247, 166, 0);
  font-size: clamp(24px, 3.9vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

.hero__text {
  margin: 0;
  max-width: 84ch;
  color: rgba(237, 244, 252, 0.92);
  font-size: clamp(14.25px, 1.4vw, 20.25px);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__cta {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43.5px;
  padding: 9px 18px;
  border-radius: 749.25px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.hero__cta:hover {
  transform: translateY(-0.75px);
}

.hero__cta:focus-visible {
  outline: 1.5px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2.25px;
}

.hero__cta--primary {
  background: rgb(247, 166, 0);
  color: #1b1100;
  box-shadow:
    0 7.5px 18px rgba(247, 166, 0, 0.34),
    inset 0 0.75px 0 rgba(255, 240, 204, 0.5);
}

.hero__cta--primary:hover {
  background: rgb(255, 181, 30);
}

.hero__cta--secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 0.75px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero__media {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  border: 0.75px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 31.5px rgba(0, 0, 0, 0.33);
  min-height: clamp(240px, 42vw, 420px);
}

.hero__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__media-link {
  display: block;
  height: 100%;
}

.hero__highlights {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10.5px;
}

.hero__highlights li {
  border-radius: 15px;
  padding: 12px 12px 13.5px;
  background: rgba(255, 255, 255, 0.8);
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  backdrop-filter: blur(7.5px) saturate(125%);
  -webkit-backdrop-filter: blur(7.5px) saturate(125%);
  box-shadow:
    0 7.5px 18px rgba(19, 44, 66, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.46);
}

.hero__highlights strong {
  display: block;
  margin: 0 0 4.5px;
  color: #0f2233;
  font-size: 15px;
  line-height: 1.2;
}

.hero__highlights span {
  color: #243648;
  font-size: 12px;
  line-height: 1.45;
}

.home-brief {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 13.5px;
  align-items: center;
  border-radius: 16.5px;
  padding: clamp(10.5px, 1.8vw, 18px);
  padding-left: clamp(18px, 2.3vw, 28.5px);
  background: rgba(255, 255, 255, 0.8);
  border: 0.75px solid rgba(16, 35, 53, 0.09);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 9px 21px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.46);
}

.home-brief::before {
  content: "";
  position: absolute;
  left: clamp(10.5px, 1.8vw, 18px);
  top: clamp(10.5px, 1.8vw, 18px);
  bottom: clamp(10.5px, 1.8vw, 18px);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(247, 166, 0), rgba(247, 166, 0, 0.32));
}

.home-brief__body {
  display: grid;
  gap: 4.5px;
}

.home-brief__eyebrow {
  margin: 0;
  color: #5b7084;
  font-size: 9.75px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-brief__title {
  margin: 0;
  color: #13283a;
  font-size: clamp(16.5px, 1.7vw, 22.5px);
  line-height: 1.2;
}
.home-brief__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7.5px;
}

.home-brief__list li {
  margin: 0;
  position: relative;
  padding-left: 9px;
  color: #1f374a;
  font-size: clamp(12.75px, 1.12vw, 15.75px);
  line-height: 1.5;
}

.home-brief__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  bottom: 0.24em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.home-brief__text {
  margin: 0;
  color: #1f374a;
  font-size: clamp(12px, 1.02vw, 14.25px);
  line-height: 1.55;
  max-width: 72ch;
}

.home-brief__list li + li {
  margin-top: 0;
}

.home-brief__text + .home-brief__text {
  margin-top: 0.75em;
}

.home-brief__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
  min-width: clamp(234px, 22vw, 288px);
  padding: 15px 16.5px;
  border-radius: 13.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.74), rgba(244, 248, 252, 0.6)),
    radial-gradient(circle at 16% 18%, rgba(247, 166, 0, 0.08), transparent 38%);
  box-shadow:
    inset 0 0.75px 0 rgba(255, 255, 255, 0.42),
    0 6px 15px rgba(18, 40, 61, 0.06);
  gap: 9px;
}

.home-brief__actions .hero__cta {
  align-self: center;
}

.home-brief__note {
  display: block;
  width: 100%;
  padding-top: 10.5px;
  border-top: 0.75px solid rgba(16, 35, 53, 0.08);
  color: #3d5568;
  font-size: clamp(13.5px, 1.02vw, 15.75px);
  line-height: 1.55;
  max-width: 26ch;
  text-align: center;
}

.home-evolution {
  position: relative;
  z-index: 1;
}

.home-evolution__card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(15px, 2vw, 24px);
  border-radius: 18px;
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 166, 0, 0.05), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(37, 150, 190, 0.11), transparent 30%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 252, 0.86));
  box-shadow:
    0 12px 24px rgba(17, 39, 58, 0.12),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.58);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease;
}

.home-evolution__card:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.42);
  outline-offset: 2.25px;
}

.home-evolution__copy {
  display: grid;
  gap: 6px;
  max-width: 60ch;
  position: relative;
  z-index: 1;
}

.home-evolution__eyebrow {
  margin: 0;
  color: #8d6407;
  font-size: 9.75px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-evolution__title {
  margin: 0;
  color: #12283a;
  font-size: clamp(20px, 2.1vw, 31.5px);
  line-height: 1.12;
}

.home-evolution__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  min-height: clamp(300px, 42vw, 510px);
  padding: clamp(6px, 0.8vw, 12px);
}

.home-evolution__backdrop {
  position: absolute;
  inset: 30% auto auto 68%;
  transform: translate(-50%, -50%) rotate(-30deg);
  z-index: 0;
  color: rgba(16, 40, 58, 0.2);
  font-size: clamp(34px, 6.5vw, 90px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.home-evolution__facts {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10.5px;
  align-self: center;
  justify-self: start;
  max-width: 28ch;
}

.home-evolution__facts li {
  position: relative;
  margin: 0;
  padding-left: 12px;
  color: #234055;
  font-size: clamp(13.5px, 1.02vw, 16.5px);
  line-height: 1.55;
  font-weight: 600;
}

.home-evolution__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 2.25px;
  border-radius: 2px;
  background: rgb(247, 166, 0);
}

.home-evolution__video {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: center;
  width: min(100%, 980px);
  display: block;
  height: auto;
  object-fit: contain;
  transform: translate(-14%, -7%) scale(1.38);
  transform-origin: center center;
  filter: drop-shadow(0 20px 30px rgba(12, 29, 44, 0.16));
  pointer-events: none;
}

.home-evolution__video--mobile {
  display: none !important;
}

.home-evolution__video--desktop {
  display: block !important;
}

.flyer-viewer {
  position: relative;
  z-index: 1;
}

.flyer-viewer__card {
  border-radius: 16.5px;
  padding: clamp(10.5px, 1.8vw, 18px);
  border: 0.75px solid rgba(16, 35, 53, 0.09);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 9px 21px rgba(18, 40, 61, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.46);
}

.flyer-viewer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10.5px;
  margin-bottom: 12px;
}

.flyer-viewer__hint {
  color: #274154;
  font-size: clamp(11.25px, 1vw, 13.5px);
  line-height: 1.45;
}

.flyer-viewer__preview {
  width: min(690px, 100%);
}

.home-overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
  align-items: stretch;
}

.home-feature-media {
  order: 1;
  margin: 0;
  border-radius: 16.5px;
  overflow: hidden;
  border: 0.75px solid rgba(16, 35, 53, 0.11);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(7.5px) saturate(120%);
  -webkit-backdrop-filter: blur(7.5px) saturate(120%);
  box-shadow:
    0 10.5px 22.5px rgba(18, 40, 61, 0.12),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.48);
  display: grid;
  grid-template-rows: 1fr auto;
}

.home-feature-media picture,
.home-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-feature-media__link {
  display: block;
  height: 100%;
}

.home-feature-media img {
  min-height: 210px;
  object-fit: cover;
  object-position: center;
}

.home-feature-media__caption {
  display: grid;
  gap: 3px;
  padding: 9px 10.5px 10.5px;
  border-top: 0.75px solid rgba(17, 38, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.88));
}

.home-feature-media__caption strong {
  color: #142f44;
  font-size: clamp(12px, 1.1vw, 14.25px);
  line-height: 1.3;
  font-weight: 800;
}

.home-feature-media__caption span {
  color: #29465b;
  font-size: clamp(10.5px, 0.95vw, 12px);
  line-height: 1.4;
}

.home-product-spotlight {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  padding: clamp(12px, 1.9vw, 18px);
  border-radius: 18px;
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 252, 0.86));
  box-shadow:
    0 12px 24px rgba(17, 39, 58, 0.12),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.58);
  align-items: stretch;
}

.home-product-spotlight__media {
  display: block;
  border-radius: 13.5px;
  overflow: hidden;
  border: 0.75px solid rgba(16, 35, 53, 0.12);
  min-height: clamp(270px, 33vw, 420px);
  box-shadow: 0 9px 18px rgba(10, 24, 36, 0.16);
}

.home-product-spotlight__media picture,
.home-product-spotlight__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-product-spotlight__media img {
  object-fit: cover;
  object-position: center;
}

.home-product-spotlight__content {
  display: grid;
  gap: 9px;
  align-content: center;
}

.home-product-spotlight__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  font-weight: 700;
  color: #2d536d;
}

.home-product-spotlight__title {
  margin: 0;
  color: #10273a;
  font-size: clamp(18px, 1.95vw, 28.5px);
  line-height: 1.15;
}

.home-product-spotlight__text {
  margin: 0;
  color: #234155;
  font-size: clamp(12px, 1.05vw, 14.25px);
  line-height: 1.5;
  max-width: 60ch;
}

.home-product-spotlight__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7.5px;
}

.home-product-spotlight__list li {
  margin: 0;
  position: relative;
  padding-left: 10.5px;
  color: #1f3b4f;
  font-size: clamp(11.25px, 0.95vw, 13.5px);
  line-height: 1.45;
}

.home-product-spotlight__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 2.25px;
  border-radius: 2px;
  background: rgb(247, 166, 0);
}

.home-product-spotlight__actions {
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-product-spotlight__cta-secondary {
  background: rgba(14, 34, 50, 0.08);
  border: 0.75px solid rgba(14, 34, 50, 0.22);
  color: #10273a;
  box-shadow: none;
}

.home-product-spotlight__cta-secondary:hover {
  background: rgba(14, 34, 50, 0.12);
}

.home-product-spotlight__cta-secondary:focus-visible {
  outline: 1.5px solid rgba(16, 39, 58, 0.45);
  outline-offset: 2.25px;
}

.home-sections {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.home-block {
  display: grid;
  gap: 7.5px;
}

.home-block__title {
  margin: 0;
  color: #13283a;
  font-size: clamp(18px, 2vw, 25.5px);
  line-height: 1.2;
}

.home-block .hero__highlights {
  grid-template-columns: 1fr;
}

.home-faq {
  display: grid;
  gap: 7.5px;
}

.home-faq__title {
  margin: 0;
  color: #13283a;
  font-size: clamp(18px, 2vw, 25.5px);
  line-height: 1.2;
}

.home-faq__accordion {
  display: grid;
  gap: 7.5px;
}

.home-faq__item {
  margin: 0;
  border-radius: 16.5px;
  background: linear-gradient(160deg, rgba(38, 41, 46, 0.92), rgba(56, 61, 67, 0.9));
  border: 0.75px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px) saturate(120%);
  -webkit-backdrop-filter: blur(9px) saturate(120%);
  box-shadow:
    0 12px 25.5px rgba(17, 22, 28, 0.28),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.14);
  overflow: clip;
  transition: border-color 0.2s ease;
}

.home-faq__item[open] {
  border-color: rgba(247, 166, 0, 0.5);
}

.home-faq__question {
  margin: 0;
  list-style: none;
  padding: clamp(10.5px, 1.8vw, 18px);
  color: #fff;
  font-size: clamp(16.5px, 1.55vw, 21.75px);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7.5px;
}

.home-faq__question::-webkit-details-marker {
  display: none;
}

.home-faq__question::marker {
  content: "";
}

.home-faq__question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1;
  transition:
    transform 0.25s ease,
    color 0.2s ease;
}

.home-faq__answer {
  padding: 0 clamp(10.5px, 1.8vw, 18px) clamp(10.5px, 1.8vw, 18px);
}

.home-faq__answer p {
  margin: 0;
  color: rgba(245, 248, 252, 0.95);
  font-size: clamp(12px, 1.05vw, 14.25px);
  line-height: 1.5;
}

.home-faq__answer :first-child {
  margin-top: 0;
}

.home-faq__answer :last-child {
  margin-bottom: 0;
}

.home-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7.5px;
}

.home-faq__list li {
  margin: 0;
  padding-left: 9px;
  border-left: 2.25px solid rgb(247, 166, 0);
  color: rgba(245, 248, 252, 0.96);
  font-size: clamp(12px, 1.02vw, 13.5px);
  line-height: 1.45;
}

.home-faq__list strong {
  color: #fff;
  font-weight: 800;
}

.home-faq__item[open] .home-faq__question {
  padding-bottom: 7.5px;
}

.home-faq__item > summary:hover::after {
  color: rgba(247, 166, 0, 0.95);
}

.home-faq__item > summary:focus-visible::after {
  color: rgba(247, 166, 0, 0.95);
}

.home-faq__item[open] .home-faq__question::after {
  transform: rotate(45deg);
}

.home-faq__item > summary {
  user-select: none;
  cursor: pointer;
}

.home-faq__item > summary:focus-visible {
  outline: none;
}

.home-faq__item:focus-within {
  outline: 1.5px solid rgba(247, 166, 0, 0.75);
  outline-offset: 1.5px;
}

@media (min-width: 1180px) {
  .page-intro {
    padding: clamp(24px, 2.3vw, 33px);
  }

  .page-intro__text,
  .page-section__lead,
  .info-card p,
  .contact-form-card p,
  .location-map__card p,
  .legal-single p {
    max-width: 72ch;
  }

  .page-section {
    margin-top: 18px;
  }

  .info-grid,
  .legal-content {
    gap: 15px;
  }

  .info-card,
  .contact-form-card,
  .location-map__card,
  .compare-visual,
  .nozzle-accessories__panel {
    padding: clamp(15px, 1.7vw, 24px);
  }

  .home {
    padding-inline: 18px;
  }

  .hero {
    gap: 24px;
  }

  .hero__panel {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    gap: clamp(18px, 2vw, 30px);
    padding: clamp(18px, 2.3vw, 30px);
  }

  .hero__copy {
    max-width: 64ch;
  }

  .hero__media {
    min-height: clamp(300px, 30vw, 470px);
  }

  .hero__highlights,
  .home-overview-grid,
  .home-sections {
    gap: 15px;
  }

  .home-brief {
    grid-template-columns: minmax(0, 1.28fr) minmax(240px, 0.72fr);
    gap: 18px;
    padding-right: clamp(18px, 1.9vw, 24px);
  }

  .home-product-spotlight {
    grid-template-columns: minmax(345px, 0.78fr) minmax(0, 1.05fr);
    gap: 18px;
    padding: clamp(15px, 1.8vw, 24px);
  }

  .home-product-spotlight__content {
    max-width: 64ch;
  }

  .nozzle {
    grid-template-columns: clamp(210px, 20vw, 255px) minmax(320px, 450px) minmax(220px, 300px);
    justify-content: space-between;
    gap: clamp(18px, 2vw, 28px);
  }

  .nozzle.nozzle--reverse {
    grid-template-columns: minmax(220px, 300px) minmax(320px, 450px) clamp(210px, 20vw, 255px);
  }

  .nozzle.nozzle--cnn {
    grid-template-columns: clamp(250px, 23vw, 330px) minmax(320px, 440px) minmax(220px, 300px);
  }

  .nozzle.nozzle--compact {
    grid-template-columns: clamp(240px, 23vw, 320px) minmax(320px, 430px);
    justify-content: start;
    gap: 24px;
  }

  .nozzle.nozzle--compact.nozzle--reverse {
    grid-template-columns: minmax(320px, 430px) clamp(240px, 23vw, 320px);
  }

  .nozzle__content {
    max-width: 430px;
  }

  .nozzle__aside {
    max-width: 290px;
  }

  .page-intro__title {
    font-size: clamp(28px, 3.3vw, 48px);
  }

  .page-intro__text {
    font-size: clamp(15.75px, 1.15vw, 20.25px);
    line-height: 1.58;
  }

  .page-section__title {
    font-size: clamp(21px, 1.7vw, 28px);
  }

  .page-section__lead,
  .info-card p,
  .contact-form-card p,
  .location-map__card p,
  .legal-single p,
  .home-product-spotlight__text,
  .home-brief__text,
  .nozzle__content li,
  .nozzle__summary,
  .data-col li,
  .advanced-copy__list li,
  .feeder-brief__text,
  .feeder-brief__list li {
    font-size: clamp(14.25px, 1vw, 16.5px);
    line-height: 1.6;
  }

  .info-card h2,
  .contact-form-card h2,
  .location-map__card h2,
  .data-col h4,
  .nozzle__content h2,
  .home-product-spotlight__title,
  .home-block__title,
  .home-faq__title {
    font-size: clamp(21px, 1.85vw, 31.5px);
  }

  .hero__title {
    font-size: clamp(31.5px, 3.7vw, 54px);
  }

  .hero__text {
    font-size: clamp(15.75px, 1.2vw, 21.75px);
    line-height: 1.6;
  }

  .hero__highlights strong {
    font-size: 16.5px;
  }

  .hero__highlights span,
  .home-product-spotlight__list li,
  .info-card__list li,
  .nozzle-accessories__list li,
  .nozzle__details summary {
    font-size: clamp(12.75px, 0.92vw, 15px);
    line-height: 1.55;
  }

  .home-brief__title {
    font-size: clamp(19.5px, 1.85vw, 27px);
  }

  .home-evolution__card {
    padding: clamp(18px, 1.9vw, 27px);
  }

  .home-evolution__title {
    font-size: clamp(24px, 2vw, 34.5px);
  }

  .home-evolution__stage {
    min-height: clamp(345px, 34vw, 540px);
    padding: clamp(9px, 1vw, 15px);
  }

  .home-evolution__backdrop {
    inset: 26% auto auto 70%;
    font-size: clamp(48px, 5.8vw, 110px);
    letter-spacing: 0.09em;
  }

  .home-evolution__video {
    width: min(100%, 1100px);
    transform: translate(-16%, -9%) scale(1.48);
  }

  .home-evolution__facts li {
    font-size: clamp(15px, 1vw, 18px);
  }

  .home-faq__question {
    font-size: clamp(18px, 1.7vw, 25.5px);
  }

  .advanced-copy__subtitle,
  .nozzle__details-content li,
  .contact-form__consent,
  .career-contact-list__item span,
  .career-contact-list__item a {
    font-size: clamp(13.5px, 0.96vw, 15.75px);
  }
}

@media (max-width: 1200px) {
  .hero__panel {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 240px;
  }

  .home-overview-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-media img {
    min-height: 195px;
  }

  .home-product-spotlight {
    grid-template-columns: 1fr;
  }

  .home-evolution__card {
    padding: 13.5px;
  }

  .home-evolution__stage {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 270px;
    padding: 6px;
    isolation: isolate;
  }

  .home-evolution__stage::before {
    content: "";
    position: absolute;
    inset: 7% 4% 3%;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 28%,
        rgba(255, 255, 255, 0.56) 46%,
        rgba(255, 255, 255, 0.9) 62%,
        rgba(255, 255, 255, 1) 76%,
        rgba(255, 255, 255, 1) 100%
      ),
      radial-gradient(
        ellipse 42% 34% at 56% 60%,
        rgba(255, 255, 255, 1) 0 26%,
        rgba(255, 255, 255, 0.98) 34%,
        rgba(255, 255, 255, 0.84) 50%,
        rgba(255, 255, 255, 0.42) 68%,
        rgba(255, 255, 255, 0) 100%
      );
  }

  .home-evolution__backdrop {
    inset: auto;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: clamp(44px, 8.8vw, 72px);
    letter-spacing: 0.045em;
  }

  .home-evolution__video {
    width: min(100%, 570px);
    justify-self: center;
    transform: translateY(1%) scale(1.12);
  }

  .home-evolution__video--desktop {
    display: none !important;
  }

  .home-evolution__video--mobile {
    display: block !important;
  }

  .home-product-spotlight__media {
    min-height: clamp(240px, 56vw, 360px);
  }

  .home-sections {
    grid-template-columns: 1fr;
  }

  .home-faq__title {
    font-size: clamp(17.25px, 2.6vw, 24px);
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  overflow: clip;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 18, 0.28) 0%,
    rgba(8, 12, 18, 0.08) 58%,
    rgba(8, 12, 18, 0) 100%
  );
  backdrop-filter: blur(13.5px) saturate(165%);
  -webkit-backdrop-filter: blur(13.5px) saturate(165%);
}

body.fx-liquid .topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  background:
    radial-gradient(110% 140% at 14% -20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 58%),
    linear-gradient(108deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.2) 74%, rgba(255, 255, 255, 0) 100%);
  animation: topbarSheen 11s ease-in-out infinite;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  height: 0.75px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.topbar__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 7.5px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  backdrop-filter: blur(18px) saturate(185%);
  -webkit-backdrop-filter: blur(18px) saturate(185%);
  background: linear-gradient(
    96deg,
    rgba(238, 246, 252, 0.62) 0%,
    rgba(166, 194, 214, 0.42) 37%,
    rgba(47, 68, 88, 0.49) 66%,
    rgba(13, 20, 30, 0.56) 100%
  );
  box-shadow:
    0 10.5px 21px rgba(8, 14, 21, 0.22),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.24);
}

body.fx-liquid .topbar__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0.16) 58%,
    rgba(255, 255, 255, 0) 100%
  );
}

@keyframes topbarSheen {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-13.5px);
  }
  100% {
    transform: translateX(0);
  }
}

.topbar__left {
  justify-self: start;
  position: relative;
  z-index: 1;
}

.topbar__left::before {
  content: none;
}

.topbar__right {
  justify-self: end;
  flex: 0 0 auto;
  min-width: 72px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lang-switch {
  display: inline-flex;
  visibility: visible;
  opacity: 1;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 749.25px;
  border: 0.75px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 16, 25, 0.36);
  backdrop-filter: blur(7.5px) saturate(130%);
  -webkit-backdrop-filter: blur(7.5px) saturate(130%);
}

.lang-switch__btn {
  all: unset;
  min-width: 28.5px;
  min-height: 25.5px;
  border-radius: 749.25px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switch__btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lang-switch__btn.is-active {
  color: #0f2638;
  background: rgba(247, 166, 0, 0.92);
}

.lang-switch__btn:focus-visible {
  outline: 1.5px solid rgba(255, 255, 255, 0.78);
  outline-offset: 1.5px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  height: 88.5px;
  width: auto;
  display: block;
  margin: 0;
  image-rendering: auto;
  filter: drop-shadow(0 3px 7.5px rgba(0, 0, 0, 0.35));
}

.topbar__center {
  justify-self: center;
  min-width: 0;
  display: flex;
  gap: 10.5px;
  align-items: center;
  padding: 5.25px 7.5px;
  border-radius: 13.5px;
  border: 0.75px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 16, 25, 0.3);
  backdrop-filter: blur(9px) saturate(130%);
  -webkit-backdrop-filter: blur(9px) saturate(130%);
}

.nav__link,
.nav__btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34.5px;
  padding: 0 15px;
  border-radius: 749.25px;
  color: var(--on-dark);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.15px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav__link:hover,
.nav__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-0.75px) scale(1.01);
}

.nav__link[aria-current="page"] {
  color: #fff6e1;
  background: rgba(247, 166, 0, 0.26);
  box-shadow: inset 0 0 0 0.75px rgba(247, 166, 0, 0.38);
}

.nav__btn[aria-expanded="true"] {
  color: #eaf8ff;
  background: rgba(37, 150, 190, 0.3);
  box-shadow: inset 0 0 0 0.75px rgba(126, 215, 245, 0.32);
}

.nav__btn:focus-visible,
.nav__link:focus-visible {
  outline: 1.5px solid rgba(255, 255, 255, 0.78);
  outline-offset: 1.5px;
}

.nav__link--mobile-home {
  display: none;
}

/* Overlay + Drawer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 16, 0.26);
  backdrop-filter: blur(2.25px) saturate(120%);
  -webkit-backdrop-filter: blur(2.25px) saturate(120%);
  z-index: 9000;
}

.overlay[hidden] {
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(382px, 92vw);
  height: 100vh;
  background: linear-gradient(
    108deg,
    rgba(64, 84, 104, 0.5) 0%,
    rgba(51, 69, 88, 0.45) 34%,
    rgba(28, 42, 57, 0.52) 68%,
    rgba(12, 19, 28, 0.62) 100%
  );
  backdrop-filter: blur(16.5px) saturate(170%);
  -webkit-backdrop-filter: blur(16.5px) saturate(170%);
  border-right: 0.75px solid rgba(209, 225, 239, 0.2);
  box-shadow:
    20px 0 45px rgba(2, 8, 14, 0.38),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.2);
  z-index: 9999;
  transform: translateX(calc(-100% - 24px));
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 18px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 10.5px;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.33;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0.08) 60%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(120% 90% at 100% 0%, rgba(126, 215, 245, 0.07), rgba(126, 215, 245, 0) 58%),
    radial-gradient(100% 75% at 100% 100%, rgba(247, 166, 0, 0.12), rgba(247, 166, 0, 0) 62%);
}

.drawer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 14, 21, 0.26), rgba(8, 14, 21, 0.08) 38%, rgba(8, 14, 21, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.drawer__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 0 10.5px;
  border-bottom: 0.75px solid rgba(255, 255, 255, 0.14);
}

.drawer__header strong {
  font-size: 12.75px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(238, 246, 252, 0.84);
}

.drawer__close {
  all: unset;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(236, 246, 255, 0.9);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.drawer__close:hover {
  color: rgba(255, 189, 51, 0.98);
  transform: scale(1.05);
}

.drawer__close:active {
  transform: scale(1);
}

.drawer__close:focus-visible {
  outline: 1.5px solid rgba(191, 235, 255, 0.85);
  outline-offset: 1.5px;
}

.drawer__nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding-top: 3px;
}

.drawer__nav a {
  all: unset;
  color: rgba(237, 245, 252, 0.94);
  font-size: 19.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 12px 4.5px 12px 3px;
  border-radius: 0;
  border: 0;
  border-bottom: 0.75px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  position: relative;
  transition:
    padding-left 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.drawer__nav a::before {
  content: "";
  width: 2.25px;
  height: 0;
  border-radius: 2.25px;
  background: rgba(247, 166, 0, 0);
  margin-right: 9px;
  transition: height 0.2s ease, background-color 0.2s ease;
}

.drawer__nav a::after {
  content: "";
  width: 7.5px;
  height: 7.5px;
  flex: 0 0 7.5px;
  border-top: 1.5px solid rgba(221, 235, 247, 0.62);
  border-right: 1.5px solid rgba(221, 235, 247, 0.62);
  color: transparent;
  transform: translateX(0) rotate(45deg);
  transform-origin: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.drawer__nav a[aria-current="page"] {
  color: #fffaf0;
  border-color: rgba(247, 166, 0, 0.56);
  padding-left: 7.5px;
}

.drawer__nav a[aria-current="page"]::before {
  background: rgba(247, 166, 0, 0.96);
  height: 72%;
}

.drawer__nav a[aria-current="page"]::after {
  border-color: rgba(255, 233, 189, 0.96);
}

.drawer__nav a:focus-visible {
  outline: 1.5px solid rgba(191, 235, 255, 0.85);
  outline-offset: 1.5px;
}

@media (hover: hover) and (pointer: fine) {
  .drawer__nav a:hover {
    color: #ffffff;
    padding-left: 7.5px;
    border-color: rgba(247, 166, 0, 0.5);
  }

  .drawer__nav a:hover::before {
    background: rgba(247, 166, 0, 0.94);
    height: 72%;
  }

  .drawer__nav a:hover::after {
    border-color: rgba(255, 233, 189, 0.96);
    transform: translateX(1.5px) rotate(45deg);
  }
}

.feeder-brief__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 15px;
  align-items: start;
  padding: clamp(13.5px, 2vw, 19.5px);
  border-radius: 16.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.92));
  box-shadow: 0 12px 25.5px rgba(18, 40, 61, 0.1);
}

.feeder-brief__eyebrow {
  margin: 0 0 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 76, 104, 0.78);
}

.feeder-brief__title {
  margin: 0;
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.15;
  color: #10283b;
}

.feeder-brief__text {
  margin: 9px 0 0;
  max-width: 44ch;
  color: #30485b;
  font-size: clamp(12.75px, 1.08vw, 15px);
  line-height: 1.55;
}

.feeder-brief__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10.5px;
}

.feeder-brief__list li {
  position: relative;
  margin: 0;
  padding: 1.5px 0 1.5px 10.5px;
  color: #203545;
  font-size: clamp(12px, 1vw, 14.25px);
  line-height: 1.5;
}

.feeder-brief__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}
/* Pulverförderer page */
.compare-visual {
  padding: clamp(13.5px, 2.3vw, 19.5px);
  border-radius: 16.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 250, 0.92));
  box-shadow: 0 12px 25.5px rgba(18, 40, 61, 0.12);
}

.compare-visual__inner {
  max-width: 100%;
  margin: 0;
}

.compare-visual__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.compare-item {
  display: grid;
  gap: 10.5px;
  align-content: start;
  border-radius: 12px;
  padding: 10.5px;
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.feeder-config__card {
  grid-template-columns: minmax(0, 1fr) minmax(285px, 0.9fr) minmax(0, 1fr);
  align-items: start;
}

.feeder-config__copy {
  padding-top: 6px;
}

.compare-col {
  padding: 0;
}

.compare-col img {
  width: 100%;
  height: clamp(285px, 46vw, 495px);
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 6px 15px rgba(7, 19, 30, 0.12);
  display: block;
}

.compare-col img.compare-col__image--contain {
  height: clamp(360px, 54vw, 620px);
  object-fit: cover;
  object-position: center 28%;
}

.compare-col h3 {
  margin: 10.5px 0 0;
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.15px;
  color: #11283b;
}

.data-col {
  padding: 0;
}

.data-col h4 {
  margin: 0 0 7.5px;
  text-align: center;
  color: #153148;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.2;
}

.data-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.data-col li {
  margin: 7.5px 0 0;
  font-size: clamp(12px, 1vw, 14.25px);
  line-height: 1.45;
  color: var(--text-muted);
}

.data-col--advanced {
  text-align: left;
  max-width: none;
}

.data-col--advanced h4 {
  text-align: center;
  margin-bottom: 4.5px;
  font-size: clamp(16.5px, 1.5vw, 22.5px);
  line-height: 1.2;
}

.advanced-copy__subtitle {
  margin: 0 0 9px;
  color: #1b3549;
  font-size: clamp(13.5px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.advanced-copy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 10.5px;
}

.advanced-copy__list li {
  margin: 0;
  position: relative;
  padding-left: 9px;
  padding-top: 1.5px;
  padding-bottom: 1.5px;
  color: #203545;
  font-size: clamp(12px, 1vw, 14.25px);
  line-height: 1.55;
  text-align: left;
}

.advanced-copy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.advanced-copy__list strong {
  color: #1b3549;
  font-weight: 650;
}

.advanced-copy__footnote {
  margin: 10.5px 0 0;
  color: #1f3546;
  font-size: clamp(12.75px, 1.05vw, 15.75px);
  line-height: 1.5;
}

/* Düsen page */
.nozzle-list {
  max-width: 100%;
  margin: 0;
  display: grid;
  gap: 18px;
}

.nozzle-accessories__panel {
  border-radius: 15px;
  padding: clamp(10.5px, 1.5vw, 15px);
  border: 0.75px solid rgba(16, 35, 53, 0.12);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
  box-shadow:
    0 9px 18px rgba(17, 37, 56, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.86);
}

.nozzle-accessories__panel summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 9px;
  position: relative;
  padding: 4.5px 0 9px 9px;
  min-height: 0;
  border-bottom: 0.75px solid rgba(16, 35, 53, 0.08);
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.nozzle-accessories__panel summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  bottom: 0.36em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.nozzle-accessories__panel summary::-webkit-details-marker {
  display: none;
}

.nozzle-accessories__panel summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  color: rgba(21, 47, 70, 0.64);
  margin-right: 4.5px;
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.nozzle-accessories__panel[open] summary::after {
  transform: rotate(225deg);
  color: #6b4600;
}

.nozzle-accessories__summary-copy {
  min-width: 0;
  display: block;
}

.nozzle-accessories__summary-title {
  display: block;
  color: #10283b;
  font-size: clamp(13.5px, 1.08vw, 16.5px);
  font-weight: 800;
  line-height: 1.2;
}

.nozzle-accessories__panel summary:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.45);
  outline-offset: 1.5px;
}

.nozzle-accessories__panel summary:hover {
  border-color: rgba(247, 166, 0, 0.24);
}

.nozzle-accessories__panel summary:hover::after {
  background: rgba(247, 166, 0, 0.12);
  box-shadow: inset 0 0 0 0.75px rgba(247, 166, 0, 0.18);
}

.nozzle-accessories__content {
  margin-top: 7.5px;
  display: grid;
  gap: 7.5px;
}

.nozzle-accessories__content p {
  margin: 0;
  color: #24384a;
  font-size: clamp(12px, 1vw, 14.25px);
  line-height: 1.45;
}

.nozzle-accessories__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7.5px;
}

.nozzle-accessories__items {
  display: grid;
  gap: 9px;
}

.nozzle-accessories__item {
  display: grid;
  grid-template-columns: clamp(165px, 21vw, 240px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: clamp(138px, 15vw, 192px);
  height: clamp(138px, 15vw, 192px);
  padding: 9px;
  border-radius: 12px;
  border: 0.75px solid rgba(16, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 4.5px 10.5px rgba(17, 37, 56, 0.06),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.7);
}

.nozzle-accessories__item-media {
  display: block;
  width: 100%;
  height: clamp(120px, 13.5vw, 180px);
  object-fit: contain;
  object-position: left center;
  justify-self: start;
}

.nozzle-accessories__item-media.nozzle-accessories__item-media--xy {
  width: 148%;
  max-width: none;
  height: clamp(120px, 13.5vw, 180px);
  clip-path: inset(6% 8% 7% 7%);
  transform: translate(-34px, -10px) scale(1.46);
  transform-origin: center;
}

.nozzle-accessories__item-media.nozzle-accessories__item-media--adapter {
  width: 156%;
  max-width: none;
  height: clamp(120px, 13.5vw, 180px);
  clip-path: inset(4% 5% 5% 4%);
  transform: translate(-36px, -2px) scale(1.46);
  transform-origin: center;
}

.nozzle-accessories__item-media.nozzle-accessories__item-media--extension {
  width: 112%;
  max-width: none;
  height: clamp(120px, 13.5vw, 180px);
  object-fit: contain;
  object-position: center center;
  justify-self: center;
  transform: translate(0, 0) scale(1.08);
  transform-origin: center;
}

.nozzle-accessories__item-media.nozzle-accessories__item-media--cooling {
  width: 116%;
  max-width: none;
  height: clamp(120px, 13.5vw, 180px);
  object-fit: contain;
  object-position: center center;
  justify-self: center;
  transform: translate(0, 4px) scale(0.98);
  transform-origin: center;
}

.nozzle-accessories__item-media.nozzle-accessories__item-media--shield {
  width: 136%;
  max-width: none;
  height: clamp(120px, 13.5vw, 180px);
  object-fit: contain;
  object-position: center center;
  justify-self: center;
  transform: translate(-1px, 2px) scale(1.04);
  transform-origin: center;
}

.nozzle-accessories__item-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.nozzle-accessories__item-copy h3 {
  margin: 0;
  color: #10283b;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
}

.nozzle-accessories__list li {
  margin: 0;
  position: relative;
  padding-left: 9px;
  color: #22394b;
  font-size: clamp(12px, 1.02vw, 15px);
  line-height: 1.45;
}

.nozzle-accessories__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.nozzle-accessories__list a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.nozzle-accessories__list a:hover {
  text-decoration: underline;
}

.nozzle-accessories__list a:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.45);
  outline-offset: 1.5px;
  border-radius: 3px;
}

.nozzle-accessories__footnote {
  margin: 0;
  color: #24384a;
  font-size: clamp(11.25px, 0.95vw, 13.5px);
  line-height: 1.45;
}

.nozzle-accessories__footnote a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.nozzle-accessories__footnote a:hover {
  text-decoration: underline;
}

.nozzle-accessories__footnote a:focus-visible {
  outline: 1.5px solid rgba(37, 150, 190, 0.45);
  outline-offset: 1.5px;
  border-radius: 3px;
}

.nozzle-accessories + .nozzle-list {
  margin-top: 24px;
}

.nozzle {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: clamp(157.5px, 26vw, 217.5px) minmax(0, 1fr) minmax(165px, 0.6fr);
  gap: clamp(12px, 1.5vw, 21px);
  align-items: center;
  border-radius: 18px;
  padding: clamp(10.5px, 1.5vw, 16.5px);
  border: 0.75px solid rgba(16, 35, 53, 0.1);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.95));
  box-shadow:
    0 7.5px 15px rgba(17, 37, 56, 0.08),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.86);
  transition: box-shadow 0.24s ease;
  overflow: hidden;
}

.nozzle:hover {
  box-shadow:
    0 10.5px 19.5px rgba(17, 37, 56, 0.1),
    inset 0 0.75px 0 rgba(255, 255, 255, 0.86);
}

.nozzle.nozzle--reverse {
  grid-template-columns: minmax(165px, 0.6fr) minmax(0, 1fr) clamp(157.5px, 26vw, 217.5px);
}

.nozzle.nozzle--reverse .nozzle__content {
  order: 1;
}

.nozzle.nozzle--reverse .nozzle__media {
  order: 2;
}

.nozzle__media {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nozzle.nozzle--reverse .nozzle__media {
  justify-content: flex-start;
}

.nozzle__media img {
  width: 100%;
  max-width: 217.5px;
  height: auto;
  max-height: clamp(187.5px, 24vw, 270px);
  display: block;
  object-fit: contain;
  object-position: right center;
  transform: none;
  filter: none;
}

.nozzle__media img.nozzle__media-img--angleoptik {
  width: clamp(288px, 30vw, 390px);
  max-width: none;
  max-height: none;
  clip-path: inset(8% 12% 6% 10%);
  transform: translateX(-6px) scale(1.2);
  transform-origin: center;
}

.nozzle__media img.nozzle__media-img--cnn {
  width: clamp(348px, 34vw, 438px);
  max-width: none;
  max-height: none;
  clip-path: inset(19% 34% 17% 31%);
  transform: scale(1.22);
  transform-origin: center;
}

.nozzle.nozzle--cnn {
  grid-template-columns: clamp(225px, 30vw, 315px) minmax(0, 1fr) minmax(210px, 0.72fr);
  min-height: clamp(210px, 22vw, 255px);
}

.nozzle.nozzle--cnn .nozzle__media {
  justify-content: center;
}

.nozzle.nozzle--cnn .nozzle__content {
  align-self: center;
}

.nozzle.nozzle--compact {
  grid-template-columns: clamp(187.5px, 30vw, 307.5px) minmax(0, 1fr);
  min-height: clamp(210px, 22vw, 255px);
}

.nozzle.nozzle--compact.nozzle--reverse {
  grid-template-columns: minmax(0, 1fr) clamp(187.5px, 30vw, 307.5px);
}

.nozzle.nozzle--compact .nozzle__media {
  justify-content: center;
}

.nozzle.nozzle--compact .nozzle__content {
  align-self: center;
}

.nozzle.nozzle--reverse .nozzle__media img {
  object-position: left center;
}

.nozzle__content {
  justify-self: start;
  max-width: 450px;
  margin-left: 3px;
}

.nozzle__content h2 {
  margin: 0 0 9px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #0f2536;
}

.nozzle__aside {
  align-self: center;
  justify-self: start;
  max-width: 255px;
}

.nozzle__summary {
  margin: 0;
  max-width: none;
  font-size: clamp(16.5px, 1.45vw, 22.5px);
  line-height: 1.4;
  font-weight: 500;
  color: #0f2536;
}

.nozzle__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7.5px;
}

.nozzle__details {
  margin-top: 7.5px;
}

.nozzle__details summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 9px;
  font-size: clamp(12.75px, 1vw, 15px);
  font-weight: 700;
  color: #153148;
}

.nozzle__details summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.nozzle__details summary::-webkit-details-marker {
  display: none;
}

.nozzle__details summary::after {
  content: "+";
  line-height: 1;
  font-size: 13.5px;
  transition: transform 0.2s ease;
}

.nozzle__details[open] summary::after {
  transform: rotate(45deg);
}

.nozzle__details-content {
  margin-top: 6px;
}

.nozzle__details-content ul {
  margin: 0;
  padding: 0;
}

.nozzle__content li {
  margin: 0;
  position: relative;
  padding-left: 9px;
  font-size: clamp(13.5px, 1.08vw, 16.5px);
  line-height: 1.58;
  color: #22394b;
}

.nozzle__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 2.25px;
  border-radius: 1.5px;
  background: rgb(247, 166, 0);
}

.nozzle.nozzle--reverse .nozzle__content {
  text-align: right;
  justify-self: end;
  margin-left: 0;
  margin-right: 3px;
}

.nozzle.nozzle--reverse .nozzle__summary {
  margin-left: auto;
}

.nozzle.nozzle--reverse .nozzle__aside {
  justify-self: end;
  text-align: right;
}

.nozzle.nozzle--reverse .nozzle__content li {
  padding-left: 0;
  padding-right: 9px;
  text-align: right;
}

.nozzle.nozzle--reverse .nozzle__content li::before {
  left: auto;
  right: 0;
}

.nozzle.nozzle--reverse .nozzle__details summary {
  padding-left: 0;
  padding-right: 9px;
  margin-left: auto;
}

.nozzle.nozzle--reverse .nozzle__details summary::before {
  left: auto;
  right: 0;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 10.5px 9px 21px;
  }

  .page-intro {
    margin-bottom: 10.5px;
    border-radius: 13.5px;
    padding: 12px;
  }

  .page-intro__title {
    font-size: clamp(21px, 7.3vw, 31.5px);
  }

  .page-intro__text {
    font-size: clamp(12.75px, 4.4vw, 15.75px);
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 7.5px;
  }

  .info-grid.info-grid--career {
    grid-template-columns: 1fr;
    grid-template-areas:
      "open"
      "initiative"
      "contact";
  }

  .info-grid.info-grid--zubehoer {
    gap: 7.5px;
  }

  .page-section__lead {
    margin-bottom: 9px;
    font-size: clamp(12px, 3.8vw, 13.5px);
  }

  .info-card__switch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    align-items: end;
  }

  .info-card__image.info-card__image--zubehoer-switch {
    max-width: none;
    width: 100%;
    justify-self: center;
  }

  .info-card__image.info-card__image--zubehoer-switch-single {
    width: 92%;
    transform: translateX(4px) scale(1);
  }

  .info-card__image.info-card__image--zubehoer-switch-double {
    width: 96%;
    justify-self: center;
    transform: translateX(0) scale(1);
  }

  .info-card--zubehoer.info-card--zubehoer-text {
    grid-template-rows: auto;
    gap: 10.5px;
  }

  .info-card__image.info-card__image--zubehoer-spares {
    width: 100%;
  }

  .info-card.info-card--zubehoer-spares-card {
    grid-template-columns: 1fr;
    gap: 10.5px;
    padding: 10.5px;
  }

  .info-card.info-card--zubehoer-spares-card h3 {
    font-size: clamp(15px, 4.8vw, 18px);
  }

  .info-card__image.info-card__image--zubehoer-spares {
    height: 180px;
  }

  .nozzle-accessories__item {
    grid-template-columns: 1fr;
    align-items: start;
    height: auto;
    min-height: 0;
  }

  .nozzle-accessories__item-media {
    height: 180px;
  }

  .nozzle-accessories__item-media.nozzle-accessories__item-media--xy {
    width: 150%;
    max-width: none;
    height: 180px;
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    clip-path: inset(6% 8% 7% 7%);
    transform: translate(0, -8px) scale(1.31);
  }

  .nozzle-accessories__item-media.nozzle-accessories__item-media--adapter {
    width: 158%;
    max-width: none;
    height: 180px;
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    clip-path: inset(4% 5% 5% 4%);
    transform: translate(0, -1px) scale(1.24);
  }

  .nozzle-accessories__item-media.nozzle-accessories__item-media--extension {
    width: 114%;
    max-width: none;
    height: 180px;
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    transform: translate(0, 0) scale(1.06);
  }

  .nozzle-accessories__item-media.nozzle-accessories__item-media--cooling {
    width: 118%;
    max-width: none;
    height: 180px;
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    transform: translate(0, 4px) scale(0.98);
  }

  .nozzle-accessories__item-media.nozzle-accessories__item-media--shield {
    width: 140%;
    max-width: none;
    height: 180px;
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    transform: translate(-1px, 2px) scale(1.02);
    transform-origin: center;
  }

  .info-card.info-card--zubehoer {
    grid-template-rows: 187.5px auto;
  }

  .info-card.info-card--zubehoer.info-card--zubehoer-text {
    grid-template-rows: auto;
  }

  .info-card__image.info-card__image--zubehoer {
    max-height: none;
  }

  .info-card__image.info-card__image--zubehoer-zyklon {
    max-height: none;
    width: 116%;
    clip-path: inset(11% 13% 11% 13%);
    transform: translate(-24px, -6px) scale(1.1);
  }

  .site-footer {
    padding: 0 9px 16.5px;
  }

  .site-footer__inner {
    border-radius: 9px;
    padding: 7.5px 9px;
    gap: 7.5px;
  }

  .contact-form-card {
    border-radius: 12px;
    padding: 10.5px;
  }

  .career-teaser__card {
    border-radius: 12px;
    padding: 10.5px;
  }

  .career-teaser__link {
    width: 100%;
    justify-content: center;
  }

  .job-posting__card {
    border-radius: 12px;
    padding: 10.5px;
  }

  .job-posting__download {
    width: 100%;
    justify-content: center;
  }

  .job-posting__preview {
    width: 100%;
  }

  .location-map__card {
    border-radius: 12px;
    padding: 10.5px;
  }

  .location-map__embed iframe {
    height: 225px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 12px;
  }

  .home {
    min-height: auto;
    padding: 12px 10.5px 22.5px;
  }

  .hero {
    gap: 12px;
  }

  .hero__panel {
    grid-template-columns: 1fr;
    border-radius: 15px;
    padding: 12px;
  }

  .hero__title {
    font-size: clamp(21px, 7.4vw, 33px);
  }

  .hero__text {
    font-size: clamp(12.75px, 4.4vw, 15.75px);
  }

  .hero__media {
    min-height: 195px;
  }

  .home-brief {
    grid-template-columns: 1fr;
    border-radius: 12px;
    padding: 10.5px;
    padding-left: 15px;
    gap: 9px;
  }

  .home-brief::before {
    left: 10.5px;
    top: 10.5px;
    bottom: 10.5px;
    width: 2.25px;
    border-radius: 999px;
  }

  .home-brief__eyebrow {
    font-size: 9px;
  }

  .home-brief__title {
    font-size: clamp(15px, 4.9vw, 19.5px);
  }

  .home-brief__text {
    font-size: clamp(12px, 3.9vw, 13.5px);
    line-height: 1.5;
  }

  .home-brief__actions {
    align-items: center;
    justify-self: start;
    min-width: 0;
    width: 100%;
    padding: 9px 9.75px;
    border-radius: 10.5px;
    gap: 7.5px;
  }

  .home-brief__note {
    font-size: clamp(10.5px, 3.4vw, 12px);
    padding-top: 7.5px;
    max-width: none;
    text-align: center;
  }

  .home-brief__list li {
    font-size: clamp(12px, 3.9vw, 13.5px);
    line-height: 1.45;
  }

  .home-evolution__card {
    border-radius: 12px;
    padding: 10.5px;
  }

  .home-evolution__title {
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .home-evolution__stage {
    grid-template-columns: 1fr;
    min-height: 225px;
    padding: 4.5px;
    gap: 9px;
  }

  .home-evolution__stage::before {
    inset: 9% 2% 1%;
    background:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 24%,
        rgba(255, 255, 255, 0.62) 42%,
        rgba(255, 255, 255, 0.92) 58%,
        rgba(255, 255, 255, 1) 72%,
        rgba(255, 255, 255, 1) 100%
      ),
      radial-gradient(
        ellipse 48% 37% at 54% 58%,
        rgba(255, 255, 255, 1) 0 24%,
        rgba(255, 255, 255, 0.98) 34%,
        rgba(255, 255, 255, 0.82) 52%,
        rgba(255, 255, 255, 0.34) 72%,
        rgba(255, 255, 255, 0) 100%
      );
  }

  .home-evolution__backdrop {
    inset: auto;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: 0.035em;
  }

  .home-evolution__facts {
    gap: 7.5px;
  }

  .home-evolution__facts li {
    padding-left: 12px;
  }

  .home-evolution__facts li::before {
    left: 0;
    top: 0.22em;
    bottom: 0.22em;
  }

  .home-evolution__copy,
  .home-evolution__facts {
    max-width: none;
  }

  .home-evolution__video {
    width: min(100%, 420px);
    justify-self: center;
    transform: translateY(1%) scale(1.08);
  }

  .home-evolution__facts li {
    font-size: clamp(12px, 3.9vw, 13.5px);
    line-height: 1.5;
  }

  .flyer-viewer__card {
    border-radius: 12px;
    padding: 10.5px;
  }

  .flyer-viewer__actions {
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 10.5px;
  }

  .flyer-viewer__hint {
    font-size: clamp(11.25px, 3.7vw, 12.75px);
  }

  .flyer-viewer__preview {
    width: 100%;
  }

  .home-feature-media {
    border-radius: 12px;
  }

  .home-feature-media__caption {
    gap: 2.25px;
    padding: 7.5px 9px 9px;
  }

  .home-feature-media__caption strong {
    font-size: clamp(11.25px, 3.6vw, 12.75px);
  }

  .home-feature-media__caption span {
    font-size: clamp(9.75px, 3.1vw, 11.25px);
  }

  .home-product-spotlight {
    border-radius: 12px;
    padding: 10.5px;
    gap: 10.5px;
  }

  .home-product-spotlight__media {
    border-radius: 10.5px;
    min-height: 225px;
  }

  .home-product-spotlight__kicker {
    font-size: 8.25px;
  }

  .home-product-spotlight__title {
    font-size: clamp(16.5px, 5.4vw, 22.5px);
  }

  .home-product-spotlight__text,
  .home-product-spotlight__list li {
    font-size: clamp(11.25px, 3.7vw, 12.75px);
  }

  .home-product-spotlight__actions {
    gap: 7.5px;
  }

  .home-faq__item {
    border-radius: 12px;
  }

  .home-faq__question {
    padding: 10.5px;
    font-size: clamp(15.75px, 5.2vw, 21.75px);
  }

  .home-faq__answer {
    padding: 0 10.5px 10.5px;
  }

  .home-faq__answer p,
  .home-faq__list li {
    font-size: clamp(11.25px, 3.7vw, 12.75px);
    line-height: 1.45;
  }

  .topbar__inner {
    padding: 6px 7.5px;
    border-radius: 0;
    width: 100%;
  }

  .topbar__center {
    gap: 7.5px;
    padding: 3.75px 5.25px;
  }

  .brand__logo {
    height: 67.5px;
  }

  .topbar__right {
    min-width: 63px;
  }

  .nav__link,
  .nav__btn {
    font-size: 14.25px;
    min-height: 31.5px;
    padding: 0 10.5px;
  }

  .compare-visual__cards,
  .nozzle,
  .nozzle.nozzle--reverse {
    grid-template-columns: 1fr;
  }

  .feeder-config__card {
    grid-template-columns: 1fr;
  }

  .feeder-config__copy {
    padding-top: 0;
  }

  .compare-col img {
    height: 240px;
  }

  .nozzle__media img {
    max-height: 195px;
    transform: none;
  }

  .nozzle__media img.nozzle__media-img--angleoptik {
    width: min(300px, 88vw);
    clip-path: inset(8% 12% 6% 10%);
    transform: translateX(-3px) scale(1.14);
  }

  .nozzle__media img.nozzle__media-img--cnn {
    width: min(336px, 90vw);
    clip-path: inset(19% 33% 17% 31%);
    transform: scale(1.17);
  }

  .nozzle.nozzle--cnn {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .nozzle.nozzle--compact {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .nozzle__media {
    justify-content: center;
  }

  .nozzle.nozzle--reverse .nozzle__media {
    order: 1;
    justify-content: center;
  }

  .nozzle__media img,
  .nozzle.nozzle--reverse .nozzle__media img {
    object-position: center;
    margin: 0 auto;
  }

  .nozzle.nozzle--reverse .nozzle__content {
    order: 2;
    text-align: left;
    justify-self: start;
    margin-right: 0;
  }

  .nozzle.nozzle--reverse .nozzle__aside {
    order: 3;
    justify-self: start;
    text-align: left;
  }

  .nozzle__content {
    margin-left: 0;
  }

  .nozzle__aside {
    max-width: none;
  }

  .nozzle.nozzle--reverse .nozzle__summary {
    margin-left: 0;
  }

  .nozzle.nozzle--reverse .nozzle__content li {
    text-align: left;
  }

  .nozzle.nozzle--reverse .nozzle__details summary {
    padding-right: 0;
    padding-left: 9px;
    margin-left: 0;
  }

  .nozzle.nozzle--reverse .nozzle__details summary::before {
    right: auto;
    left: 0;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding:
      6px
      max(6px, env(safe-area-inset-right))
      4.5px
      max(6px, env(safe-area-inset-left));
  }

  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 7.5px;
    row-gap: 6px;
    padding: 6px max(6px, env(safe-area-inset-right)) 6px max(6px, env(safe-area-inset-left));
    width: 100%;
  }

  .topbar__left {
    grid-column: 1 / 2;
    grid-row: 1;
    min-width: 0;
    align-self: center;
  }

  .topbar__right {
    grid-column: 2 / 3;
    grid-row: 1;
    min-width: 0;
    display: flex;
    justify-self: end;
    justify-content: flex-end;
    align-self: center;
    margin-left: auto;
  }

  .topbar__center {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    gap: 6px;
    overflow-x: auto;
    padding: 3px;
    border-radius: 9px;
  }

  .nav__link,
  .nav__btn {
    font-size: 12.75px;
    min-height: 28.5px;
    padding: 0 9px;
    white-space: nowrap;
  }

  .nav__link--mobile-home {
    display: inline-flex;
  }

  .brand__logo {
    height: 45px;
    max-width: min(170px, 42vw);
  }

  .lang-switch {
    flex-shrink: 0;
    gap: 1.5px;
    padding: 2.25px;
    margin-left: auto;
  }

  .lang-switch__btn {
    min-width: 24px;
    min-height: 21px;
    font-size: 9px;
    padding: 0 4px;
  }

  .info-card.info-card--zubehoer {
    grid-template-rows: auto auto;
    gap: 9px;
  }

  .info-card__image.info-card__image--zubehoer {
    height: 174px;
    align-self: center;
    object-position: center center;
  }

  .info-card__image.info-card__image--zubehoer-zyklon {
    width: 112%;
    height: 174px;
    clip-path: inset(11% 13% 11% 13%);
    transform: translate(-14px, -2px) scale(1.03);
  }

  .info-card__switch-grid {
    min-height: 168px;
    align-items: center;
  }

  .info-card__image.info-card__image--zubehoer-switch {
    height: 168px;
    object-fit: contain;
    object-position: center center;
    align-self: center;
  }

  .info-card__image.info-card__image--zubehoer-switch-single {
    width: 94%;
    transform: translateX(2px) scale(1);
  }

  .info-card__image.info-card__image--zubehoer-switch-double {
    width: 96%;
    transform: translateX(0) scale(1);
  }

  .drawer {
    width: min(325px, 90vw);
    padding: 12px;
    gap: 10.5px;
  }

  .drawer__header {
    padding-bottom: 7.5px;
  }

  .drawer__header strong {
    font-size: 12.75px;
  }

  .drawer__nav {
    gap: 6px;
  }

  .drawer__nav a {
    font-size: 16.5px;
    padding: 10.5px 3px;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}




