@import url("fonts.css");
@import url("hero-responsive.css");

:root {
  --blue: #01b5fd;
  --dark: #181a1f;
  --dark-soft: #24272e;
  --line: #343942;
  --text: #e7edf7;
  --text-dark: #121926;
  --muted: #8a97ab;
  --light: #f5f7fa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--dark);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: var(--dark);
}

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

main > section:not(:first-child):not(:has(.option-slider)):not(.news-overview-list) {
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

#produkte.section {
  content-visibility: visible;
}

main > section:has(.option-slider) {
  content-visibility: visible;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: url("assets/hlf_hero_1920.webp?v=3") 58% 50% / cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(
    95deg,
    rgba(10, 12, 18, 0.78) 0%,
    rgba(10, 12, 18, 0.52) 32%,
    rgba(10, 12, 18, 0.18) 52%,
    transparent 68%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(95deg, #000 0%, #000 48%, transparent 72%);
  mask-image: linear-gradient(95deg, #000 0%, #000 48%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

.hero .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(40rem, 50vw);
  padding: clamp(5.5rem, 12vh, 7.25rem) 0 clamp(3rem, 7vh, 4.75rem);
}

.hero .hero-kicker {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.hero h1 {
  margin: 0 0 1.45rem;
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero .hero-content > p:not(.hero-kicker) {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.68;
  color: rgba(231, 237, 247, 0.88);
}

.hero .hero-actions {
  margin-top: 2.15rem;
  gap: 0.85rem;
}

.hero .hero-actions .btn {
  min-height: 2.85rem;
  padding: 0.78rem 1.2rem;
}

@media (min-width: 981px) and (max-width: 1280px) {
}

@media (max-width: 980px) {
  .hero-bg {
    background-position: 56% 48%;
  }

  .hero .hero-content {
    max-width: none;
    padding: clamp(5rem, 11vh, 6.25rem) 0 clamp(2.75rem, 6vh, 3.75rem);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7.2vw, 2.65rem);
    margin-bottom: 1.2rem;
  }

  .hero .hero-kicker {
    margin-bottom: 0.95rem;
  }

  .hero .hero-actions {
    margin-top: 1.85rem;
  }
}

@media (max-width: 980px) and (orientation: portrait) {
  .hero-bg {
    background-position: 58% 46%;
    background-size: cover;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .hero-actions .btn {
    width: 100%;
    max-width: none;
  }
}

@keyframes hero-bg-drift-subtle {
  0% {
    background-position: center center, 48% 52%;
  }
  50% {
    background-position: center center, 50% 50%;
  }
  100% {
    background-position: center center, 52% 48%;
  }
}

.hero-shell {
  position: relative;
}

/* Einheitlicher Site-Header (Startseite + alle Unterseiten) */
.global-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 12000;
  background: rgba(7, 9, 13, 0.9);
  backdrop-filter: blur(26px) saturate(1.12);
  -webkit-backdrop-filter: blur(26px) saturate(1.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  box-sizing: border-box;
  isolation: isolate;
}

.global-topbar .container.hero-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
}

.hero-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0;
  margin: 0;
  transition: padding 180ms ease, min-height 180ms ease;
}

.global-topbar .hero-header {
  padding: 0.8rem 0;
}

.global-topbar .hero-header::before {
  display: none;
}

.global-topbar + main {
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.global-topbar + main > section:first-child {
  padding-top: clamp(4.25rem, 7.5vw, 5rem);
}

.global-topbar + main > section,
.global-topbar + main > footer {
  position: relative;
  z-index: 2;
}

/* Footer must always render above fixed hero backgrounds */
main + .site-footer,
.site-footer {
  position: relative;
  z-index: 3;
}

.global-topbar .logo-img {
  width: clamp(169px, 23.4vw, 286px);
  height: auto;
  transition: width 180ms ease, filter 180ms ease;
}

.logo-img {
  width: clamp(169px, 23.4vw, 286px);
  filter: brightness(1.24) saturate(1.55) drop-shadow(0 0 10px rgba(36, 200, 255, 0.46));
  transition: width 180ms ease, filter 180ms ease;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #d3dceb;
}

.main-nav a:hover {
  color: var(--blue);
}

.mobile-nav-toggle {
  display: none;
  width: 52px;
  height: 44px;
  border: 1px solid #2d3b4f;
  background: rgba(10, 16, 25, 0.86);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  cursor: pointer;
}

.mobile-nav-toggle .line {
  display: block;
  width: 24px;
  height: 2px;
  background: #01b5fd;
  border-radius: 999px;
  opacity: 1;
  transform: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-main-nav-global {
  display: none;
}

.hero-header.mobile-nav-open .mobile-nav-toggle .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hero-header.mobile-nav-open .mobile-nav-toggle .line:nth-child(2) {
  opacity: 0;
}

.hero-header.mobile-nav-open .mobile-nav-toggle .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.global-topbar + main .hero-header,
.global-topbar + main .series-hero .hero-header,
.global-topbar + main .laser2d-hero .hero-header {
  display: none;
}

.nav-dropdown {
  position: relative;
  z-index: 210;
  padding-bottom: 0.65rem;
  margin-bottom: -0.65rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 268px;
  display: block;
  padding: 0.4rem 0;
  background: rgba(8, 10, 14, 0.94);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  z-index: 220;
  transition:
    opacity 280ms ease 40ms,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1) 40ms,
    visibility 0s linear 320ms;
}

.dropdown-menu a {
  display: block;
  padding: 0.64rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-transform: none;
  font-size: 0.84rem;
  color: rgba(214, 223, 236, 0.92);
  transition: color 200ms ease, background-color 200ms ease;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1) 90ms,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) 90ms,
    visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .dropdown-menu {
    transform: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
    transition: opacity 180ms ease;
  }
}

.hero-content {
  max-width: 640px;
}

.hero-kicker {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0.5rem 0 1rem;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.05;
}

h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.28rem, 2.15vw, 1.95rem);
  color: var(--text-dark);
  text-transform: uppercase;
}

.hero-content p {
  max-width: 58ch;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero .hero-actions .btn {
  width: 190px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.72rem 1.05rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
  border-color: #b5c9df;
  box-shadow: 0 10px 24px rgba(20, 34, 55, 0.1);
}

.section {
  position: relative;
  padding: 2.35rem 0;
  background: var(--dark);
}

@media (min-width: 1024px) and (max-width: 1600px) {
  html {
    font-size: 15px;
  }

  .section {
    padding: 2rem 0;
  }

  .hero-content h1,
  .laser2d-hero-content h1,
  .series-hero-grid h1,
  .unternehmen-overview-hero-content h1 {
    font-size: clamp(1.9rem, 3.9vw, 2.9rem);
    line-height: 1.08;
  }

  .hero-content p,
  .laser2d-hero-content p,
  .series-hero-grid p {
    max-width: 44ch;
  }

  .category-grid,
  .machine-strip {
    gap: 0.62rem;
  }
}

.light,
.section.light {
  background: #f5f7fa;
}

.section.light {
  color: #2f3848;
}

.section.light h1,
.section.light h2,
.section.light h3,
.section.light h4 {
  color: var(--text-dark);
}

.section-kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  color: #01b5fd !important;
  font-weight: 700;
}

.section-kicker.kicker-uniform {
  font-size: 0.9rem;
  letter-spacing: 0.11em;
  line-height: 1.1;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.split-head p {
  margin: 0;
  color: #4f5d73;
  line-height: 1.55;
}

#produkte .split-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

#produkte .split-head .section-kicker {
  order: 1;
}

#produkte .split-head h2 {
  order: 2;
  margin: 0;
}

#produkte .split-head p:not(.section-kicker) {
  order: 3;
  max-width: 56ch;
}

.category-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

#produkte .category-grid .cat-card {
  position: relative;
}

#produkte .category-grid .cat-card .cat-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.cat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 0.54rem 0.54rem 0.72rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cat-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: none;
}

.cat-card h3 {
  margin: 0.72rem 0 0.35rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.98rem;
}

.cat-card p {
  margin: 0;
  color: #53627a;
  font-size: 0.9rem;
  max-width: 32ch;
}

.cat-link {
  position: static;
  margin-top: auto;
  align-self: flex-start;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cat-link span {
  color: var(--blue);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.cat-card:hover .cat-link span {
  transform: none;
}

.home-proof {
  padding-top: 2.6rem;
  background: #edf1f5;
}

@media (min-width: 981px) {
  .home-proof {
    background: #edf1f5;
  }
}

.home-proof-grid,
.home-logo-grid,
.home-service-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #dbe3ee;
  border-bottom: 0;
}

.home-proof-intro,
.home-logo-intro,
.home-service-intro,
.home-proof-card,
.home-logo-item,
.home-service-item {
  border-right: 1px solid #dbe3ee;
  border-bottom: 1px solid #dbe3ee;
  background: #fff;
  padding: 1.15rem 1rem;
}

.home-proof-grid > :nth-child(4n) {
  border-right: 0;
}

.home-proof-intro,
.home-logo-intro,
.home-service-intro {
  background: #f8fafd;
}

.home-proof-grid {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(166px, auto));
  background: url("assets/hintergrund-warum-hs.png") center 42% / cover no-repeat;
}

.home-proof-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 248, 252, 0.84) 0%,
    rgba(245, 248, 252, 0.76) 34%,
    rgba(245, 248, 252, 0.62) 58%,
    rgba(245, 248, 252, 0.39) 78%,
    rgba(245, 248, 252, 0.19) 100%
  );
  z-index: 0;
}

.home-proof-grid::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #dbe3ee;
  z-index: 2;
  pointer-events: none;
}

.home-proof-grid > * {
  position: relative;
  z-index: 1;
}

.home-proof-intro {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.2rem;
  background: rgba(248, 250, 253, 0.78);
}

.home-proof-card {
  min-height: 166px;
  background: rgba(255, 255, 255, 0.68);
}

.home-proof-grid > :last-child {
  border-right: 0;
}

.home-proof-intro h2,
.home-logo-intro h2,
.home-service-intro h2 {
  margin: 0;
  color: #102036;
  text-transform: none;
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
  line-height: 1.12;
}

.home-proof-intro p,
.home-logo-intro p,
.home-service-intro p {
  margin: 0.8rem 0 0;
  color: #42546d;
  line-height: 1.58;
}

.home-proof-intro h2 {
  font-size: clamp(1.45rem, 2.35vw, 2.05rem);
  line-height: 1.16;
}

.home-proof-intro p {
  font-size: 1.02rem;
  line-height: 1.62;
}

.home-proof-intro .btn {
  margin-top: 1.15rem;
  padding: 0.78rem 1.35rem;
  min-width: 178px;
  white-space: nowrap;
}

.home-proof-icon {
  color: var(--blue);
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.6rem;
}

.home-proof-icon svg {
  width: 100%;
  height: 100%;
}

.home-proof-card strong {
  display: block;
  color: #0f2239;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1;
  margin-bottom: 0.38rem;
}

.home-proof-card h3,
.home-service-item h3 {
  margin: 0;
  color: #0f2239;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.home-proof-card p,
.home-service-item p {
  margin: 0.45rem 0 0;
  color: #4d607a;
  font-size: 0.88rem;
  line-height: 1.45;
}

.home-logo-grid {
  margin-top: 1.35rem;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(152px, auto));
  gap: 0.65rem;
  background: #edf1f5;
  border: 0;
}

.home-logo-intro {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.2rem;
  background: #edf1f5;
  border: 1px solid #dbe3ee;
}

.home-logo-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 152px;
  background: #fff;
  padding: 1.2rem 1rem 1rem;
  border: 1px solid #dbe3ee;
}

.home-logo-item img {
  width: auto;
  max-width: min(84%, 280px);
  height: 62px;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: grayscale(1) brightness(0.42) contrast(1.18);
  opacity: 0.98;
}

.home-logo-item--wittenstein img {
  max-width: min(74%, 210px);
  height: 80px;
}

.home-logo-item--siemens img,
.home-logo-item--precitec img {
  height: 58px;
}

.home-logo-item--thk img,
.home-logo-item--beckhoff img {
  height: 66px;
}

.home-logo-item--max img {
  height: 64px;
}

.home-logo-item span {
  margin-top: 0.4rem;
  color: #506279;
  font-size: 0.83rem;
  font-weight: 600;
  text-align: center;
}

.home-service-grid {
  margin-top: 1.35rem;
  grid-template-columns: 1.8fr repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #dbe3ee;
  background: #f5f7fa;
  margin-bottom: 0;
}

.home-service-grid > * {
  border-right: 1px solid #dbe3ee;
}

.home-service-grid > :last-child {
  border-right: 0;
}

.home-service-item {
  min-height: 166px;
  padding: 0.62rem 0.62rem 0.68rem;
  display: grid;
  grid-template-rows: 54% 46%;
  align-items: stretch;
  justify-items: center;
  text-align: center;
}

.home-service-icon {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
}

.home-service-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  /* Erzwingt den H+S-Hellblau-Ton auch in Safari/iOS */
  filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(3178%) hue-rotate(168deg) brightness(103%) contrast(101%);
  -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(3178%) hue-rotate(168deg) brightness(103%) contrast(101%);
}

.home-service-copy {
  width: 100%;
  margin-top: 0;
  padding-top: 0.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.home-service-item h3 {
  font-size: 0.89rem;
  letter-spacing: 0.01em;
  margin: 0;
}

.home-service-item p {
  margin: 0.34rem 0 0;
  font-size: 0.75rem;
  line-height: 1.34;
  max-width: 16ch;
}

.home-service-intro {
  padding: 0.92rem 0.85rem;
}

.home-service-intro p {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.48;
  max-width: 30ch;
}

.home-yawei {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.35rem;
  border: 1px solid #dbe3ee;
}

.home-yawei img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.95);
}

.home-yawei-content {
  position: relative;
  background:
    linear-gradient(
      98deg,
      rgba(247, 250, 254, 0.94) 0%,
      rgba(245, 248, 252, 0.86) 36%,
      rgba(239, 245, 251, 0.7) 64%,
      rgba(233, 241, 249, 0.54) 84%,
      rgba(230, 238, 248, 0.42) 100%
    ),
    url("assets/home-yawei-service-bg.png") 68% center / cover no-repeat;
  padding: 1.6rem 1.4rem;
}

.home-yawei-content h2 {
  margin: 0;
  color: #102036;
  text-transform: none;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  line-height: 1.15;
}

.home-yawei-content p {
  margin: 0.8rem 0 1rem;
  color: #1f334c;
  font-weight: 500;
  line-height: 1.58;
}

.home-yawei-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home-yawei-actions .btn {
  min-width: 176px;
}

.home-yawei-actions .btn-outline {
  border-color: rgba(1, 74, 129, 0.42);
  color: #0f2f4f;
  background: rgba(255, 255, 255, 0.62);
}

.home-yawei-actions .btn-outline:hover {
  border-color: rgba(1, 74, 129, 0.62);
  background: rgba(255, 255, 255, 0.8);
}

.home-proof-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 0;
  row-gap: 0.55rem;
  margin-top: 1.35rem;
  border: 1px solid #dbe3ee;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 255, 1) 0%,
      rgba(248, 251, 255, 1) 76%,
      rgba(248, 251, 255, 0.74) 90%,
      rgba(248, 251, 255, 0.4) 100%
    ),
    url("assets/home-proof-cta-bg.png") right center / auto 100% no-repeat,
    #f8fbff;
  padding: 1.35rem 1.25rem;
}

.home-proof-cta h2 {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  color: #102036;
  text-transform: none;
  font-size: clamp(1.85rem, 2.4vw, 2.6rem);
  line-height: 1.1;
}

.home-proof-cta p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding-left: 1.4rem;
  color: #3f536d;
  line-height: 1.52;
  max-width: 34ch;
}

.home-proof-cta .btn {
  grid-column: 2;
  grid-row: 2;
  margin-left: 1.4rem;
  justify-self: start;
}

.home-proof .btn {
  align-self: flex-start;
}

.machine-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.machine-tile {
  display: block;
  border: 1px solid #d9d9d9;
  padding: 0.62rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.machine-tile img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 260ms ease, filter 260ms ease;
  transform-origin: center;
}

.machine-tile h3 {
  margin: 0.7rem 0 0.2rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.machine-tile p {
  margin: 0;
  color: #5d6d84;
  font-size: 0.88rem;
}

.highlights-head p {
  color: #fff;
  text-align: left;
}

.machine-tile .cat-link {
  position: static;
  margin-top: 0.45rem;
  color: var(--blue);
  font-size: 0.82rem;
}

.machine-tile .cat-link span {
  display: none;
}

.benefit-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.benefit {
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 0.95rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.benefit span {
  font-size: 1.35rem;
}

.benefit h3 {
  margin: 0.55rem 0 0.35rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.94rem;
}

.benefit p {
  margin: 0;
  color: #5f6f85;
  font-size: 0.9rem;
}

.text-link {
  align-self: center;
  justify-self: end;
  color: #4f5d73;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 980px) {
  .home-proof-grid,
  .home-logo-grid,
  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-intro,
  .home-logo-intro,
  .home-service-intro {
    grid-column: 1 / -1;
  }

  .home-proof-grid {
    grid-template-rows: auto;
  }

  .home-proof-intro {
    grid-row: auto;
  }

  .home-proof-grid > :nth-child(4n) {
    border-right: 1px solid #dbe3ee;
  }

  .home-proof-grid > :nth-child(2n),
  .home-service-grid > :nth-child(2n) {
    border-right: 0;
  }

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

  .home-yawei-actions .btn {
    min-width: 0;
  }

  .home-proof-cta {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0.85rem;
    background:
      linear-gradient(145deg, rgba(248, 251, 255, 0.95) 0%, rgba(248, 251, 255, 0.9) 62%, rgba(248, 251, 255, 0.78) 100%),
      url("assets/home-proof-cta-bg.png") center / cover no-repeat,
      #f8fbff;
  }

  .home-proof-cta h2,
  .home-proof-cta p,
  .home-proof-cta .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .home-proof-cta p {
    padding-left: 0;
  }

  .home-proof-cta .btn {
    margin-left: 0;
  }

  .home-logo-grid,
  .home-service-grid {
    margin-top: 0.85rem;
  }

  .home-service-grid {
    margin-bottom: 0;
  }

  .home-logo-grid {
    gap: 0.5rem;
  }

  .home-service-item {
    min-height: 0;
    height: auto;
    grid-template-rows: auto auto;
    align-content: start;
    padding: 0.82rem 0.9rem 1.2rem;
  }

  .home-service-copy {
    margin-top: 0.18rem;
    padding-bottom: 0.35rem;
  }

  .home-service-item p {
    max-width: 20ch;
    line-height: 1.36;
  }
}

.page-back-link {
  display: inline-flex;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.service-landing-split {
  margin-top: 1.4rem;
}

.impressum-page {
  background: #fff;
}

.datenschutz-page {
  background: #fff;
}

.impressum-hero {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 5rem;
  min-height: 52vh;
}

.impressum-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.88), rgba(17, 18, 22, 0.66)),
    url("assets/impressum-hero.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: heroDrift 42s ease-in-out infinite alternate;
  z-index: 0;
}

.impressum-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.impressum-hero-content h1 {
  color: #fff;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.datenschutz-hero {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 5rem;
  min-height: 52vh;
}

.datenschutz-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.88), rgba(17, 18, 22, 0.66)),
    url("assets/datenschutz.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: heroDrift 42s ease-in-out infinite alternate;
  z-index: 0;
}

.datenschutz-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.datenschutz-hero-content h1 {
  color: #fff;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 980px) {
  .global-topbar + main.impressum-page > section.impressum-hero:first-child,
  .global-topbar + main.datenschutz-page > section.datenschutz-hero:first-child {
    padding-top: clamp(5.15rem, 17vw, 6.5rem);
  }

  .impressum-hero-content,
  .datenschutz-hero-content {
    max-width: 100%;
    padding-top: 0.45rem;
  }

  .impressum-hero-content .hero-kicker,
  .datenschutz-hero-content .hero-kicker {
    margin-top: 0.35rem;
    margin-bottom: 0.65rem;
  }
}

@media (max-width: 980px) and (orientation: portrait) {
  .impressum-hero-content h1,
  .datenschutz-hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.4vw, 2.35rem);
    line-height: 1.12;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    hyphenate-limit-chars: 6 3 2;
  }
}

.team-page {
  background: #fff;
}

/* Team page – overview layout */
.team-overview-page {
  background: #ffffff;
  color: #2f3848;
}

.team-overview-hero {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: min(58vh, 560px);
  --team-hero-bg-height: min(58vh, 560px);
  background-color: #f5f7fa;
}

.team-overview-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--team-hero-bg-height);
  min-height: var(--team-hero-bg-height);
  z-index: 0;
  pointer-events: none;
  background-color: #f5f7fa;
  background-image:
    linear-gradient(
      90deg,
      #f5f7fa 0%,
      #f5f7fa 32%,
      rgba(245, 247, 250, 0.94) 42%,
      rgba(245, 247, 250, 0.72) 52%,
      rgba(245, 247, 250, 0.38) 64%,
      rgba(245, 247, 250, 0.1) 76%,
      transparent 88%
    ),
    url("assets/team.png");
  background-position: left center, center center;
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll;
  animation: none;
  will-change: auto;
}

.team-overview-hero .hero-shell {
  position: relative;
  z-index: 1;
}

/* Inhalt scrollt über das fixierte Team-Hero-Bild (nicht dahinter) */
.global-topbar + main.team-overview-page > section:not(.team-overview-hero):not(.team-quick-nav):not(.team-banner-cta) {
  position: relative;
  z-index: 4;
  isolation: isolate;
  background-color: #ffffff;
}

.global-topbar + main.team-overview-page > section.team-banner-cta {
  position: relative;
  z-index: 4;
  isolation: isolate;
}

.global-topbar + main.team-overview-page > section.team-quick-nav {
  position: relative;
  z-index: 4;
  isolation: isolate;
  background-color: #eef2f6;
}

.team-overview-hero-content {
  max-width: 520px;
  padding: 4.2rem 0 3rem;
}

.team-overview-hero-content h1 {
  margin: 0.35rem 0 0.85rem;
  line-height: 1.08;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  text-transform: none;
  color: #1a2230;
}

.team-overview-hero-content p:not(.section-kicker) {
  margin: 0;
  color: #4a5668;
  line-height: 1.58;
}

.team-quick-nav {
  padding: 1.35rem 0 1.25rem;
  background-color: #eef2f6;
  border-bottom: 1px solid #dde4ec;
}

.team-quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-quick-link {
  display: grid;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.team-quick-icon {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.team-quick-icon svg,
.team-quick-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.team-quick-icon img {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(3178%) hue-rotate(168deg) brightness(103%) contrast(101%);
  -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(3178%) hue-rotate(168deg) brightness(103%) contrast(101%);
}

.team-quick-label {
  font-weight: 700;
  color: #1a2230;
  font-size: 0.95rem;
}

.team-quick-cta {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
}

.team-quick-link:hover .team-quick-cta {
  color: #037fb0;
}

.team-directory {
  padding: 1.6rem 0 3rem;
  background: #ffffff;
}

.team-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.team-filter-btn {
  appearance: none;
  border: 1px solid #c5d4e6;
  background: #fff;
  color: #2f4a68;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.team-filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.team-filter-btn.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.team-directory-rows {
  display: grid;
  gap: 3.25rem;
}

.team-directory-row {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.team-directory-row--1-2 {
  grid-template-columns: 1fr 2fr;
}

.team-directory-row--1-1 {
  grid-template-columns: 1fr 1fr;
}

.team-directory-row--full {
  grid-template-columns: minmax(0, 1fr);
}

/* Beim Filtern: nur ein sichtbarer Bereich pro Zeile → volle Breite */
.team-directory-row--1-2:not(:has(> .team-section:not([hidden]) ~ .team-section:not([hidden]))),
.team-directory-row--1-1:not(:has(> .team-section:not([hidden]) ~ .team-section:not([hidden]))) {
  grid-template-columns: minmax(0, 1fr);
}

.team-directory-row[hidden] {
  display: none;
}

.team-section {
  margin-bottom: 0;
}

.team-section[hidden] {
  display: none;
}

.team-section-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--blue);
}

.team-section-head h2 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: none;
  color: #1a2230;
}

.team-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.team-location-badge svg {
  width: 14px;
  height: 14px;
}

.team-member-grid {
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
}

.team-member-grid-cols-1 {
  grid-template-columns: minmax(0, 1fr);
}

.team-member-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.team-member-grid-single .team-member-card {
  grid-column: 1;
  width: 100%;
  max-width: 100%;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-align: left;
  padding: 1rem 0.95rem 0.9rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 24, 38, 0.06);
}

.team-member-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.team-member-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef4fb;
  border: 2px solid #c5ddf5;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.team-member-avatar svg {
  width: 26px;
  height: 26px;
}

.team-member-card h3 {
  margin: 0;
  font-size: 0.98rem;
  text-transform: none;
  color: #1a2230;
}

.team-member-role {
  margin: 0.15rem 0 0;
  color: #6a778a;
  font-size: 0.82rem;
}

.team-member-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  width: 100%;
}

.team-member-contact svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  flex: 0 0 auto;
}

.team-member-contact a {
  color: #2f4a68;
  text-decoration: none;
  word-break: break-word;
}

.team-member-contact a:hover {
  color: var(--blue);
}

.team-member-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
}

.team-member-actions .btn {
  width: 100%;
  padding: 0.55rem 0.45rem;
  font-size: 0.72rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.team-member-actions .btn svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.team-btn-call {
  border-color: var(--blue);
  color: var(--blue);
}

.team-btn-mail {
  background: #0f1a2b;
  border: 1px solid #0f1a2b;
  color: #fff;
}

.team-btn-mail:hover {
  background: #16243a;
  border-color: #16243a;
  color: #fff;
}

.team-banner-cta {
  background: #0f151f;
  padding: 1.75rem 0;
}

.team-banner-cta-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
}

.team-banner-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.team-banner-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(3178%) hue-rotate(168deg) brightness(103%) contrast(101%);
  -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(3178%) hue-rotate(168deg) brightness(103%) contrast(101%);
}

.team-banner-copy {
  display: grid;
  gap: 0.2rem;
}

.team-banner-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
}

.team-banner-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  line-height: 1.45;
}

.team-banner-cta-wrap .btn {
  white-space: nowrap;
}

body.page-unternehmen-team .main-nav a[href="unternehmen.html"],
body.page-unternehmen-team .main-nav a[href="unternehmen-team.html"] {
  color: var(--blue);
  font-weight: 700;
}

.career-page {
  background: #fff;
}

.career-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.8rem;
}

.career-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 28, 0.9), rgba(10, 16, 28, 0.62)),
    url("assets/karriere-hero.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: heroDrift 42s ease-in-out infinite alternate;
  z-index: 0;
}

.career-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.career-hero-content h1 {
  color: #fff;
}

.career-hero-content p {
  color: #d4deec;
  line-height: 1.58;
}

.career-intro-grid,
.career-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.career-intro p,
.career-split p {
  color: #4f5d73;
  line-height: 1.6;
}

.career-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.career-pillar {
  border: 1px solid #d9e0ea;
  background: #fff;
  padding: 0.7rem;
  display: grid;
  gap: 0.18rem;
  justify-items: center;
  text-align: center;
}

.career-pillar-icon {
  color: var(--blue);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.career-pillar-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.career-pillar strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: #2a374b;
}

.career-pillar > span:not(.career-pillar-icon) {
  font-size: 0.78rem;
  color: #607089;
}

.career-image img {
  width: 100%;
  border: 1px solid #d9dfe8;
}

.career-profiles {
  border: 1px solid #d9e0ea;
  background: #f7f9fc;
  padding: 0.85rem;
}

.career-split .section-kicker,
.career-profiles .section-kicker {
  color: #01b5fd;
}

.career-profiles ul,
.career-benefits {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.career-profiles li,
.career-benefits li {
  position: relative;
  padding-left: 1.08rem;
  margin-bottom: 0.35rem;
  color: #3e4d63;
}

.career-profiles li::before,
.career-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.career-band {
  background: #131a25;
  padding: 1.5rem 0 1.6rem;
}

.career-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.career-band-grid h2 {
  color: #fff;
}

.career-band-grid p {
  color: #afbdd2;
}

.career-band-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.career-band-facts article {
  border: 1px solid #2e3d54;
  background: #101724;
  padding: 0.7rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.22rem;
}

.career-band-icon {
  width: 26px;
  height: 26px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.career-band-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.career-band-facts strong {
  display: block;
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.career-band-facts span {
  color: #b3c0d5;
  font-size: 0.78rem;
}

.career-strip {
  background: #f2f5f9;
  border-top: 1px solid #dce3ed;
  border-bottom: 1px solid #dce3ed;
}

.career-strip-grid {
  padding: 0.75rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.career-strip-grid span {
  color: #506078;
  font-size: 0.78rem;
}

.career-strip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.career-strip-icon {
  width: 18px;
  height: 18px;
  color: #6a7c95;
  flex: 0 0 auto;
}

.career-strip-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.impressum-content {
  color: #2c3749;
  line-height: 1.6;
}

.impressum-content h2,
.impressum-content h3 {
  color: #121926;
}

.impressum-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  text-transform: none;
}

.impressum-content p {
  margin-top: 0.2rem;
}

.impressum-content hr {
  border: 0;
  border-top: 1px solid #d8dfe8;
  margin: 1.4rem 0;
}

.impressum-content a {
  color: #1f4f80;
}

.impressum-content a:hover {
  color: var(--blue);
}

.news-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.news-card {
  border: 1px solid var(--line);
  background: #202329;
  padding: 0.8rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cat-card:hover,
.machine-tile:hover,
.benefit:hover,
.news-card:hover,
.laser2d-series-card:hover,
.tech-detail-image:hover,
.option-card:hover {
  border-color: #b5c9df;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 34, 55, 0.1);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 260ms ease, filter 260ms ease;
  transform-origin: center;
}

.cat-card:hover img,
.machine-tile:hover img,
.news-card:hover img,
.laser2d-series-card:hover img,
.tech-detail-image:hover img,
.option-card:hover img {
  transform: none;
  filter: none;
}

.news-card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.news-card p {
  margin: 0;
  color: #9eaec4;
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  background: #1c1f26;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.cta-band p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.cta-band small {
  color: #93a4bc;
}

.site-footer {
  position: relative;
  background: #14161b;
  padding: 1.2rem 0 1.55rem;
}

.footer-columns {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(340px, 1.35fr);
  gap: 1rem;
}

.footer-title {
  margin: 0 0 0.6rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-columns a,
.footer-columns p {
  display: block;
  margin: 0 0 0.35rem;
  color: #95a4b8;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-columns a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid #1d2737;
  padding-top: 0.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom span {
  color: #8c9bb0;
  text-decoration: none;
  font-size: 0.83rem;
}

.footer-contact-item {
  position: relative;
  display: block;
  padding-left: 2rem;
  margin: 0 0 0.75rem;
}

.footer-contact-item span,
.footer-contact-item a {
  display: block;
  min-width: 0;
  margin: 0;
  padding-left: 0;
  line-height: 1.32;
  color: #95a4b8;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--blue);
  margin: 0;
}

.footer-columns > div:last-child .footer-title {
  color: var(--blue);
}

.footer-columns > div:last-child .footer-contact-item:first-of-type span {
  max-width: 100%;
}

.footer-columns > div:last-child .footer-contact-item:nth-of-type(2) a,
.footer-columns > div:last-child .footer-contact-item:nth-of-type(3) a {
  white-space: nowrap;
}

.footer-contact-col .footer-title {
  margin-bottom: 1.1rem;
}

.footer-contact-col .footer-contact-item {
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.1rem;
}

.footer-contact-col .footer-contact-item svg {
  width: 26px;
  height: 26px;
  margin-top: 0;
}

.footer-contact-col .footer-contact-item span,
.footer-contact-col .footer-contact-item a {
  font-size: 1.08rem;
  line-height: 1.55;
  color: #b8c4d6;
}

.footer-contact-col .footer-contact-item a {
  text-decoration: none;
}

.footer-contact-col .footer-contact-item a:hover {
  color: var(--blue);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #233044;
  border-radius: 999px;
  color: #01b5fd;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: #01b5fd;
  border-color: rgba(5, 166, 230, 0.55);
  background: rgba(5, 166, 230, 0.08);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.series-hero {
  position: relative;
  padding: 0 0 2.4rem;
  overflow: hidden;
}

.series-hero .hero-shell {
  padding-top: clamp(4.25rem, 7.5vw, 5rem);
}

.laser2d-page {
  background: #fff;
}

.laser2d-hero {
  position: relative;
  padding: 0 0 2.3rem;
  overflow: hidden;
}

.laser2d-hero .hero-shell {
  padding-top: clamp(4.25rem, 7.5vw, 5rem);
}

.laser2d-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.88), rgba(17, 18, 22, 0.66)),
    url("assets/laser2d-hero.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: heroDriftSubtle 56s ease-in-out infinite alternate;
  z-index: 0;
}

.laser2d-hero-content {
  position: relative;
  z-index: 1;
}

.laser2d-hero-content {
  margin-top: 1.1rem;
  max-width: 620px;
}

.automation-overview-page .laser2d-hero-bg {
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)),
    url("assets/automation-fms-hero.png") center/cover no-repeat;
  background-attachment: fixed;
}

.pressbrake-page .laser2d-hero-bg {
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)),
    url("assets/abkant-pbh-hero2.png") center/cover no-repeat;
  background-attachment: fixed;
}

.tube-page .laser2d-hero-bg {
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)),
    url("assets/tube-hero.png") center/cover no-repeat;
  background-attachment: fixed;
}

.misc-page .laser2d-hero-bg {
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)),
    url("assets/misc-hero.png") center/cover no-repeat;
  background-attachment: fixed;
}

.panel-bender-page .laser2d-hero-bg {
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)),
    url("assets/panel-bender-hero2.jpg") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.stanz-page .laser2d-hero-bg {
  background: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)),
    url("assets/hero2.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.laser2d-hero-content h1 {
  margin-top: 0.35rem;
}

.laser2d-hero-content p {
  color: #d2dbea;
  line-height: 1.58;
}

.laser2d-series-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.laser2d-series-card {
  display: block;
  display: flex;
  flex-direction: column;
  border: 1px solid #dbe2ec;
  background: #fff;
  padding: 0.78rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
  color: inherit;
}

.laser2d-series-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #e2e7ef;
  transition: transform 220ms ease;
}

.series-label {
  margin: 0.65rem 0 0.28rem;
  color: var(--blue);
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
}

.laser2d-series-card h3 {
  margin: 0;
  color: #121c2d;
  font-size: 1.12rem;
  text-transform: none;
}

.laser2d-series-card ul {
  margin: 0.7rem 0 0.8rem;
  padding: 0;
  list-style: none;
  color: #42516a;
  font-size: 0.88rem;
  line-height: 1.55;
}

.laser2d-series-card li {
  position: relative;
  padding-left: 1.12rem;
  margin-bottom: 0.2rem;
}

.laser2d-series-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.laser2d-series-card .text-link {
  color: var(--blue);
  margin-top: auto;
  align-self: flex-start;
  justify-self: start;
}

.automation-series-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

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

.stanz-series-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-intro {
  max-width: 860px;
  margin: 0.45rem 0 1rem;
  color: #55647c;
  line-height: 1.62;
}

.laser2d-compare-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc((100% - 1.8rem) / 3);
  gap: 1rem;
  align-items: stretch;
}

.laser2d-compare-table h2 {
  margin-bottom: 1.1rem;
}

.laser2d-compare-table .spec-table {
  min-width: 0;
  width: 100%;
}

.laser2d-compare-cta {
  background: #111822;
  border: 1px solid #2a3548;
  padding: 1rem;
  width: 100%;
  max-width: none;
  justify-self: end;
}

.laser2d-compare-cta .section-kicker {
  margin-bottom: 0.35rem;
}

.laser2d-compare-cta h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.22;
}

.laser2d-compare-cta ul {
  margin: 0.8rem 0 1rem;
  list-style: none;
  padding: 0;
  color: #c1cee0;
  line-height: 1.55;
  font-size: 0.92rem;
}

.laser2d-compare-cta li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.2rem;
}

.laser2d-compare-cta li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.series-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.78), rgba(20, 21, 25, 0.5)),
    url("assets/hero.jpg") center/cover no-repeat;
  background-attachment: fixed;
  z-index: -1;
  animation: heroDriftSubtle 56s ease-in-out infinite alternate;
}

.automation-fmc-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.52)),
    url("assets/automation-fmc-hero.png") center/cover no-repeat;
  background-attachment: fixed;
}

.automation-fms-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.52)),
    url("assets/automation-fms-hero.png") center/cover no-repeat;
  background-attachment: fixed;
}

.series-hero-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.series-hero-grid h1 {
  margin-top: 0.2rem;
}

.series-hero-grid p {
  color: #c0ccdc;
  line-height: 1.6;
}

.series-hero-grid img {
  width: 100%;
  border: 1px solid #3b424e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.pbh-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.54)),
    url("assets/abkant-pbh-hero2.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.pbh-page .series-hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  max-width: none;
}

.pbc-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.54)),
    url("assets/abkant-pbh-hero2.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.pbc-page .series-hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  max-width: none;
}

.pbe-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.54)),
    url("assets/abkant-pbh-hero2.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.pbe-page .series-hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  max-width: none;
}

.pbh-xxl-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.54)),
    url("assets/abkant-pbh-hero2.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.pbh-xxl-page .series-hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  max-width: none;
}

.hpe-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.54)),
    url("assets/hero2.jpg") center/cover no-repeat;
}

.hpml-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.82), rgba(20, 21, 25, 0.54)),
    url("assets/hero2.jpg") center/cover no-repeat;
}

.fba-page .series-hero-bg,
.fbc-page .series-hero-bg,
.fbe-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.78), rgba(20, 21, 25, 0.5)),
    url("assets/panel-bender-hero2.jpg") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.ylmw-page .series-hero-bg {
  background: linear-gradient(90deg, rgba(20, 21, 25, 0.78), rgba(20, 21, 25, 0.5)),
    url("assets/ylmw-background.png") center/cover no-repeat;
  background-attachment: fixed;
  animation: none;
}

.hlf-page .series-hero {
  height: 800px;
  min-height: 800px;
  max-height: 800px;
  padding: 0;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hlf-page .series-hero .hero-shell {
  position: relative;
  z-index: 1;
  padding-top: clamp(4.25rem, 7.5vw, 5rem);
}

.hlf-page .series-hero-bg {
  background: linear-gradient(
      95deg,
      rgba(10, 12, 18, 0.8) 0%,
      rgba(10, 12, 18, 0.58) 30%,
      rgba(10, 12, 18, 0.24) 52%,
      rgba(10, 12, 18, 0.06) 69%,
      transparent 82%
    ),
    url("assets/hlf_hero_1920.webp?v=3") center/cover no-repeat;
  background-size: cover, cover !important;
  background-position: center center, center center !important;
  background-repeat: no-repeat, no-repeat !important;
  filter: none;
  -webkit-filter: none;
  image-rendering: auto;
  animation: none !important;
}

.hlf-page .series-hero-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: start;
  padding: 0.35rem 0 1.35rem;
}

.hlf-page .series-hero-copy {
  max-width: 40ch;
}

.hlf-page .series-hero-grid h1 {
  margin-top: 0.32rem;
  margin-bottom: 1rem;
  line-height: 1.04;
  font-size: clamp(2.2rem, 4.9vw, 3.8rem);
}

.hlf-page .series-hero-grid p {
  color: rgba(231, 237, 247, 0.9);
  max-width: 44ch;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .hlf-page .series-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0.35rem;
    padding: 0.35rem 0 1.35rem;
  }

  .hlf-page .series-hero-copy {
    align-self: flex-start;
    width: min(100%, 40ch);
    max-width: 40ch;
    text-align: left;
  }

  .hlf-page .series-hero-grid h1,
  .hlf-page .series-hero-grid p,
  .hlf-page .series-hero-grid .section-kicker {
    text-align: left;
  }

  .hlf-page .hero-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.hlf-page .series-badges-strip {
  background: #2b3038;
  border-top: 1px solid #3a414c;
  border-bottom: 1px solid #3a414c;
}

.hlf-components-wrap {
  padding-top: 1.55rem;
  padding-bottom: 1.55rem;
}

.hlf-components-wrap h2 {
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: none;
}

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

.hlf-component-card {
  border: 1px solid #dbe3ee;
  background: #ffffff;
  padding: 0 0 0.78rem;
}

.hlf-component-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.hlf-component-card h3 {
  margin: 0.62rem 0.72rem 0.28rem;
  color: #0f2239;
  text-transform: uppercase;
  font-size: 0.97rem;
  line-height: 1.2;
}

.hlf-component-card p {
  margin: 0 0.72rem;
  color: #4f5d73;
  font-size: 0.94rem;
  line-height: 1.44;
}

.hlf-component-card a {
  margin: 0.5rem 0.72rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
}

.hlf-spec-strip {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #dbe3ee;
  background: #ffffff;
}

.hlf-spec-strip article {
  padding: 0.62rem 0.72rem;
  border-right: 1px solid #e7edf4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  text-align: left;
}

.hlf-spec-strip article:last-child {
  border-right: 0;
}

.hlf-spec-icon {
  width: 20px;
  height: 20px;
  color: #01b5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hlf-spec-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hlf-spec-meta {
  min-width: 0;
  text-align: left;
}

.hlf-spec-strip strong {
  display: block;
  color: #3b4a62;
  font-size: 0.82rem;
  font-weight: 600;
}

.hlf-spec-strip span {
  display: block;
  margin-top: 0.16rem;
  color: #23354f;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Unified premium hero behavior for mapped product pages */
body.page-produkte-2d-hle-serie .series-hero,
body.page-produkte-2d-hlb-serie .series-hero,
body.page-produkte-2d-hlbt-serie .series-hero,
body.page-produkte-2d-hlg-serie .series-hero,
body.page-produkte-2d-fmc .series-hero,
body.page-produkte-2d-fms .series-hero,
body.page-produkte-rohrlaser-ylt-serie .series-hero,
body.page-produkte-rohrlaser-ylp-serie .series-hero,
body.page-produkte-rohrlaser-ytgd-serie .series-hero,
body.page-produkte-abkant-pbh-serie .series-hero,
body.page-produkte-abkant-pbc-serie .series-hero,
body.page-produkte-abkant-pbe-serie .series-hero,
body.page-produkte-abkant-pbh-xxl-serie .series-hero,
body.page-produkte-stanz-hpe-serie .series-hero,
body.page-produkte-stanz-hpml-serie .series-hero,
body.page-produkte-sonstige-panel-bender-fba .series-hero,
body.page-produkte-sonstige-panel-bender-fbc .series-hero,
body.page-produkte-sonstige-panel-bender-fbe .series-hero,
body.page-produkte-sonstige-laserschweissen-ylmw .series-hero,
body.page-produkte-sonstige-cut-to-length-linien .series-hero,
body.page-produkte-tafelscheren-lgs-k-serie .series-hero,
body.page-produkte-2d-automatisierungen .laser2d-hero,
body.page-produkte-2d-lasermaschinen .laser2d-hero,
body.page-produkte-rohrlaser-profillaser .laser2d-hero,
body.page-produkte-abkantpressen .laser2d-hero,
body.page-produkte-stanz-nibbelmaschinen .laser2d-hero,
body.page-produkte-sonstige .laser2d-hero,
body.page-produkte-sonstige-panel-bender .laser2d-hero {
  height: 800px;
  min-height: 800px;
  max-height: 800px;
  padding: 0;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-produkte-2d-hle-serie .series-hero-bg,
body.page-produkte-2d-hlb-serie .series-hero-bg,
body.page-produkte-2d-hlbt-serie .series-hero-bg,
body.page-produkte-2d-hlg-serie .series-hero-bg,
body.page-produkte-2d-fmc .series-hero-bg,
body.page-produkte-2d-fms .series-hero-bg,
body.page-produkte-rohrlaser-ylt-serie .series-hero-bg,
body.page-produkte-rohrlaser-ylp-serie .series-hero-bg,
body.page-produkte-rohrlaser-ytgd-serie .series-hero-bg,
body.page-produkte-abkant-pbh-serie .series-hero-bg,
body.page-produkte-abkant-pbc-serie .series-hero-bg,
body.page-produkte-abkant-pbe-serie .series-hero-bg,
body.page-produkte-abkant-pbh-xxl-serie .series-hero-bg,
body.page-produkte-stanz-hpe-serie .series-hero-bg,
body.page-produkte-stanz-hpml-serie .series-hero-bg,
body.page-produkte-sonstige-panel-bender-fba .series-hero-bg,
body.page-produkte-sonstige-panel-bender-fbc .series-hero-bg,
body.page-produkte-sonstige-panel-bender-fbe .series-hero-bg,
body.page-produkte-sonstige-laserschweissen-ylmw .series-hero-bg,
body.page-produkte-sonstige-cut-to-length-linien .series-hero-bg,
body.page-produkte-tafelscheren-lgs-k-serie .series-hero-bg,
body.page-produkte-2d-automatisierungen .laser2d-hero-bg,
body.page-produkte-2d-lasermaschinen .laser2d-hero-bg,
body.page-produkte-rohrlaser-profillaser .laser2d-hero-bg,
body.page-produkte-abkantpressen .laser2d-hero-bg,
body.page-produkte-stanz-nibbelmaschinen .laser2d-hero-bg,
body.page-produkte-sonstige .laser2d-hero-bg,
body.page-produkte-sonstige-panel-bender .laser2d-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 800px;
  background-size: auto 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  animation: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  z-index: 0;
  transform: none !important;
}

body.page-produkte-2d-automatisierungen .laser2d-hero-bg::after,
body.page-produkte-2d-lasermaschinen .laser2d-hero-bg::after,
body.page-produkte-rohrlaser-profillaser .laser2d-hero-bg::after,
body.page-produkte-abkantpressen .laser2d-hero-bg::after,
body.page-produkte-stanz-nibbelmaschinen .laser2d-hero-bg::after,
body.page-produkte-sonstige .laser2d-hero-bg::after,
body.page-produkte-sonstige-panel-bender .laser2d-hero-bg::after {
  display: none;
}

body.page-produkte-2d-hle-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/HLE_1920.webp");
}
body.page-produkte-2d-hlb-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/HLB_1920.webp");
}
body.page-produkte-2d-hlbt-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/HLBT_1920.webp");
}
body.page-produkte-2d-hlg-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/HLG_1920.webp");
}
body.page-produkte-2d-fmc .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/FMC2_1920.webp");
}
body.page-produkte-2d-fms .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/FMS_1920.webp");
}
body.page-produkte-rohrlaser-ylt-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/YLT_1920.webp");
}
body.page-produkte-rohrlaser-ylp-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/YLP_1920.webp");
}
body.page-produkte-rohrlaser-ytgd-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/YTGD_1920.webp");
}
body.page-produkte-abkant-pbh-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/PBH_1920.webp");
}
body.page-produkte-abkant-pbc-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/PBC_1920.webp");
}
body.page-produkte-abkant-pbe-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/PBE_1920.webp");
}
body.page-produkte-abkant-pbh-xxl-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/PBH_HD.webp");
}
body.page-produkte-stanz-hpe-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/HPE_1920.webp");
}
body.page-produkte-stanz-hpml-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/HPML_1920.webp");
}
body.page-produkte-sonstige-panel-bender-fba .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/FBA_1920.webp");
}
body.page-produkte-sonstige-panel-bender-fbc .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/FBC_1920.webp");
}
body.page-produkte-sonstige-panel-bender-fbe .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/FBE_1920.webp");
}
body.page-produkte-sonstige-laserschweissen-ylmw .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/YLMW_1920.webp");
}
body.page-produkte-sonstige-cut-to-length-linien .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/CTL_1920.webp");
}
body.page-produkte-tafelscheren-lgs-k-serie .series-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/LGSK_1920.webp");
}
body.page-produkte-2d-automatisierungen .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/automatisierung_1920.webp");
}
body.page-produkte-2d-lasermaschinen .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/hlf_hero_1920.webp");
}
body.page-produkte-rohrlaser-profillaser .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/pipelaser_1920.webp");
}
body.page-produkte-abkantpressen .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/pressen_1920.webp");
}
body.page-produkte-stanz-nibbelmaschinen .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/punch_1920.webp");
}
body.page-produkte-sonstige .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/sonstige_1920.webp");
}
body.page-produkte-sonstige-panel-bender .laser2d-hero-bg {
  background-image: linear-gradient(95deg, rgba(10, 12, 18, 0.8) 0%, rgba(10, 12, 18, 0.58) 30%, rgba(10, 12, 18, 0.24) 52%, rgba(10, 12, 18, 0.06) 69%, transparent 82%), url("assets/FBE_1920.webp");
}

@media (max-width: 1200px) {
  body.page-produkte-2d-automatisierungen .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)), url("assets/automation-fms-hero.png");
  }

  body.page-produkte-2d-lasermaschinen .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.88), rgba(17, 18, 22, 0.66)), url("assets/laser2d-hero.png");
  }

  body.page-produkte-rohrlaser-profillaser .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)), url("assets/tube-hero.png");
  }

  body.page-produkte-abkantpressen .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)), url("assets/abkant-pbh-hero2.png");
  }

  body.page-produkte-stanz-nibbelmaschinen .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)), url("assets/hero2.jpg");
  }

  body.page-produkte-sonstige .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)), url("assets/misc-hero.png");
  }

  body.page-produkte-sonstige-panel-bender .laser2d-hero-bg {
    background-image: linear-gradient(90deg, rgba(17, 18, 22, 0.84), rgba(17, 18, 22, 0.56)), url("assets/panel-bender-hero2.jpg");
  }

  body.product-page:not(.hlf-page) .series-hero,
  body.product-page .laser2d-hero,
  body.page-produkte-2d-hle-serie .series-hero,
  body.page-produkte-2d-hlb-serie .series-hero,
  body.page-produkte-2d-hlbt-serie .series-hero,
  body.page-produkte-2d-hlg-serie .series-hero,
  body.page-produkte-2d-fmc .series-hero,
  body.page-produkte-2d-fms .series-hero,
  body.page-produkte-rohrlaser-ylt-serie .series-hero,
  body.page-produkte-rohrlaser-ylp-serie .series-hero,
  body.page-produkte-rohrlaser-ytgd-serie .series-hero,
  body.page-produkte-abkant-pbh-serie .series-hero,
  body.page-produkte-abkant-pbc-serie .series-hero,
  body.page-produkte-abkant-pbe-serie .series-hero,
  body.page-produkte-abkant-pbh-xxl-serie .series-hero,
  body.page-produkte-stanz-hpe-serie .series-hero,
  body.page-produkte-stanz-hpml-serie .series-hero,
  body.page-produkte-sonstige-panel-bender-fba .series-hero,
  body.page-produkte-sonstige-panel-bender-fbc .series-hero,
  body.page-produkte-sonstige-panel-bender-fbe .series-hero,
  body.page-produkte-sonstige-laserschweissen-ylmw .series-hero,
  body.page-produkte-sonstige-cut-to-length-linien .series-hero,
  body.page-produkte-tafelscheren-lgs-k-serie .series-hero,
  body.page-produkte-2d-automatisierungen .laser2d-hero,
  body.page-produkte-2d-lasermaschinen .laser2d-hero,
  body.page-produkte-rohrlaser-profillaser .laser2d-hero,
  body.page-produkte-abkantpressen .laser2d-hero,
  body.page-produkte-stanz-nibbelmaschinen .laser2d-hero,
  body.page-produkte-sonstige .laser2d-hero,
  body.page-produkte-sonstige-panel-bender .laser2d-hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
    padding: 0 0 1.85rem;
  }

  body.product-page:not(.hlf-page) .series-hero .hero-shell,
  body.product-page .laser2d-hero .hero-shell {
    display: flex;
    flex-direction: column;
    min-height: inherit;
    position: relative;
    z-index: 1;
  }

  body.product-page:not(.hlf-page) .series-hero-grid,
  body.product-page .laser2d-hero-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0.35rem;
    padding: 0.35rem 0 1.35rem;
  }

  body.page-produkte-2d-hle-serie .series-hero-bg,
  body.page-produkte-2d-hlb-serie .series-hero-bg,
  body.page-produkte-2d-hlbt-serie .series-hero-bg,
  body.page-produkte-2d-hlg-serie .series-hero-bg,
  body.page-produkte-2d-fmc .series-hero-bg,
  body.page-produkte-2d-fms .series-hero-bg,
  body.page-produkte-rohrlaser-ylt-serie .series-hero-bg,
  body.page-produkte-rohrlaser-ylp-serie .series-hero-bg,
  body.page-produkte-rohrlaser-ytgd-serie .series-hero-bg,
  body.page-produkte-abkant-pbh-serie .series-hero-bg,
  body.page-produkte-abkant-pbc-serie .series-hero-bg,
  body.page-produkte-abkant-pbe-serie .series-hero-bg,
  body.page-produkte-abkant-pbh-xxl-serie .series-hero-bg,
  body.page-produkte-stanz-hpe-serie .series-hero-bg,
  body.page-produkte-stanz-hpml-serie .series-hero-bg,
  body.page-produkte-sonstige-panel-bender-fba .series-hero-bg,
  body.page-produkte-sonstige-panel-bender-fbc .series-hero-bg,
  body.page-produkte-sonstige-panel-bender-fbe .series-hero-bg,
  body.page-produkte-sonstige-laserschweissen-ylmw .series-hero-bg,
  body.page-produkte-sonstige-cut-to-length-linien .series-hero-bg,
  body.page-produkte-tafelscheren-lgs-k-serie .series-hero-bg,
  body.page-produkte-2d-automatisierungen .laser2d-hero-bg,
  body.page-produkte-2d-lasermaschinen .laser2d-hero-bg,
  body.page-produkte-rohrlaser-profillaser .laser2d-hero-bg,
  body.page-produkte-abkantpressen .laser2d-hero-bg,
  body.page-produkte-stanz-nibbelmaschinen .laser2d-hero-bg,
  body.page-produkte-sonstige .laser2d-hero-bg,
  body.page-produkte-sonstige-panel-bender .laser2d-hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    background-attachment: scroll !important;
  }
}

/* Product detail hero: remove floating machine image over background */
body.product-page .series-hero .series-hero-grid {
  grid-template-columns: 1fr !important;
  justify-items: start;
}

body.product-page .series-hero .series-hero-grid > img,
body.product-page .series-hero .series-hero-grid > picture,
body.product-page .series-hero .series-hero-grid > picture img,
body.product-page .series-hero .series-hero-grid .series-hero-media {
  display: none !important;
}

body.product-page .series-hero .series-hero-grid > div:first-child {
  width: min(100%, 40ch);
  max-width: 40ch;
}

body.product-page .series-hero .series-hero-grid > div:first-child p {
  max-width: 44ch;
}

.series-badges-strip {
  background: #2b3038;
  border-top: 1px solid #3a414c;
  border-bottom: 1px solid #3a414c;
  padding: 1rem 0;
}

.series-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

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

.series-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.series-badge-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: #01b5fd;
}

.series-badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.series-badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.series-badge-text p {
  margin: 0.2rem 0 0;
  font-size: 0.73rem;
  font-weight: 400;
  color: #f0f6ff;
  line-height: 1.35;
  max-width: 18ch;
}

.corefacts-wrap {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.corefacts-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid #e1e6ee;
  background: #fff;
}

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

.corefact-card {
  padding: 0.95rem 0.8rem 0.85rem;
  border-right: 1px solid #e9edf3;
  text-align: center;
}

.corefact-card:last-child {
  border-right: 0;
}

.corefact-icon {
  width: 56px;
  height: 56px;
  color: #101b2c;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin: 0 auto;
}

.corefact-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%);
  opacity: 1;
}

.corefact-icon svg {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
}

.corefact-card h3 {
  margin: 0.6rem 0 0.4rem;
  color: #101b2c;
  font-size: 0.86rem;
  line-height: 1.28;
  text-transform: none;
}

.corefact-card p {
  margin: 0;
  color: #4f5d73;
  font-size: 0.79rem;
  line-height: 1.5;
}

.tech-detail-wrap {
  padding-top: 1.2rem;
  padding-bottom: 2.2rem;
}

.tech-detail-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.85rem 1rem;
}

.tech-detail-image {
  border: 1px solid #dbe2ec;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tech-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.tech-detail-text h3 {
  margin: 0 0 0.45rem;
  color: #121a2a;
  font-size: 1.02rem;
  text-transform: none;
}

.tech-detail-text ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #2f3d54;
  line-height: 1.48;
  font-size: 0.9rem;
}

.tech-detail-text li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: 0.22rem;
}

.tech-detail-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.tech-detail-card {
  display: contents;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.split-feature ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  color: #4f5d73;
  line-height: 1.65;
}

.split-feature p {
  color: #3f4d63;
  line-height: 1.65;
}

.split-feature ul li,
.standard-card ul li {
  position: relative;
  padding-left: 1.15rem;
}

.split-feature ul li::before,
.standard-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  color: #4f5d73;
  line-height: 1.65;
}

.check-list li {
  position: relative;
  padding-left: 1.15rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.pbe-fazit-text {
  color: #2f3d52;
}

.split-feature img {
  width: 100%;
  border: 1px solid #d9d9d9;
  box-shadow: 0 10px 20px rgba(12, 26, 44, 0.1);
}

.split-feature img.ylp-overview-image {
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.fba-option-fmc-box {
  border: 1px solid #dde3eb;
  background: #f8fafc;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 8px 22px rgba(12, 26, 44, 0.06);
}

.fba-option-fmc-box > .section-kicker {
  margin-bottom: 0.35rem;
}

.fba-option-fmc-box > h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.28;
  color: var(--text-dark);
}

.fba-option-fmc-split {
  margin-top: 0.25rem;
  align-items: center;
}

.section-kicker.options-kicker-light {
  color: #01b5fd !important;
}

.pbh-page-theme .split-feature ul li::before,
.pbc-page-theme .split-feature ul li::before,
.pbe-page-theme .split-feature ul li::before,
.pbh-xxl-page-theme .split-feature ul li::before {
  color: var(--blue) !important;
  opacity: 1;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid #d9d9d9;
  position: relative;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1050px;
  font-size: 0.86rem;
  table-layout: fixed;
}

.spec-table col.col-desc {
  width: 220px;
}

.spec-table col.col-unit {
  width: 85px;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid #e4e6ea;
  border-right: 1px solid #e4e6ea;
  padding: 0.5rem 0.55rem;
  text-align: center;
  color: #2a3447;
  background: #fff;
}

.spec-table th:first-child,
.spec-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 2;
  box-shadow: 1px 0 0 #e4e6ea;
}

.spec-table th {
  background: #f6f8fb;
  font-weight: 700;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.25;
}

.spec-table th:first-child {
  background: #f6f8fb;
  z-index: 3;
}

.spec-table tr.spec-row-machinesize td:nth-child(n + 3) {
  font-size: 0.72rem;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.spec-table.spec-table-hlf-data tr.spec-row-machinesize td:nth-child(n + 3) {
  font-size: 0.66rem;
  line-height: 1.15;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.spec-table.spec-table-hlf-data col.col-desc {
  width: 170px;
}

.spec-table.spec-table-hlf-data col.col-unit {
  width: 68px;
}

.spec-table.spec-table-hle-data {
  width: 100%;
  min-width: 0;
}

.spec-table.spec-table-hle-data col.col-desc {
  width: 22%;
}

.spec-table.spec-table-hle-data col.col-unit {
  width: 8%;
}

.spec-table tr td:last-child,
.spec-table tr th:last-child {
  border-right: 0;
}

.spec-table tbody tr {
  transition: background-color 150ms ease;
}

.spec-table tbody tr:hover td {
  background: #f3f8ff;
}

.spec-table tbody tr:hover td:first-child {
  background: #edf5ff;
}

.spec-table tbody tr.spec-row-active td {
  background: #e8f4ff;
}

.spec-table tbody tr.spec-row-active td:first-child {
  background: #e1f0ff;
  box-shadow: inset 3px 0 0 var(--blue), 1px 0 0 #e4e6ea;
}

.spec-table tbody td:first-child {
  cursor: pointer;
}

.spec-table.spec-table-mazak-service {
  min-width: 0;
  table-layout: auto;
}

.spec-table.spec-table-mazak-service th:first-child,
.spec-table.spec-table-mazak-service td:first-child {
  width: 34%;
}

.spec-table.spec-table-mazak-service th:nth-child(2),
.spec-table.spec-table-mazak-service td:nth-child(2) {
  width: 66%;
}

.spec-table.spec-table-auto-first-cols {
  table-layout: auto;
}

.spec-table.spec-table-auto-first-cols th:nth-child(-n + 2),
.spec-table.spec-table-auto-first-cols td:nth-child(-n + 2) {
  white-space: nowrap;
  width: auto;
}

.spec-table.spec-table-ytgd-data {
  table-layout: auto;
  width: max-content;
  min-width: 780px;
}

.spec-table.spec-table-ytgd-data th:first-child,
.spec-table.spec-table-ytgd-data td:first-child {
  width: 3.2rem;
  text-align: center;
  white-space: nowrap;
}

.spec-table.spec-table-ytgd-data th:nth-child(2),
.spec-table.spec-table-ytgd-data td:nth-child(2) {
  width: 1%;
  white-space: nowrap;
}

.spec-table.spec-table-ytgd-data th:nth-child(4),
.spec-table.spec-table-ytgd-data td:nth-child(4) {
  width: 4.8rem;
  white-space: nowrap;
}

.spec-table.spec-table-ylp-data {
  table-layout: auto;
  min-width: 1280px;
  font-size: 0.82rem;
}

.spec-table.spec-table-ylp-data th,
.spec-table.spec-table-ylp-data td {
  white-space: nowrap;
  padding: 0.44rem 0.48rem;
}

.spec-table.spec-table-ylp-data th:first-child,
.spec-table.spec-table-ylp-data td:first-child,
.spec-table.spec-table-ylp-data th:nth-child(2),
.spec-table.spec-table-ylp-data td:nth-child(2) {
  width: 1%;
}

.spec-table.spec-table-pbh-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.78rem;
}

.spec-table.spec-table-pbh-data th,
.spec-table.spec-table-pbh-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
  width: auto;
}

.spec-table.spec-table-pbh-data th {
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.spec-table.spec-table-pbh-data .spec-unit {
  display: block;
  margin-top: 0.12rem;
  text-align: center;
}

.spec-table.spec-table-pbh-data .spec-label {
  display: block;
  text-align: center;
}

.spec-table.spec-table-pbc-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.78rem;
}

.spec-table.spec-table-pbc-data th,
.spec-table.spec-table-pbc-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
  width: auto;
}

.spec-table.spec-table-pbc-data th {
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.spec-table.spec-table-pbc-data .spec-unit {
  display: block;
  margin-top: 0.12rem;
  text-align: center;
}

.spec-table.spec-table-pbc-data .spec-label {
  display: block;
  text-align: center;
}

.spec-table.spec-table-pbe-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.8rem;
}

.spec-table.spec-table-pbe-data th,
.spec-table.spec-table-pbe-data td {
  white-space: nowrap;
  padding: 0.44rem 0.48rem;
  width: auto;
}

.spec-table.spec-table-pbe-data th {
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.spec-table.spec-table-pbe-data .spec-unit {
  display: block;
  margin-top: 0.12rem;
  text-align: center;
}

.spec-table.spec-table-xxl-data {
  table-layout: auto;
  width: 100%;
  min-width: 2100px;
  font-size: 0.76rem;
}

.spec-table.spec-table-xxl-data th,
.spec-table.spec-table-xxl-data td {
  white-space: nowrap;
  padding: 0.4rem 0.42rem;
}

.spec-table.spec-table-xxl-data th {
  white-space: normal;
  line-height: 1.18;
  text-align: center;
}

.spec-table.spec-table-xxl-data .spec-unit {
  display: block;
  margin-top: 0.1rem;
  text-align: center;
}

.spec-table.spec-table-hpml-data {
  table-layout: fixed;
  width: 100%;
  min-width: 100%;
}

.spec-table.spec-table-hpml-data th,
.spec-table.spec-table-hpml-data td {
  width: 33.333%;
  white-space: normal;
  padding: 0.44rem 0.5rem;
}

.spec-table.spec-table-hpe-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.82rem;
}

.spec-table.spec-table-hpe-data th,
.spec-table.spec-table-hpe-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
}

.spec-table.spec-table-hpe-data th:first-child,
.spec-table.spec-table-hpe-data td:first-child,
.spec-table.spec-table-hpe-data th:nth-child(2),
.spec-table.spec-table-hpe-data td:nth-child(2) {
  width: 1%;
}

.spec-table.spec-table-fba-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.82rem;
}

.spec-table.spec-table-fba-data th,
.spec-table.spec-table-fba-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
  width: 1%;
}

.spec-table.spec-table-fba-data th {
  white-space: normal;
  line-height: 1.18;
  text-align: center;
}

.spec-table.spec-table-fba-data .spec-unit {
  display: block;
  margin-top: 0.1rem;
  text-align: center;
}

.spec-table.spec-table-fbc-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.82rem;
}

.spec-table.spec-table-fbc-data th,
.spec-table.spec-table-fbc-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
  width: 1%;
}

.spec-table.spec-table-fbc-data th {
  white-space: normal;
  line-height: 1.18;
  text-align: center;
}

.spec-table.spec-table-fbc-data .spec-unit {
  display: block;
  margin-top: 0.1rem;
  text-align: center;
}

.spec-table.spec-table-fbe-data {
  table-layout: auto;
  width: 100%;
  min-width: 100%;
  font-size: 0.82rem;
}

.spec-table.spec-table-fbe-data th,
.spec-table.spec-table-fbe-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
  width: 1%;
}

.spec-table.spec-table-fbe-data th {
  white-space: normal;
  line-height: 1.18;
  text-align: center;
}

.spec-table.spec-table-fbe-data .spec-unit {
  display: block;
  margin-top: 0.1rem;
  text-align: center;
}

.spec-table.spec-table-lgsk-data {
  table-layout: auto;
  min-width: 1500px;
  font-size: 0.8rem;
}

.spec-table.spec-table-lgsk-data th,
.spec-table.spec-table-lgsk-data td {
  white-space: nowrap;
  padding: 0.42rem 0.46rem;
}

.spec-table.spec-table-misc-data {
  width: max-content;
  min-width: 760px;
  table-layout: auto;
}

.spec-table.spec-table-misc-data th,
.spec-table.spec-table-misc-data td {
  width: auto;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.spec-table.spec-table-misc-data th:first-child,
.spec-table.spec-table-misc-data td:first-child {
  min-width: 140px;
  white-space: normal;
}

.spec-table.spec-table-pressbrake-compare {
  width: max-content;
  min-width: 760px;
  table-layout: auto;
}

.spec-table.spec-table-pressbrake-compare th,
.spec-table.spec-table-pressbrake-compare td {
  width: auto;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.spec-table.spec-table-pressbrake-compare th:first-child,
.spec-table.spec-table-pressbrake-compare td:first-child {
  min-width: 140px;
  white-space: normal;
}

.spec-table.spec-table-tube-compare {
  width: max-content;
  min-width: 700px;
  table-layout: auto;
}

.spec-table.spec-table-tube-compare th,
.spec-table.spec-table-tube-compare td {
  width: auto;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.spec-table.spec-table-tube-compare th:first-child,
.spec-table.spec-table-tube-compare td:first-child {
  min-width: 140px;
  white-space: normal;
}

.spec-table.spec-table-laser2d-compare {
  width: max-content;
  min-width: 700px;
  table-layout: auto;
}

.spec-table.spec-table-laser2d-compare th,
.spec-table.spec-table-laser2d-compare td {
  width: auto;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.spec-table.spec-table-laser2d-compare th:first-child,
.spec-table.spec-table-laser2d-compare td:first-child {
  min-width: 150px;
  white-space: normal;
}

.laser2d-compare-table {
  min-width: 0;
}

.laser2d-compare-table .table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

body.product-page .table-wrap .spec-table {
  width: max-content;
  min-width: 720px;
  table-layout: auto;
}

body.product-page .table-wrap .spec-table th,
body.product-page .table-wrap .spec-table td {
  width: auto;
}

body.product-page .table-wrap .spec-table th:first-child,
body.product-page .table-wrap .spec-table td:first-child {
  white-space: nowrap;
}

@media (min-width: 981px) {
  body.product-page .table-wrap .spec-table {
    width: 100%;
    min-width: 100%;
  }

  body.product-page .table-wrap .spec-table.spec-table-hle-data {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
  }

  .spec-table.spec-table-hle-data col.col-desc {
    width: 22%;
  }

  .spec-table.spec-table-hle-data col.col-unit {
    width: 8%;
  }
}

.spec-note {
  margin-top: 0.7rem;
  color: #607089;
  font-size: 0.85rem;
}

.standard-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.15rem;
  align-items: stretch;
  min-height: 560px;
  border: 1px solid #dfe4eb;
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(12, 26, 44, 0.06);
}

.standard-content {
  padding: 1.35rem 1.2rem;
}

.standard-content h2 {
  margin-bottom: 0.45rem;
}

.standard-intro {
  margin: 0 0 1rem;
  color: #5a6a81;
  max-width: 62ch;
  line-height: 1.55;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1rem;
}

.standard-card {
  border-top: 1px solid #d9d9d9;
  padding-top: 0.85rem;
}

.standard-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.standard-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b667a;
  font-size: 1.15rem;
  line-height: 1;
  background: #f7f9fc;
}

body.product-page .standard-icon {
  color: var(--blue) !important;
  font-variant-emoji: text;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", sans-serif;
}

body.product-page .standard-icon .standard-icon-svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.standard-head h3 {
  margin: 0;
  color: #2f4868;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.standard-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #3f4d63;
  line-height: 1.72;
  font-size: 0.9rem;
}

@keyframes standard-neon-glow {
  0%,
  100% {
    text-shadow: 0 0 3px rgba(1, 181, 253, 0.12);
  }

  50% {
    text-shadow: 0 0 7px rgba(1, 181, 253, 0.22);
  }
}

.standard-neon {
  color: #3a5f78;
  font-weight: 600;
  animation: standard-neon-glow 3.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .standard-neon {
    animation: none;
    text-shadow: 0 0 4px rgba(1, 181, 253, 0.14);
  }
}

.standard-block img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-left: 1px solid #dfe4eb;
  aspect-ratio: auto;
  object-fit: cover;
}

.option-slider {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.55rem;
}

.option-viewport {
  overflow: hidden;
}

.option-track {
  display: flex;
  gap: 0.55rem;
  transition: transform 280ms ease;
}

.option-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  background: #fff;
  flex: 0 0 calc((100% - 2.2rem) / 5);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.option-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.option-card h3 {
  margin: 0;
  padding: 0.62rem 0.62rem 0.2rem;
  color: var(--text-dark);
  font-size: 0.84rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.2;
}

.option-card .option-detail-points {
  display: none;
}

.option-card p {
  margin: 0;
  padding: 0 0.62rem 0.65rem;
  color: #5d6d84;
  font-size: 0.78rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.24;
}

.option-card.is-active {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(25, 33, 47, 0.14);
}

.option-nav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #cfd5de;
  background: #fff;
  color: #3b475b;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.option-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.option-slider.single-option {
  grid-template-columns: 1fr;
}

.option-slider.single-option .option-nav {
  display: none;
}

.option-slider.single-option .option-track {
  justify-content: flex-start;
}

.option-slider.single-option .option-card {
  flex-basis: min(320px, 100%);
}

.option-detail-panel {
  display: none;
}

.option-detail-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.option-detail-media img,
.option-detail-media .option-detail-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.option-detail-media {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  flex: 0 0 auto;
}

.option-detail-scroll {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.option-detail-body {
  padding: 0.8rem 0.8rem 2.4rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 128, 237, 0.45) transparent;
}

.option-detail-body::-webkit-scrollbar {
  width: 6px;
}

.option-detail-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.45);
}

.option-detail-scroll-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1.85rem 0.8rem 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blue);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 52%);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.option-detail-scroll-hint::after {
  content: " \2193";
  font-size: 0.82rem;
  line-height: 1;
}

.option-detail-scroll.is-overflowing:not(.is-scrolled-end) .option-detail-scroll-hint {
  opacity: 1;
  transform: translateY(0);
}

.option-detail-body h3 {
  margin: 0;
  text-transform: none;
  color: #121926;
}

.option-detail-body p {
  margin: 0.55rem 0 0;
  color: #4d5d74;
}

.option-detail-body .check-list {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4d5d74;
}

.option-mobile-sheet {
  display: none;
  content-visibility: visible;
}

.option-mobile-more {
  display: none;
}

body.option-sheet-open {
  overflow: hidden;
}

.option-slider.enhanced-options .option-nav {
  display: none;
}

.option-slider.enhanced-options {
  border: 1px solid #e1e7ef;
  border-radius: 0;
  background: #fdfefe;
  padding: 0.72rem;
}

@media (min-width: 900px) {
  .option-slider.enhanced-options.option-persistent-mode {
    padding: 0.72rem;
    align-items: start;
  }

  .option-slider.enhanced-options.option-persistent-mode .option-viewport {
    padding: 0;
    padding-right: calc(315px + 0.85rem);
    height: auto;
  }

  .option-slider.enhanced-options.option-persistent-mode .option-detail-panel {
    margin: 0;
    border-radius: 0;
    height: auto;
    min-height: 0;
  }

  .option-slider.enhanced-options {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
  }

  .option-slider.enhanced-options .option-viewport {
    overflow: visible;
    padding-right: calc(315px + 0.85rem);
  }

  .option-slider.enhanced-options .option-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
    transform: none !important;
    height: auto;
    align-content: start;
    align-items: stretch;
  }

  .option-slider.enhanced-options .option-card {
    display: flex;
    flex-direction: column;
    flex: initial;
    min-height: 0;
    height: 100%;
    align-self: stretch;
  }

  .option-slider.enhanced-options .option-card img {
    flex: 0 0 auto;
  }

  .option-slider.enhanced-options .option-card h3 {
    flex: 0 0 auto;
    font-size: 0.79rem;
  }

  .option-slider.enhanced-options .option-card p {
    flex: 1 1 auto;
    font-size: 0.72rem;
  }

  .option-slider.enhanced-options .option-detail-panel {
    position: absolute;
    top: 0.72rem;
    right: 0.72rem;
    bottom: 0.72rem;
    width: 315px;
    display: flex;
    flex-direction: column;
    border: 1px solid #9fd7f4;
    background: #ffffff;
    overflow: hidden;
  }

  .option-slider.enhanced-options .option-detail-panel > .option-detail-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
  }

  .option-slider.enhanced-options .option-detail-panel .option-detail-scroll {
    flex: 1 1 auto;
    min-height: 0;
  }

  .option-slider.enhanced-options.single-option {
    min-height: 26rem;
  }

  .option-slider.enhanced-options.single-option .option-viewport {
    min-height: calc(26rem - 1.44rem);
  }

  .option-slider.enhanced-options.single-option .option-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    justify-content: start;
    min-height: 100%;
    height: 100%;
  }

  .option-slider.enhanced-options.single-option .option-card {
    flex-basis: auto;
    align-self: start;
  }

  .option-slider.enhanced-options.pbh-options {
    min-height: 36rem;
  }

  .option-slider.enhanced-options.pbh-options .option-viewport {
    min-height: calc(36rem - 1.44rem);
  }

  .option-slider.enhanced-options.pbh-options .option-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    min-height: 100%;
    height: 100%;
  }

  .option-slider.enhanced-options.pbh-options .option-card {
    min-height: 0;
    height: 100%;
  }

  .option-slider.enhanced-options.option-count-2 .option-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-slider.enhanced-options.option-count-3 {
    min-height: 26rem;
  }

  .option-slider.enhanced-options.option-count-3 .option-viewport {
    min-height: calc(26rem - 1.44rem);
  }

  .option-slider.enhanced-options.option-count-3 .option-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 100%;
    height: 100%;
  }

  .option-slider.enhanced-options.option-count-3 .option-card {
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .option-slider.enhanced-options .option-viewport,
  .option-slider.enhanced-options.option-persistent-mode .option-viewport {
    padding-right: calc(330px + 0.9rem);
  }

  .option-slider.enhanced-options .option-detail-panel {
    width: 330px;
  }

  .option-slider.enhanced-options {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .option-slider.enhanced-options .option-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .option-slider.enhanced-options.option-count-2 .option-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-slider.enhanced-options.option-count-3 .option-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .option-slider.enhanced-options .option-card h3 {
    font-size: 0.84rem;
  }

  .option-slider.enhanced-options .option-card p {
    font-size: 0.78rem;
  }

  .option-slider.enhanced-options.single-option {
    min-height: 28rem;
  }

  .option-slider.enhanced-options.single-option .option-viewport {
    min-height: calc(28rem - 1.44rem);
  }

  .option-slider.enhanced-options.pbh-options {
    min-height: 38rem;
  }

  .option-slider.enhanced-options.pbh-options .option-viewport {
    min-height: calc(38rem - 1.44rem);
  }

  .option-slider.enhanced-options.option-count-3 {
    min-height: 28rem;
  }

  .option-slider.enhanced-options.option-count-3 .option-viewport {
    min-height: calc(28rem - 1.44rem);
  }
}

.sticky-consult {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  width: min(260px, calc(100vw - 1.5rem));
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: #161a22;
  border: 1px solid #2d3442;
  box-shadow: 0 14px 30px rgba(3, 8, 18, 0.42);
}

.sticky-consult-kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.08;
}

.sticky-consult-text {
  margin: 0;
  color: #d4deef;
  line-height: 1.45;
  font-size: 0.94rem;
}

.sticky-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: 1px solid #0495ce;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sticky-consult-btn::after {
  content: "→";
  transition: transform 180ms ease;
}

.sticky-consult-btn:hover {
  transform: translateY(-3px);
  border-color: #b5c9df;
  box-shadow: 0 10px 24px rgba(20, 34, 55, 0.1);
}

.sticky-consult-btn:hover::after {
  transform: none;
}

.sticky-consult-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #e7eefc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.sticky-consult-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #e7eefc;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.sticky-consult-mail::before,
.sticky-consult-phone::before {
  flex: 0 0 auto;
  margin-right: 0.55rem;
}

.sticky-consult-mail::before {
  content: "✉";
  color: var(--blue);
  font-weight: 700;
  display: inline-block;
  min-width: 1rem;
  text-align: center;
}

.sticky-consult-phone::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.54 5.5h2.2l1.2 3.05-1.62 1.62a14.57 14.57 0 0 0 5.51 5.51l1.62-1.62 3.05 1.2v2.2a1.75 1.75 0 0 1-1.75 1.75C10.66 19.2 4.8 13.34 4.8 7.25A1.75 1.75 0 0 1 6.54 5.5Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.54 5.5h2.2l1.2 3.05-1.62 1.62a14.57 14.57 0 0 0 5.51 5.51l1.62-1.62 3.05 1.2v2.2a1.75 1.75 0 0 1-1.75 1.75C10.66 19.2 4.8 13.34 4.8 7.25A1.75 1.75 0 0 1 6.54 5.5Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  color: var(--blue);
}

.sticky-consult-phone:hover {
  color: var(--blue);
}

.sticky-consult-mail:hover {
  color: var(--blue);
}

/* Laptop + mobile: compact round phone FAB */
@media (max-width: 1700px) {
  .sticky-consult {
    left: auto;
    right: 0.6rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom));
    width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(18, 24, 36, 0.97);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: width 220ms ease, border-color 180ms ease, box-shadow 180ms ease;
    z-index: 3500;
    cursor: pointer;
  }

  .sticky-consult::before {
    content: "";
    width: 1.08rem;
    height: 1.08rem;
    display: inline-block;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.54 5.5h2.2l1.2 3.05-1.62 1.62a14.57 14.57 0 0 0 5.51 5.51l1.62-1.62 3.05 1.2v2.2a1.75 1.75 0 0 1-1.75 1.75C10.66 19.2 4.8 13.34 4.8 7.25A1.75 1.75 0 0 1 6.54 5.5Z'/%3E%3C/svg%3E")
      center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.54 5.5h2.2l1.2 3.05-1.62 1.62a14.57 14.57 0 0 0 5.51 5.51l1.62-1.62 3.05 1.2v2.2a1.75 1.75 0 0 1-1.75 1.75C10.66 19.2 4.8 13.34 4.8 7.25A1.75 1.75 0 0 1 6.54 5.5Z'/%3E%3C/svg%3E")
      center / contain no-repeat;
  }

  .sticky-consult-kicker,
  .sticky-consult-text,
  .sticky-consult-btn,
  .sticky-consult-mail {
    display: none !important;
  }

  .sticky-consult-phone {
    opacity: 0;
    max-width: 0;
    margin-left: 0;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
    font-weight: 700;
    color: #ffffff;
    transform: translateX(-6px);
    transition: opacity 180ms ease, max-width 220ms ease, transform 180ms ease, margin-left 180ms ease;
  }

  .sticky-consult-phone::before {
    display: none;
  }

  .sticky-consult.is-expanded {
    width: min(250px, calc(100vw - 1.2rem));
    justify-content: flex-start;
    padding: 0.52rem 0.72rem;
    border-color: var(--blue);
    box-shadow: 0 8px 18px rgba(5, 166, 230, 0.22);
  }

  .sticky-consult.is-expanded .sticky-consult-phone {
    opacity: 1;
    max-width: 180px;
    margin-left: 0.45rem;
    transform: translateX(0);
    pointer-events: auto;
  }
}

/* Large desktop only: full consultation card */
@media (min-width: 1701px) and (hover: hover) and (pointer: fine) {
  .sticky-consult {
    position: fixed !important;
    left: auto !important;
    right: 1rem !important;
    top: auto !important;
    bottom: 1rem !important;
    z-index: 1200;
    width: min(260px, calc(100vw - 1.5rem));
    min-height: 0;
    padding: 1rem;
    border-radius: 14px;
    background: #161a22;
    overflow: visible;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.7rem;
    cursor: default;
  }

  .sticky-consult::before {
    display: none;
  }

  .sticky-consult-kicker,
  .sticky-consult-text,
  .sticky-consult-btn {
    display: revert !important;
  }

  .sticky-consult-mail,
  .sticky-consult-phone {
    display: inline-flex !important;
    align-items: center;
    gap: 0.85rem;
  }

  .sticky-consult-phone {
    opacity: 1;
    max-width: none;
    margin-left: 0;
    transform: none;
    pointer-events: auto;
  }

  .sticky-consult-mail::before,
  .sticky-consult-phone::before {
    margin-right: 0.55rem;
  }

  .sticky-consult-phone::before {
    display: inline-block;
  }
}

@keyframes heroDrift {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 53% 50%;
  }
}

@keyframes heroDriftSubtle {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 51.2% 50%;
  }
}

.yawei-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.yawei-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 15, 0.92), rgba(8, 10, 15, 0.52)),
    url("assets/yawei-hero.png") center/cover no-repeat fixed;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.yawei-hero-content {
  position: relative;
  max-width: 680px;
  padding: 5.8rem 0 4rem;
  color: #ffffff;
}

.yawei-hero-content h1 {
  margin-bottom: 0.7rem;
}

.yawei-subline {
  margin: 0 0 1.15rem;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  color: #e8f3ff;
}

.yawei-brand-line {
  margin-top: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--blue);
}

.yawei-numbers h2,
.yawei-quality h2 {
  text-align: center;
  margin-bottom: 0.55rem;
}

.yawei-intro-text,
.yawei-note {
  text-align: center;
  color: #5b667a;
}

.yawei-note {
  margin-top: 1.1rem;
}

.yawei-number-grid,
.yawei-service-grid,
.yawei-quality-grid,
.yawei-stat-row {
  display: grid;
  gap: 1rem;
}

.yawei-number-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.yawei-number-card,
.yawei-service-grid article,
.yawei-quality-grid article,
.yawei-stat-row article {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
  border: 1px solid #dce5f0;
  border-radius: 0;
  background: #fff;
  padding: 1rem;
}

.yawei-number-card strong,
.yawei-stat-row strong {
  color: var(--blue);
}

.yawei-icon {
  color: var(--blue);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.yawei-icon svg {
  width: 100%;
  height: 100%;
}

.yawei-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.8rem;
  align-items: center;
}

.yawei-image img {
  width: 100%;
  border-radius: 0;
  border: 1px solid #dce4ef;
  object-fit: cover;
  min-height: 280px;
  max-height: 360px;
}

.yawei-list {
  margin: 0.85rem 0 0.95rem;
  padding-left: 0;
  list-style: none;
}

.yawei-list li {
  position: relative;
  margin: 0.3rem 0;
  padding-left: 1.15rem;
}

.yawei-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.yawei-dark,
.yawei-fazit {
  background: #0f141c;
  color: #f0f6ff;
}

.yawei-dark p,
.yawei-fazit p:not(.yawei-brand-line) {
  color: #c4d3e8;
}

.yawei-dark .section-kicker,
.yawei-fazit .section-kicker {
  color: #01b5fd;
}

.yawei-hero-content .yawei-brand-line,
.yawei-fazit .yawei-brand-line {
  color: var(--blue);
}

.yawei-stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.yawei-stat-row article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 128px;
  padding: 1.1rem 0.9rem;
}

.yawei-stat-row article strong {
  display: block;
  line-height: 1.2;
  max-width: 100%;
  margin-inline: auto;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.yawei-stat-row article span {
  display: block;
  color: #4f5d73;
  font-weight: 500;
  line-height: 1.35;
  max-width: 100%;
  margin-inline: auto;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.yawei-stat-row article strong,
.yawei-stat-row article span {
  width: 100%;
  text-align: center;
}

.yawei-page .section.light p:not(.section-kicker):not(.yawei-brand-line),
.yawei-page .section.light li,
.yawei-page .section.light .yawei-number-card span,
.yawei-page .section.light .yawei-service-grid p,
.yawei-page .section.light .yawei-quality-grid p {
  color: #4f5d73;
}

.yawei-service-grid,
.yawei-quality-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0;
}

.service-overview-page {
  background: #ffffff;
  color: #2f3848;
}

.service-overview-hero,
.service-subpage-hero {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 70vh;
  min-height: 70svh;
  padding: 0 0 4.4rem;
  --service-hero-bg-height: 70vh;
  --service-hero-bg-height: 70svh;
  background-color: transparent;
}

.service-overview-hero-bg,
.service-subpage-hero-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--service-hero-bg-height);
  min-height: var(--service-hero-bg-height);
  z-index: 0 !important;
  pointer-events: none !important;
  transform: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  background: linear-gradient(90deg, rgba(10, 14, 22, 0.92), rgba(10, 14, 22, 0.56)),
    url("assets/service-hero.png") center/cover no-repeat;
  background-attachment: scroll;
  animation: none !important;
  will-change: auto;
}

.service-overview-hero .hero-shell,
.service-subpage-hero .hero-shell {
  position: relative;
  z-index: 1;
}

.service-overview-content,
.service-subpage-hero-content {
  max-width: 760px;
  padding-top: 3.6rem;
}

.service-overview-content h1,
.service-subpage-hero-content h1 {
  margin: 0.45rem 0 1rem;
  color: #ffffff;
  text-transform: none;
  line-height: 1.12;
}

.service-overview-content p,
.service-subpage-hero-content p {
  color: #d5deec;
  line-height: 1.62;
}

.service-overview-content .text-link,
.service-subpage-hero-content .text-link {
  color: #dce7f7;
}

.thanks-page .service-overview-hero .hero-content,
.thanks-page .service-overview-hero .hero-content h1,
.thanks-page .service-overview-hero .hero-content p,
.thanks-page .service-overview-hero .hero-kicker {
  color: #f3f8ff;
}

.thanks-page .service-overview-hero .hero-content > p:not(.hero-kicker) {
  color: rgba(243, 248, 255, 0.9);
}

/* Inhalt scrollt über das fixierte Service-Hero-Bild (nicht dahinter) */
body.service-overview-page .global-topbar + main > section:not(.service-overview-hero):not(.service-subpage-hero),
body.service-overview-page .global-topbar + .service-subpage-hero + main,
body.service-overview-page .global-topbar + .service-subpage-hero ~ main > .section,
body.service-overview-page .global-topbar + .service-subpage-hero ~ main > section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  background-color: #ffffff;
}

.unternehmen-overview-page {
  background: #ffffff;
  color: #2f3848;
}

.unternehmen-overview-hero {
  position: relative;
  z-index: 2;
  min-height: min(76vh, 100dvh);
  overflow: visible;
  --unternehmen-hero-bg-height: min(76vh, 100dvh);
  background-color: #0c1018;
}

.unternehmen-overview-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--unternehmen-hero-bg-height);
  min-height: var(--unternehmen-hero-bg-height);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 14, 22, 0.9), rgba(10, 14, 22, 0.5)),
    url("assets/unternehmen-aussen.png") center/cover no-repeat;
  background-attachment: scroll;
  animation: none;
  will-change: auto;
}

.unternehmen-overview-hero .hero-shell {
  position: relative;
  z-index: 1;
}

/* Inhalt scrollt über das fixierte Hero-Bild (nicht dahinter) */
.global-topbar + main.unternehmen-overview-page > section:not(.unternehmen-overview-hero) {
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.unternehmen-overview-hero-content {
  max-width: 620px;
  padding: 5rem 0 3rem;
}

.unternehmen-overview-hero-content h1 {
  margin: 0.45rem 0 0.9rem;
  line-height: 1.06;
  font-size: clamp(2.05rem, 4.7vw, 3.45rem);
  text-transform: none;
  color: #ffffff;
}

.unternehmen-overview-hero-content p {
  margin: 0.75rem 0;
  color: rgba(241, 245, 251, 0.95);
}

.unternehmen-overview-hero .hero-kicker {
  color: var(--blue);
}

.unternehmen-overview-split {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.unternehmen-overview-intro h2 {
  text-transform: none;
  margin-top: 0.35rem;
}

.unternehmen-overview-list {
  list-style: none;
  margin: 1.15rem 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.unternehmen-overview-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #3f4f66;
  font-weight: 500;
}

.unternehmen-overview-icon {
  width: 1rem;
  height: 1rem;
  color: var(--blue);
  display: inline-flex;
  flex: 0 0 auto;
}

.unternehmen-overview-icon svg {
  width: 100%;
  height: 100%;
}

.unternehmen-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid #d8e0ea;
}

.unternehmen-overview-presence {
  background: #0f151f;
  color: #c4d1df;
}

.unternehmen-overview-presence .section-kicker {
  color: var(--blue);
}

.unternehmen-overview-presence h2 {
  margin-top: 0.35rem;
  color: #ffffff;
  text-transform: none;
}

.unternehmen-overview-presence h3 {
  margin: 0;
  color: #ffffff;
  text-transform: none;
  font-size: 1rem;
}

.unternehmen-overview-presence p {
  color: #c4d1df;
}

.unternehmen-presence-label {
  margin: 0.2rem 0;
  color: var(--blue);
  font-weight: 700;
}

.unternehmen-presence-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: center;
}

.unternehmen-presence-top > div {
  min-width: 0;
}

.unternehmen-presence-map {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.unternehmen-presence-map img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.unternehmen-presence-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.unternehmen-presence-cards article {
  background: #151e2d;
  border: 1px solid #2a374c;
  padding: 0.95rem;
}

.unternehmen-presence-cards article p {
  margin: 0.35rem 0 0;
}

.unternehmen-presence-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.unternehmen-presence-metrics article {
  background: #151e2d;
  border: 1px solid #2a374c;
  padding: 0.85rem;
}

.unternehmen-presence-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.2;
}

.unternehmen-presence-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: #c4d1df;
  font-size: 0.92rem;
  line-height: 1.45;
}

.unternehmen-overview-structure {
  background: #0f151f;
}

.unternehmen-overview-structure h2 {
  margin-top: 0.35rem;
  color: #ffffff;
  text-transform: none;
}

.unternehmen-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.unternehmen-overview-grid article {
  background: #151e2d;
  border: 1px solid #2a374c;
  padding: 0.95rem;
}

.unternehmen-overview-grid h3 {
  margin: 0;
  color: #ffffff;
  text-transform: none;
  font-size: 1rem;
}

.unternehmen-overview-grid p {
  margin: 0.38rem 0 0;
  color: #c4d1df;
}

.unternehmen-overview-structure-note {
  margin-top: 1rem;
  color: #cfd8e4;
}

.unternehmen-overview-partners h2,
.unternehmen-overview-partners h3 {
  text-transform: none;
}

.unternehmen-overview-bullet {
  margin: 0.85rem 0 1rem;
  padding-left: 0;
  list-style: none;
  color: #4d5d74;
}

.unternehmen-overview-bullet li {
  position: relative;
  margin-bottom: 0.35rem;
  padding-left: 1.3rem;
}

.unternehmen-overview-bullet li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.unternehmen-overview-links {
  padding-top: 0;
}

.unternehmen-overview-lasercut {
  border-top: 1px solid #e3e8f0;
  border-bottom: 0;
}

.unternehmen-overview-lasercut h2 {
  margin-top: 0.35rem;
  text-transform: none;
}

.unternehmen-overview-lasercut p {
  max-width: 920px;
}

.unternehmen-lasercut-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0.4rem 0 1rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.unternehmen-lasercut-link:hover {
  color: #038cc2;
}

.unternehmen-lasercut-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.unternehmen-lasercut-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid #d8e0ea;
}

.unternehmen-overview-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.unternehmen-overview-link-grid a {
  border: 1px solid #d6e0eb;
  background: #ffffff;
  padding: 0.72rem 0.82rem;
  color: #1f314a;
  text-decoration: none;
  font-weight: 600;
}

.unternehmen-overview-link-grid a:hover {
  color: var(--blue);
  border-color: #b5c9df;
}

@media (max-width: 980px) {
  .unternehmen-overview-hero {
    min-height: min(64vh, 100dvh);
    --unternehmen-hero-bg-height: min(64vh, 100dvh);
  }

  .unternehmen-overview-split {
    grid-template-columns: 1fr;
  }

  .unternehmen-presence-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .unternehmen-presence-map {
    width: 100%;
    max-width: 100%;
  }

  .unternehmen-presence-map img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .unternehmen-presence-cards {
    grid-template-columns: 1fr;
  }

  .unternehmen-presence-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unternehmen-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unternehmen-overview-link-grid {
    grid-template-columns: 1fr;
  }

  .unternehmen-lasercut-gallery {
    grid-template-columns: 1fr;
  }

  .unternehmen-lasercut-gallery img {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .unternehmen-overview-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 22, 0.9), rgba(10, 14, 22, 0.55)),
    url("assets/kontakt.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.impressum-hero-bg,
.datenschutz-hero-bg,
.career-hero-bg,
.laser2d-hero-bg,
.series-hero-bg,
.yawei-hero-bg,
.contact-hero-bg {
  animation: hero-bg-drift-subtle 30s linear infinite alternate !important;
  background-position: center center, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 128% auto !important;
  will-change: background-position;
}

@media (max-width: 980px) and (orientation: portrait) {
  .impressum-hero-bg,
  .datenschutz-hero-bg,
  .career-hero-bg,
  .laser2d-hero-bg,
  .series-hero-bg,
  .yawei-hero-bg,
  .contact-hero-bg {
    background-size: cover, auto 132% !important;
    background-position: center center, 50% 50%;
  }
}

/* HLF Hero: feste 800px, nicht mitscrollen, ohne Unschärfe/Zoom-Drift */
body.hlf-page .series-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 800px;
  background-image: linear-gradient(
      95deg,
      rgba(10, 12, 18, 0.8) 0%,
      rgba(10, 12, 18, 0.58) 30%,
      rgba(10, 12, 18, 0.24) 52%,
      rgba(10, 12, 18, 0.06) 69%,
      transparent 82%
    ),
    url("assets/hlf_hero_1920.webp?v=3");
  background-size: auto 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  animation: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  z-index: 0;
  transform: none;
  backface-visibility: visible;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
  padding: 5.2rem 0 3.2rem;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  text-transform: none;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-page .split-head {
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.contact-card {
  border: 1px solid #dde3ea;
  background: #ffffff;
  padding: 1.35rem;
}

.contact-card h3 {
  margin-top: 0;
  text-transform: none;
}

.contact-card p {
  margin: 0.45rem 0;
}

.contact-quick-list {
  margin: 0.9rem 0 0;
  padding-left: 0;
  list-style: none;
}

.contact-quick-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
}

.contact-quick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.contact-direct-link {
  color: #27466a;
  text-decoration: none;
}

.contact-direct-link:hover {
  color: var(--blue);
}

.contact-form-wrap {
  border: 1px solid #dde3ea;
  background: #ffffff;
  padding: 1.35rem;
}

.contact-inline-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-inline-icon {
  width: 1rem;
  height: 1rem;
  color: #27466a;
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #26364c;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #b8c7da;
  background: #fff;
  color: #14213a;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(5, 166, 230, 0.16);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.contact-consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--blue);
}

.contact-consent label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #2a3d55;
}

.contact-map {
  margin-top: 1.2rem;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 1px solid #d6e0ec;
}

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

.service-overview-content .hero-actions {
  margin-top: 1.4rem;
}

.service-overview-content .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
}

.service-overview-intro p {
  color: #4f5d73;
  line-height: 1.65;
}

.service-overview-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-overview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  border: 1px solid #dce3ed;
  background: #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-overview-card:hover {
  transform: translateY(-3px);
  border-color: #b5c9df;
  box-shadow: 0 10px 24px rgba(20, 34, 55, 0.1);
}

.service-overview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-overview-card-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.service-overview-card-body strong {
  display: block;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.86rem;
}

.service-overview-card-body p {
  margin: 0.4rem 0 0.6rem;
  color: #53627a;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-overview-card-body span {
  margin-top: auto;
  padding-top: 0.2rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.84rem;
}

.service-strengths-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-strength {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #dce3ed;
  padding: 0.85rem;
  background: #fff;
}

.service-strength-icon {
  width: 36px;
  height: 36px;
  display: flex;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  color: #111820;
}

.service-strength-icon svg {
  width: 100%;
  height: 100%;
}

.service-strength-text {
  min-width: 0;
}

.service-strength h3 {
  margin: 0;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.82rem;
}

.service-strength p {
  margin: 0.35rem 0 0;
  color: #5a6980;
  font-size: 0.85rem;
  line-height: 1.45;
}

.service-contact-band {
  background: #1f2529;
}

.service-contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.service-contact-wrap h2 {
  margin-top: 0.35rem;
  color: #ffffff;
}

.service-contact-wrap p {
  color: #c0cde0;
}

.service-contact-hotline {
  border: 1px solid #334055;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.service-contact-hotline p {
  margin: 0;
}

.service-contact-hotline .hotline-title {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.service-contact-hotline .hotline-number {
  color: var(--blue);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .service-strengths-grid,
  .service-contact-wrap {
    grid-template-columns: 1fr;
  }

  .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .option-card {
    flex-basis: calc((100% - 1.65rem) / 4);
  }
}

@media (max-width: 980px) {
  .global-topbar + main > section:first-child {
    padding-top: clamp(3.8rem, 14vw, 4.7rem);
  }

  .series-hero .hero-shell,
  .laser2d-hero .hero-shell {
    padding-top: clamp(3.8rem, 14vw, 4.7rem);
  }

  .global-topbar {
    z-index: 12000;
  }

  .global-topbar .hero-header {
    padding: 0.7rem 0.85rem;
  }

  .global-topbar .logo-img,
  .logo-img {
    width: clamp(128px, 28vw, 190px);
  }

  body.mobile-header-shrink .global-topbar .hero-header {
    padding: 0.45rem 0.72rem;
    min-height: 48px;
  }

  body.mobile-header-shrink .global-topbar .logo-img,
  body.mobile-header-shrink .logo-img {
    width: clamp(108px, 24vw, 160px);
  }

  .split-head,
  .benefit-grid,
  .news-grid,
  .footer-columns,
  .machine-strip,
  .series-hero-grid,
  .laser2d-compare-wrap,
  .series-badges,
  .corefacts-grid,
  .tech-detail-grid,
  .split-feature,
  .standard-block,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  #produkte .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .laser2d-series-grid,
  .automation-series-grid,
  .pressbrake-series-grid,
  .tube-series-grid,
  .misc-series-grid,
  .stanz-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .tube-series-grid > .laser2d-series-card:last-child {
    grid-column: 1 / -1;
  }

  .misc-series-grid > .laser2d-series-card:nth-child(2) {
    order: 1;
  }

  .misc-series-grid > .laser2d-series-card:nth-child(3) {
    order: 2;
  }

  .misc-series-grid > .laser2d-series-card:nth-child(1) {
    order: 3;
    grid-column: 1 / -1;
  }

  .misc-series-grid > .laser2d-series-card:nth-child(1) img {
    width: 100%;
    height: 112px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .laser2d-series-card {
    padding: 0.5rem;
  }

  .laser2d-series-card img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .laser2d-series-card h3 {
    margin-top: 0.2rem;
    font-size: 0.9rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .laser2d-series-card ul,
  .laser2d-series-card .text-link {
    display: none;
  }

  .hlf-components-grid {
    grid-template-columns: 1fr;
  }

  .hlf-component-card img {
    height: 210px;
  }

  .hlf-spec-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hlf-spec-strip article:nth-child(2n) {
    border-right: 0;
  }

  .hlf-spec-strip article {
    border-bottom: 1px solid #e7edf4;
  }

  .hlf-spec-strip article:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .team-overview-hero {
    --team-hero-bg-height: min(48vh, 460px);
  }

  .team-overview-hero-bg {
    background-image:
      linear-gradient(
        180deg,
        #f5f7fa 0%,
        #f5f7fa 52%,
        rgba(245, 247, 250, 0.82) 66%,
        rgba(245, 247, 250, 0.35) 80%,
        transparent 100%
      ),
      url("assets/team.png");
    background-position: center top, center center;
    background-size: 100% 100%, cover;
  }

  .team-overview-hero-content {
    padding: 3rem 0 2.2rem;
  }

  .team-quick-nav {
    display: none;
  }

  .team-directory-row--1-2,
  .team-directory-row--1-1,
  .team-directory-row--full {
    grid-template-columns: 1fr;
  }

  .team-member-grid-cols-2,
  .team-member-grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .team-member-grid-single .team-member-card {
    grid-column: auto;
  }

  .team-banner-cta-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .team-member-actions {
    grid-template-columns: 1fr;
  }

  .career-intro-grid,
  .career-split,
  .career-band-grid,
  .career-pillars,
  .career-band-facts,
  .career-strip-grid,
  .yawei-number-grid,
  .yawei-stat-row,
  .yawei-service-grid,
  .yawei-quality-grid {
    grid-template-columns: 1fr;
  }

  .yawei-split {
    grid-template-columns: 1fr;
  }

  .series-badges {
    gap: 1rem;
  }

  .series-badge-text p {
    max-width: none;
  }

  .laser2d-page .series-badges-strip {
    display: none;
  }

  body.product-page .standard-block {
    min-height: 0;
  }

  body.product-page .standard-block img,
  body.product-page .split-feature img {
    height: auto;
    min-height: 0;
    max-height: min(42vh, 280px);
    object-fit: cover;
  }


  #produkte .category-grid .cat-card {
    min-height: 100%;
    height: 100%;
  }

  #produkte .category-grid .cat-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #produkte .category-grid .cat-card .cat-link {
    margin-top: auto;
    padding-top: 0.55rem;
  }

  .cta-band-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-table {
    font-size: 0.8rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.42rem 0.45rem;
  }

  .spec-table td {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .spec-table th {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .spec-table tr.spec-row-machinesize td:nth-child(n + 3) {
    white-space: normal;
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .spec-table.spec-table-hlf-data col.col-desc {
    width: 148px;
  }

  .spec-table.spec-table-hlf-data col.col-unit {
    width: 56px;
  }

  .spec-table.spec-table-hle-data col.col-desc {
    width: 148px;
  }

  .spec-table.spec-table-hle-data col.col-unit {
    width: 56px;
  }

  .spec-table.spec-table-laser2d-compare {
    min-width: 640px;
  }

  .spec-table.spec-table-laser2d-compare th,
  .spec-table.spec-table-laser2d-compare td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .laser2d-compare-wrap,
  .laser2d-compare-table {
    min-width: 0;
  }

  .laser2d-compare-table .table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }

  .spec-table.spec-table-misc-data {
    min-width: 680px;
  }

  .spec-table.spec-table-mazak-service {
    width: 100%;
    min-width: 0;
    table-layout: auto;
  }

  .spec-table.spec-table-mazak-service th,
  .spec-table.spec-table-mazak-service td {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .spec-table.spec-table-mazak-service th:first-child,
  .spec-table.spec-table-mazak-service td:first-child {
    position: static;
    left: auto;
    box-shadow: none;
    width: 38%;
  }

  .spec-table.spec-table-mazak-service th:nth-child(2),
  .spec-table.spec-table-mazak-service td:nth-child(2) {
    width: 62%;
  }
}

@media (max-width: 640px) {
  .hlf-spec-strip {
    grid-template-columns: 1fr;
  }

  .hlf-spec-strip article {
    border-right: 0;
  }

  .hlf-spec-strip article:nth-last-child(-n + 1) {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  body.mobile-nav-open-global {
    overflow: hidden;
  }

  body.mobile-nav-open-global::before {
    display: none;
  }

  .global-topbar .hero-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    z-index: auto;
    overflow: visible;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .hero-header.mobile-nav-open .main-nav {
    display: none !important;
  }

  .hero-header.mobile-nav-open::after {
    display: none;
  }

  body.mobile-nav-open-global .mobile-main-nav-global {
    display: flex;
    position: fixed;
    top: var(--mobile-menu-top, 4.35rem);
    right: 0;
    left: 0;
    bottom: auto;
    height: auto;
    max-height: calc(100dvh - var(--mobile-menu-top, 4.35rem));
    z-index: 3900;
    flex-direction: column;
    gap: 0;
    background: #1f2529;
    border-top: 1px solid #2d3b4f;
    border-bottom: 1px solid #2d3b4f;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
    padding: 0.45rem;
    align-items: stretch;
    overflow: auto;
  }

  body.mobile-nav-open-global .mobile-main-nav-global > a {
    display: block;
    padding: 0.82rem 0.82rem;
    border-bottom: 1px solid #2a374c;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #d3dceb;
    text-decoration: none;
    text-align: left;
  }

  body.mobile-nav-open-global .mobile-main-nav-global > a:last-child {
    border-bottom: 0;
  }

  .series-hero,
  .laser2d-hero {
    overflow: visible;
  }

}

@media (max-width: 899px) {
  .option-slider.enhanced-options {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .option-slider.enhanced-options .option-detail-panel {
    display: none;
  }

  .option-slider.enhanced-options .option-viewport {
    overflow: visible;
  }

  .option-slider.enhanced-options .option-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    transform: none !important;
  }

  .option-slider.enhanced-options .option-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    flex: initial;
    padding: 0.35rem 0.55rem;
  }

  .option-slider.enhanced-options .option-card img {
    width: 58px;
    height: 42px;
    object-fit: cover;
    aspect-ratio: auto;
    border: 1px solid #e2e8f0;
  }

  .option-slider.enhanced-options .option-card h3 {
    padding: 0;
    font-size: 0.88rem;
    margin: 0;
    text-transform: none;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.2;
  }

  .option-slider.enhanced-options .option-card p {
    display: none;
  }

  .option-slider.enhanced-options .option-card::after {
    content: "\2192";
    color: var(--blue);
    font-weight: 700;
    font-size: 1rem;
  }

  .option-slider.enhanced-options .option-card.option-hidden-mobile {
    display: none;
  }

  .option-slider.enhanced-options .option-mobile-more:not([hidden]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    border: 1px solid #d3dbe7;
    background: #ffffff;
    color: #2e3d55;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.58rem 0.72rem;
    cursor: pointer;
  }

  .option-slider.enhanced-options .option-mobile-more[hidden] {
    display: none !important;
  }

  .option-mobile-sheet {
    display: block;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 13000;
  }

  .option-mobile-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(8, 12, 20, 0.42);
    opacity: 0;
    transition: opacity 320ms ease;
    z-index: 6001;
  }

  .option-mobile-panel {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    background: #ffffff;
    border: 1px solid #d7deea;
    border-radius: 14px 14px 10px 10px;
    box-shadow: 0 18px 44px rgba(6, 10, 18, 0.32);
    transform: translate3d(0, 108%, 0);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    max-height: min(78vh, 560px);
    overflow: auto;
    z-index: 6002;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .option-mobile-close {
    position: absolute;
    top: 0.3rem;
    right: 0.45rem;
    border: 0;
    background: transparent;
    color: #3a475d;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
  }

  .option-mobile-sheet.is-open,
  .option-slider.option-mobile-open .option-mobile-sheet.is-open {
    pointer-events: auto;
  }

  .option-mobile-sheet.is-open .option-mobile-backdrop,
  .option-slider.option-mobile-open .option-mobile-sheet.is-open .option-mobile-backdrop {
    opacity: 1;
  }

  .option-mobile-sheet.is-open .option-mobile-panel,
  .option-slider.option-mobile-open .option-mobile-sheet.is-open .option-mobile-panel {
    transform: translate3d(0, 0, 0);
  }

  .option-mobile-content {
    display: flex;
    flex-direction: column;
  }

  .option-mobile-content .option-detail-media {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    position: relative;
    top: auto;
    background: #f3f6fa;
  }

  .option-mobile-content .option-detail-media img,
  .option-mobile-content .option-detail-media .option-detail-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 160px;
    max-height: min(42vh, 280px);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 0;
  }

  .option-mobile-content .option-detail-body {
    padding: 1.1rem 0.85rem 0.95rem;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  body.product-page .series-hero,
  body.product-page .laser2d-hero {
    min-height: auto;
    height: auto;
    padding-bottom: 1.35rem;
  }

  body.product-page .series-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  body.product-page .series-hero-grid > img {
    order: -1;
    width: auto;
    max-width: 100%;
    height: calc(100dvh - clamp(3.8rem, 14vw, 4.7rem));
    min-height: 240px;
    align-self: stretch;
    object-fit: contain;
    object-position: center center;
  }

  body.product-page .series-hero-grid > div {
    width: 100%;
  }

  body.product-page .split-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0.75rem;
    align-items: stretch;
    border: 1px solid #dfe4eb;
    background: #ffffff;
    padding: 0.75rem;
  }

  body.product-page .split-feature img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border: 1px solid #dce3ed;
  }

  #produkte .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .service-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .series-hero-grid {
    align-items: flex-start;
  }

  .series-hero-grid > img {
    align-self: flex-start;
    object-position: top center;
  }

  .tech-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
  }

  .tech-detail-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #dce3ed;
    background: #ffffff;
    height: 100%;
  }

  .tech-detail-card .tech-detail-image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    aspect-ratio: auto;
    border: 0;
  }

  .tech-detail-card .tech-detail-text {
    padding: 0.55rem 0.62rem 0.65rem;
    flex: 1 1 auto;
  }

  .tech-detail-card .tech-detail-text h3 {
    margin: 0 0 0.28rem;
    text-transform: none;
    font-size: 0.9rem;
  }

  .tech-detail-card .tech-detail-text ul {
    margin: 0;
  }

  .tech-detail-card .tech-detail-text li {
    margin-bottom: 0.2rem;
    line-height: 1.28;
    font-size: 0.82rem;
  }

  .spec-table.spec-table-misc-data {
    width: 100%;
    min-width: 100%;
    table-layout: auto;
  }

  .spec-table.spec-table-misc-data th,
  .spec-table.spec-table-misc-data td {
    width: auto;
  }

  body.product-page .table-wrap .spec-table.spec-table-tube-compare {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
  }

  body.product-page .table-wrap .spec-table.spec-table-tube-compare th,
  body.product-page .table-wrap .spec-table.spec-table-tube-compare td {
    width: 25%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
}

/* Mobil-Querformat: Serienausstattung kompakt, Karten in 3 Spalten (wie iPhone) */
@media (max-width: 1100px) and (orientation: landscape) {
  body.product-page .standard-block,
  body.hlf-page .standard-block {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    min-height: 0;
    align-items: stretch;
  }

  body.product-page .standard-grid,
  body.hlf-page .standard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem 0.58rem;
  }

  body.product-page .standard-content,
  body.hlf-page .standard-content {
    padding: 0.9rem 0.8rem;
  }

  body.product-page .standard-content h2,
  body.hlf-page .standard-content h2 {
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  }

  body.product-page .standard-intro,
  body.hlf-page .standard-intro {
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  body.product-page .standard-card,
  body.hlf-page .standard-card {
    padding-top: 0.55rem;
  }

  body.product-page .standard-head,
  body.hlf-page .standard-head {
    gap: 0.45rem;
    margin-bottom: 0.4rem;
  }

  body.product-page .standard-icon,
  body.hlf-page .standard-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  body.product-page .standard-head h3,
  body.hlf-page .standard-head h3 {
    font-size: 0.76rem;
  }

  body.product-page .standard-card ul,
  body.hlf-page .standard-card ul {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  body.product-page .standard-block img,
  body.hlf-page .standard-block img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: min(48vh, 300px);
    object-fit: cover;
    border-left: 1px solid #dfe4eb;
  }
}

@media (orientation: landscape) and (pointer: coarse) {
  .spec-table.spec-table-misc-data {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
  }

  .spec-table.spec-table-misc-data th,
  .spec-table.spec-table-misc-data td {
    width: 25%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  body.product-page .table-wrap .spec-table.spec-table-tube-compare {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
  }

  body.product-page .table-wrap .spec-table.spec-table-tube-compare th,
  body.product-page .table-wrap .spec-table.spec-table-tube-compare td {
    width: 25%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
}

@media (min-width: 640px) and (max-width: 899px) and (orientation: landscape) {
  .option-slider.enhanced-options {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
  }

  .option-slider.enhanced-options .option-viewport {
    padding-right: calc(290px + 0.75rem);
  }

  .option-slider.enhanced-options .option-detail-panel {
    position: absolute;
    top: 0.72rem;
    right: 0.72rem;
    bottom: 0.72rem;
    width: 290px;
    border: 1px solid #9fd7f4;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .option-slider.enhanced-options .option-detail-panel > .option-detail-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
  }

  .option-slider.enhanced-options .option-viewport {
    overflow: visible;
  }

  .option-slider.enhanced-options .option-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    transform: none !important;
    align-items: stretch;
  }

  .option-slider.enhanced-options.option-count-2 .option-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-slider.enhanced-options.option-count-3 .option-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .option-slider.enhanced-options .option-card {
    display: flex;
    flex-direction: column;
    flex: initial;
    height: 100%;
    align-self: stretch;
    padding: 0;
  }

  .option-slider.enhanced-options .option-card img {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border: 0;
  }

  .option-slider.enhanced-options .option-card h3 {
    flex: 0 0 auto;
    padding: 0.52rem 0.52rem 0.12rem;
    font-size: 0.74rem;
    text-transform: none;
  }

  .option-slider.enhanced-options .option-card p {
    flex: 1 1 auto;
    display: block;
    padding: 0 0.52rem 0.52rem;
    font-size: 0.66rem;
  }

  .option-slider.enhanced-options .option-card::after {
    display: none;
  }

  .option-slider.enhanced-options .option-mobile-more,
  .option-mobile-sheet {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .team-member-grid-cols-2,
  .team-member-grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .career-hero {
    padding: 2.6rem 0 3rem;
  }
}

/* Phone landscape: hide badge/corefacts rows when one row would wrap (iPad mini ~1024+ stays) */
@media (max-width: 1023px) and (orientation: landscape) {
  body.product-page .series-badges-strip,
  body.hlf-page .series-badges-strip,
  body.product-page .corefacts-wrap,
  body.hlf-page .corefacts-wrap {
    display: none !important;
  }
}

@media (max-width: 980px) and (orientation: portrait) {
  .series-badges-strip,
  .corefacts-wrap {
    display: none !important;
  }

  body.product-page:not(.hlf-page) .series-hero .series-hero-grid > div:first-child,
  body.product-page .laser2d-hero-content {
    width: 100%;
    max-width: 100%;
  }

  body.product-page:not(.hlf-page) .series-hero-grid h1,
  body.product-page:not(.hlf-page) .series-hero-grid p,
  body.product-page:not(.hlf-page) .series-hero-grid .section-kicker,
  body.product-page .laser2d-hero-content h1,
  body.product-page .laser2d-hero-content p {
    max-width: 100%;
  }

  .series-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .series-hero-grid > img {
    order: -1;
    width: 100%;
    max-width: none;
  }

  .series-hero-grid > div {
    width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }

  body.product-page .hero .hero-actions,
  body.product-page .laser2d-hero .hero-actions,
  body.product-page .series-hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
  }

  body.product-page .hero .hero-actions .btn,
  body.product-page .laser2d-hero .hero-actions .btn,
  body.product-page .series-hero .hero-actions .btn {
    width: 50%;
    min-width: 0;
    max-width: 50%;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0.68rem 0.72rem;
    font-size: clamp(0.7rem, 2.6vw, 0.82rem);
    line-height: 1.2;
  }

  .hero-actions .btn:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 14px rgba(5, 166, 230, 0.16);
  }
}

/* Slightly more compact scale on common laptop viewports */
@media (min-width: 1200px) and (max-width: 1600px) {
  .container {
    width: min(1080px, calc(100% - 2rem));
  }

  .section {
    padding: 2.3rem 0;
  }

  h1 {
    font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.2rem, 1.9vw, 1.75rem);
  }
}

/* News – Hero 1:1 wie Team (.team-overview-hero-bg = position: fixed) */
body.news-page {
  min-height: 100svh;
  color: #2f3848;
  background: #ffffff;
}

body.news-page .news-page-layout {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

body.news-page .news-page-layout > main {
  flex: 1 0 auto;
}

body.news-page .news-page-layout > .site-footer {
  flex: 0 0 auto;
  margin-top: auto;
}

body.news-page .sticky-consult,
body.news-detail-page .sticky-consult {
  display: none !important;
}

.news-overview-page {
  color: #2f3848;
}

body.news-page .news-overview-hero {
  min-height: min(52vh, 520px);
  --team-hero-bg-height: min(52vh, 520px);
  background-color: transparent;
}

body.news-page .team-overview-hero-bg.news-overview-hero-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  transform: none !important;
  filter: none !important;
  background-color: #f7f9fc;
  background-image:
    linear-gradient(
      90deg,
      #f7f9fc 0%,
      #f7f9fc 30%,
      rgba(247, 249, 252, 0.95) 40%,
      rgba(247, 249, 252, 0.74) 50%,
      rgba(247, 249, 252, 0.42) 62%,
      rgba(247, 249, 252, 0.12) 76%,
      transparent 88%
    ),
    url("assets/news-hero.webp");
  background-position: left center, center center;
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
}

.global-topbar + main.news-overview-page > section:not(.team-overview-hero) {
  position: relative;
  z-index: 4;
  isolation: isolate;
  background-color: #ffffff;
}

main.news-overview-page > section.news-overview-list {
  content-visibility: visible;
  contain: none;
}

.news-overview-hero-content {
  max-width: 34rem;
  padding: 3.4rem 0 2.8rem;
}

.news-overview-hero-content h1 {
  margin: 0.35rem 0 0.85rem;
  line-height: 1.08;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  text-transform: none;
  color: #1a2230;
}

.news-overview-hero-content p:not(.section-kicker) {
  margin: 0;
  max-width: 34rem;
  color: #4a5668;
}

.news-overview-hero-accent {
  width: 3.4rem;
  height: 3px;
  margin: 0 0 1rem;
  background: var(--blue);
  border-radius: 999px;
}

.news-overview-list {
  padding-top: 2.2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 24, 38, 0.06);
}

.news-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf3;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
}

.news-card-date {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}

.news-card-category {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a778a;
}

.news-card-title {
  margin: 0.15rem 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.news-card-title a {
  color: #1a2230;
  text-decoration: none;
}

.news-card-title a:hover {
  color: var(--blue);
}

.news-card-teaser {
  margin: 0;
  color: #4f5c6d;
  font-size: 0.94rem;
  line-height: 1.55;
}

.news-card-link {
  margin-top: auto;
  padding-top: 0.35rem;
}

.news-empty {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: #6a778a;
  background: #f7f9fc;
  border: 1px dashed #d5dee9;
  border-radius: 10px;
}

.news-detail-section {
  padding-top: 2.6rem;
}

.news-detail-container {
  max-width: 820px;
}

.news-detail-article {
  margin-top: 1rem;
}

.news-detail-figure {
  margin: 0 0 1.4rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(16, 24, 38, 0.1);
}

.news-detail-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-header h1 {
  margin: 0.35rem 0 0;
  line-height: 1.12;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  text-transform: none;
  color: #1a2230;
}

.news-detail-date {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

.news-detail-category {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a778a;
}

.news-detail-content p {
  margin: 0.85rem 0 0;
  color: #4a5668;
  line-height: 1.65;
}

.news-detail-not-found {
  margin-top: 1rem;
  padding: 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.news-detail-not-found h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  text-transform: none;
}

body.page-news .main-nav a[href="news.html"],
body.page-news-detail .main-nav a[href="news.html"] {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 980px) {
  body.news-page .news-overview-hero {
    min-height: min(46vh, 460px);
    --team-hero-bg-height: min(46vh, 460px);
  }

  body.news-page .news-overview-hero-bg {
    background-image:
      linear-gradient(
        180deg,
        #f7f9fc 0%,
        #f7f9fc 50%,
        rgba(247, 249, 252, 0.84) 64%,
        rgba(247, 249, 252, 0.38) 80%,
        transparent 100%
      ),
      url("assets/news-hero-480.webp");
    background-position: center top, center center;
    background-size: 100% 100%, cover;
  }

  .news-overview-hero-content {
    padding: 2.6rem 0 2.2rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

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

/* Mobile/tablet: avoid expensive fixed background paints */
@media (max-width: 1100px) {
  .hero-bg,
  .series-hero-bg,
  .laser2d-hero-bg,
  .yawei-hero-bg,
  .contact-hero-bg {
    background-attachment: scroll !important;
    animation: none !important;
    will-change: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .series-hero-bg,
  .laser2d-hero-bg,
  .yawei-hero-bg,
  .contact-hero-bg {
    animation: none !important;
    transform: none !important;
    will-change: auto !important;
  }
}
