:root {
  --background: #f8f5ef;
  --surface: #ffffff;
  --text: #1d2b2a;
  --muted: #5f6f6c;
  --primary: #126b5d;
  --primary-dark: #0c4d43;
  --accent: #d96c4a;
  --border: #d9ded9;
  --shadow: 0 18px 45px rgba(29, 43, 42, 0.12);
  --header-background: rgba(248, 245, 239, 0.94);
  --section-tint: #e9f0ec;
  --input-background: #fbfcfb;
  --footer-background: #102220;
  --hero-overlay: linear-gradient(90deg, rgba(16, 24, 22, 0.42) 0%, rgba(16, 24, 22, 0.26) 44%, rgba(16, 24, 22, 0.12) 100%);
  --hero-overlay-mobile: linear-gradient(180deg, rgba(16, 24, 22, 0.5) 0%, rgba(16, 24, 22, 0.34) 58%, rgba(16, 24, 22, 0.2) 100%);
}

:root[data-theme="dark"] {
  --background: #101816;
  --surface: #172421;
  --text: #eef5f1;
  --muted: #b4c3bd;
  --primary: #4fc0a9;
  --primary-dark: #36a38e;
  --accent: #f08a68;
  --border: #2d403b;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  --header-background: rgba(16, 24, 22, 0.94);
  --section-tint: #14201d;
  --input-background: #101816;
  --footer-background: #0b1110;
  --hero-overlay: linear-gradient(90deg, rgba(5, 10, 9, 0.9) 0%, rgba(5, 10, 9, 0.8) 44%, rgba(5, 10, 9, 0.62) 100%);
  --hero-overlay-mobile: linear-gradient(180deg, rgba(5, 10, 9, 0.92) 0%, rgba(5, 10, 9, 0.84) 58%, rgba(5, 10, 9, 0.74) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  transition: background 0.2s ease, color 0.2s ease;
}

img {
  max-width: 100%;
}

.image-hero-media picture,
.industry-flip-card-back picture,
.production-flip-card-back picture {
  display: contents;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: var(--header-background);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #101816;
  text-decoration: none;
}

.logo-orbit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.logo-text {
  display: grid;
  gap: 0;
}

.logo-word {
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
}

.logo-subtitle {
  justify-self: end;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1;
}

:root[data-theme="dark"] .logo {
  color: #ffffff;
}

:root[data-theme="dark"] .logo-subtitle {
  color: #ffffff;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.main-nav a,
.main-nav .nav-item > a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav .nav-item > a:hover,
.main-nav .nav-item > a:focus {
  color: var(--primary);
}

.main-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20;
  min-width: 180px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.nav-submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  color: var(--primary);
  background: var(--section-tint);
}

.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus {
  border-color: var(--primary);
  color: var(--primary);
}

.contact-mail-card {
  align-self: stretch;
}

.contact-mail-card h3 {
  margin-top: 0;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    var(--hero-overlay),
    image-set(
      url("assets/halle1-1920.avif") type("image/avif"),
      url("assets/halle1-1920.webp") type("image/webp"),
      url("assets/halle1.webp") type("image/webp"),
      url("assets/halle1.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 620px;
  min-width: 0;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--primary);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus,
.contact-form button:hover,
.contact-form button:focus {
  background: var(--primary-dark);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

.inline-fact-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--primary) 62%, transparent);
  text-underline-offset: 3px;
}

.inline-fact-link:hover,
.inline-fact-link:focus {
  color: var(--primary);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.page-hero {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: var(--section-tint);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.company-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 780px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: #101816;
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 600px;
  color: #ffffff;
}

.company-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.company-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #101816;
  box-shadow: none;
}

.company-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.92) 0%, rgba(16, 24, 22, 0.74) 42%, rgba(16, 24, 22, 0.22) 100%);
}

:root[data-theme="dark"] .company-hero-media::after {
  background: linear-gradient(90deg, rgba(5, 10, 9, 0.94) 0%, rgba(5, 10, 9, 0.8) 42%, rgba(5, 10, 9, 0.3) 100%);
}

.company-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hero {
  position: relative;
  min-height: clamp(500px, 68vh, 740px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: var(--section-tint);
}

.image-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 680px;
}

.image-hero-copy h1 {
  color: var(--text);
}

.image-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.image-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.96) 0%, rgba(233, 240, 236, 0.82) 42%, rgba(233, 240, 236, 0.18) 100%);
}

:root[data-theme="dark"] .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.96) 0%, rgba(16, 24, 22, 0.84) 42%, rgba(16, 24, 22, 0.2) 100%);
}

.image-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-example-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 620px;
  margin-top: 22px;
  padding: 12px;
  color: var(--text);
  text-decoration: none;
  background: color-mix(in srgb, var(--card-bg) 88%, transparent);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-example-card:hover,
.hero-example-card:focus {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.hero-example-media {
  display: block;
  width: 116px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--section-tint);
}

.hero-example-media picture,
.hero-example-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-example-media img {
  object-fit: cover;
}

.hero-example-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-example-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-example-copy strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-example-copy span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.machining-hero .image-hero-media img {
  object-position: 72% center;
}

.turn-mill-hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  max-width: 22ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.cnc-milling-hero .image-hero-media img {
  object-position: right center;
}

.cnc-milling-hero h1 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  max-width: 25ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.quality-hero .image-hero-media img {
  object-position: 58% center;
}

.quality-hero .image-hero-copy {
  max-width: 820px;
}

.quality-hero h1 {
  font-size: clamp(2.4rem, 3.7vw, 3.8rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.knowledge-hero .image-hero-media img {
  object-position: 72% center;
}

.production-hero .image-hero-media img {
  object-position: 62% center;
}

.series-hero .image-hero-media img {
  object-position: 62% center;
}

.subcontracting-hero .image-hero-media img {
  object-position: 62% center;
}

.industries-hero .image-hero-media img {
  object-position: 64% center;
}

.medical-hero .image-hero-media img {
  object-position: 58% center;
}

.defense-hero .image-hero-media img {
  object-position: 58% center;
}

.defense-hero .image-hero-copy {
  max-width: 940px;
}

.defense-hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.55rem);
  overflow-wrap: normal;
  hyphens: auto;
}

.hydraulics-hero .image-hero-media img {
  object-position: 58% center;
}

.manifold-hero .image-hero-copy,
.maulteile-hero .image-hero-copy {
  max-width: min(920px, 70vw);
}

.manifold-hero h1,
.maulteile-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  overflow-wrap: normal;
  hyphens: auto;
}

.manifold-side-card,
.maulteile-side-card {
  display: grid;
  gap: 28px;
}

.commercial-vehicles-hero .image-hero-media img {
  object-position: 58% center;
}

.robotics-hero .image-hero-media img {
  object-position: 58% center;
}

.titan-hero .image-hero-media img {
  object-position: 68% center;
}

.edelstahl-hero .image-hero-media img {
  object-position: 64% center;
}

.aluminium-hero .image-hero-media img {
  object-position: 64% center;
}

.aluminium-hero .image-hero-copy {
  max-width: min(760px, 58vw);
  align-self: flex-start;
  margin-top: clamp(12px, 4vh, 48px);
}

.aluminium-hero h1 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4.7vw, 4.25rem);
  line-height: 0.98;
  overflow-wrap: normal;
  hyphens: none;
}

.edelstahl-hero .image-hero-copy {
  max-width: 900px;
}

.edelstahl-hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
}

.titan-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .titan-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.08) 100%);
}

.tco-hero .image-hero-media img {
  object-position: 58% center;
}

.workholding-hero .image-hero-media img {
  object-position: 58% center;
}

.tool-selection-hero .image-hero-media img {
  object-position: 50% center;
}

.tool-holder-hero .image-hero-media img {
  object-position: 50% center;
}

.milling-strategy-hero .image-hero-media img {
  object-position: 50% center;
}

.drilling-strategy-hero .image-hero-media img {
  object-position: 50% center;
}

.cnc-automation-hero .image-hero-media img {
  object-position: 50% center;
}

.milling-feeds-hero .image-hero-media img {
  object-position: 50% center;
}

.coolant-hero .image-hero-media img {
  object-position: 50% center;
}

.ghost-shift-hero .image-hero-media img {
  object-position: 50% center;
}

.stator-hero .image-hero-media img {
  object-position: 58% center;
}

.workholding-hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.tool-holder-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.75rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.milling-strategy-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.drilling-strategy-hero h1 {
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cnc-automation-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.75rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.milling-feeds-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.75rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.coolant-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ghost-shift-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.75rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.stator-hero h1 {
  font-size: clamp(2.15rem, 4.1vw, 3.7rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.tco-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.94) 0%, rgba(233, 240, 236, 0.8) 40%, rgba(233, 240, 236, 0.12) 100%);
}

:root[data-theme="dark"] .tco-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.8) 40%, rgba(16, 24, 22, 0.18) 100%);
}

.workholding-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .workholding-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.tool-selection-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .tool-selection-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.tool-holder-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .tool-holder-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.milling-strategy-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .milling-strategy-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.drilling-strategy-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .drilling-strategy-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.cnc-automation-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .cnc-automation-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.milling-feeds-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .milling-feeds-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.coolant-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .coolant-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.ghost-shift-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .ghost-shift-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.stator-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.95) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .stator-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.1) 100%);
}

.edelstahl-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.94) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .edelstahl-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.08) 100%);
}

.aluminium-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(233, 240, 236, 0.94) 0%, rgba(233, 240, 236, 0.78) 42%, rgba(233, 240, 236, 0.08) 100%);
}

:root[data-theme="dark"] .aluminium-hero .image-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 24, 22, 0.94) 0%, rgba(16, 24, 22, 0.78) 42%, rgba(16, 24, 22, 0.08) 100%);
}

:root[data-theme="dark"] .image-hero-copy p:not(.eyebrow) {
  color: rgba(238, 245, 241, 0.9);
}

:root[data-theme="dark"] .image-hero-copy h1 {
  color: #ffffff;
}

.two-column,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
}

.two-column p,
.contact-copy p {
  color: var(--muted);
}

.company-working-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 107, 93, 0.12), transparent 44%),
    var(--section-tint);
}

.company-working-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(18, 107, 93, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 107, 93, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

:root[data-theme="dark"] .company-working-section {
  background:
    linear-gradient(135deg, rgba(79, 192, 169, 0.1), transparent 46%),
    #0f1b18;
}

:root[data-theme="dark"] .company-working-section::before {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(79, 192, 169, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 192, 169, 0.16) 1px, transparent 1px);
}

.company-working-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.company-working-copy {
  min-width: 0;
}

.company-working-copy h2 {
  max-width: 760px;
}

.company-working-copy p {
  color: var(--muted);
}

.company-working-subtitle {
  max-width: 760px;
  font-size: 1.12rem;
}

.company-working-claim {
  position: relative;
  margin: 28px 0 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--primary) 42%, var(--border));
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(79, 192, 169, 0.16), transparent 68%),
    var(--surface);
  box-shadow: var(--shadow);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.company-working-claim::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.company-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.company-tech-card {
  position: relative;
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 192, 169, 0.12), transparent 58%),
    var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.company-tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(79, 192, 169, 0.16), transparent);
  transform: translateX(-45%);
  transition: opacity 0.2s ease, transform 0.45s ease;
}

.company-tech-card:hover,
.company-tech-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.company-tech-card:hover::before,
.company-tech-card:focus-within::before {
  opacity: 1;
  transform: translateX(45%);
}

.company-tech-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--primary) 48%, var(--border));
  border-radius: 50%;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  font-weight: 800;
}

.company-tech-card h3 {
  font-size: 1.35rem;
}

.company-tech-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.part-check-hero {
  position: relative;
  min-height: clamp(520px, 70vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(5, 10, 9, 0.94) 0%, rgba(5, 10, 9, 0.8) 46%, rgba(5, 10, 9, 0.4) 100%),
    image-set(
      url("assets/cnc-bauteil-check.avif") type("image/avif"),
      url("assets/cnc-bauteil-check.webp") type("image/webp"),
      url("assets/cnc-bauteil-check.png") type("image/png")
    ) 58% center / cover no-repeat;
}

:root[data-theme="light"] .part-check-hero {
  background:
    linear-gradient(110deg, rgba(248, 245, 239, 0.97) 0%, rgba(248, 245, 239, 0.84) 46%, rgba(248, 245, 239, 0.34) 100%),
    image-set(
      url("assets/cnc-bauteil-check.avif") type("image/avif"),
      url("assets/cnc-bauteil-check.webp") type("image/webp"),
      url("assets/cnc-bauteil-check.png") type("image/png")
    ) 58% center / cover no-repeat;
}

.part-check-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 192, 169, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 192, 169, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.part-check-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.part-check-hero h1 {
  color: #ffffff;
}

:root[data-theme="light"] .part-check-hero h1 {
  color: var(--text);
}

.part-check-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(238, 245, 241, 0.9);
}

:root[data-theme="light"] .part-check-hero p:not(.eyebrow) {
  color: var(--muted);
}

.part-check-subheadline {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
}

.part-check-hero-button {
  margin-top: 12px;
}

.part-check-compare {
  background: var(--background);
}

.part-check-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.part-check-info-card,
.part-check-note,
.part-check-result,
.part-check-cta {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.part-check-info-card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.part-check-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(79, 192, 169, 0.12), transparent 56%),
    radial-gradient(circle at 84% 16%, rgba(240, 138, 104, 0.14), transparent 32%);
}

.part-check-info-card-accent {
  border-color: color-mix(in srgb, var(--primary) 46%, var(--border));
}

.part-check-info-card h3,
.part-check-info-card ul,
.part-check-card-mark {
  position: relative;
  z-index: 1;
}

.part-check-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--primary) 46%, var(--border));
  border-radius: 50%;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  font-weight: 800;
}

.part-check-info-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.part-check-info-card li::marker {
  color: var(--primary);
}

.part-check-note {
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border-left: 5px solid var(--primary);
  color: var(--muted);
  font-weight: 700;
}

.part-check-assistant {
  background:
    linear-gradient(135deg, rgba(18, 107, 93, 0.1), transparent 44%),
    var(--section-tint);
}

.part-check-assistant-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: 28px;
}

.part-check-assistant-header p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
}

.part-check-progress {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.part-check-progress span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.part-check-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--border) 78%, transparent);
}

.part-check-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.2s ease;
}

.part-check-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.part-check-question-card {
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.part-check-question-card legend {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.28;
}

.part-check-question-card legend span {
  width: max-content;
  color: var(--primary);
  font-size: 0.9rem;
}

.part-check-option-list {
  display: grid;
  gap: 10px;
}

.part-check-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 82%, var(--section-tint));
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.part-check-option:hover,
.part-check-option:focus-within {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--text);
}

.part-check-option input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.part-check-option:has(input:checked) {
  border-color: var(--primary);
  color: var(--text);
  background: color-mix(in srgb, var(--primary) 14%, var(--surface));
}

.part-check-result {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: 30px;
  padding: clamp(24px, 4vw, 42px);
  animation: partCheckResultIn 0.24s ease-out;
}

.part-check-result[hidden] {
  display: none;
}

.part-check-result[data-score-level="high"] {
  border-top: 6px solid #55d282;
}

.part-check-result[data-score-level="medium"] {
  border-top: 6px solid #f2c94c;
}

.part-check-result[data-score-level="low"] {
  border-top: 6px solid #ff7474;
}

.part-check-score-visual {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.part-check-score-ring {
  --score: 0%;
  display: grid;
  place-items: center;
  width: clamp(170px, 18vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--surface) 0 58%, transparent 59%),
    conic-gradient(var(--primary) var(--score), color-mix(in srgb, var(--border) 78%, transparent) 0);
  box-shadow: var(--shadow);
}

.part-check-score-ring span {
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.part-check-score-ring small {
  margin-top: -18px;
  color: var(--muted);
  font-weight: 800;
}

.part-check-score-visual p {
  color: var(--primary);
  font-weight: 900;
}

.part-check-result-copy > p:not(.eyebrow),
.part-check-recommendation,
.part-check-hints {
  color: var(--muted);
}

.part-check-recommendation {
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  font-weight: 700;
}

.part-check-hints {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--section-tint);
}

.part-check-hints h3 {
  margin-bottom: 12px;
}

.part-check-hints ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.part-check-hints li::marker {
  color: var(--primary);
}

.part-check-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.part-check-text-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.part-check-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  padding: clamp(26px, 4vw, 44px);
}

.part-check-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.part-check-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.emobility-example-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  margin: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 72px);
  padding: clamp(18px, 3vw, 28px);
}

.emobility-example-media {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--section-tint);
  border: 1px solid var(--border-color);
}

.emobility-example-media picture,
.emobility-example-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.emobility-example-media img {
  object-fit: cover;
  object-position: center;
}

.emobility-example-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.emobility-example-copy h2 {
  margin-bottom: 14px;
}

.emobility-example-copy .job-list {
  margin-top: 8px;
}

@keyframes partCheckResultIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.company-links a {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--primary);
  background: var(--surface);
  font-weight: 700;
  text-decoration: none;
}

.company-links a:hover,
.company-links a:focus {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.certification-card {
  display: grid;
  gap: 18px;
}

.certification-card picture,
.certification-card img {
  display: block;
  width: 100%;
}

.certification-card img {
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--background);
}

.quality-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.quality-card-grid .content-card {
  min-height: 100%;
}

.company-history-section,
.company-facts-section,
.company-values-section,
.company-more-section {
  background: var(--background);
}

.company-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.company-positioning-section,
.company-owner-section,
.company-faq-section {
  background: var(--section-tint);
}

.company-positioning-copy {
  max-width: 980px;
}

.company-positioning-copy p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.company-facts-table-wrap {
  max-width: 1120px;
}

.company-facts-table {
  min-width: 700px;
  margin: 0;
}

.company-facts-table th[scope="row"] {
  width: 34%;
}

.company-owner-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  max-width: 1180px;
}

.company-owner-portrait {
  position: sticky;
  top: 110px;
  margin: 0;
}

.company-owner-portrait img {
  display: block;
  width: min(100%, 324px);
  height: auto;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.company-owner-copy {
  min-width: 0;
}

.company-owner-copy h2,
.company-owner-copy h3 {
  margin-bottom: 6px;
}

.company-owner-copy h3 {
  margin-top: 20px;
}

.company-owner-copy p:not(.eyebrow) {
  color: var(--muted);
}

.milky-obscured-word {
  color: color-mix(in srgb, currentColor 22%, var(--surface));
  filter: blur(1.8px);
  opacity: 0.38;
  text-shadow:
    0 0 6px color-mix(in srgb, currentColor 55%, transparent),
    0 0 14px color-mix(in srgb, var(--surface) 85%, transparent);
}

:root[data-theme="light"] .milky-obscured-word {
  color: rgba(29, 43, 42, 0.24);
  opacity: 0.42;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.95),
    0 0 14px rgba(29, 43, 42, 0.2);
}

:root[data-theme="dark"] .milky-obscured-word {
  color: rgba(238, 245, 241, 0.3);
  opacity: 0.34;
  text-shadow:
    0 0 7px rgba(238, 245, 241, 0.42),
    0 0 15px rgba(238, 245, 241, 0.28);
}

.company-owner-role {
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--text) !important;
  font-style: italic;
  font-weight: 700;
}

.company-values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-values-list li {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.company-values-list strong {
  color: var(--text);
}

.company-more-section .content-page {
  grid-template-columns: minmax(0, 1fr);
  max-width: 780px;
}

.knowledge-article h2:not(:first-child) {
  margin-top: 34px;
}

.knowledge-article h3 {
  margin-top: 24px;
  color: var(--text);
}

.knowledge-article ul {
  margin-bottom: 22px;
}

.target-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.knowledge-article h2:target,
.knowledge-card h2:target {
  scroll-margin-top: 110px;
}

.knowledge-article h2:target + .target-highlight::after,
.knowledge-card h2:target + .target-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--primary) 38%, transparent) 48%, transparent 100%);
  transform: translateX(-120%);
  animation: targetSweep 1.35s linear 3;
  pointer-events: none;
  mix-blend-mode: screen;
}

:root[data-theme="light"] .knowledge-article h2:target + .target-highlight::after,
:root[data-theme="light"] .knowledge-card h2:target + .target-highlight::after {
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--primary) 58%, transparent) 48%, transparent 100%);
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.technical-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 0.95rem;
}

.technical-table th,
.technical-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.technical-table th {
  color: var(--text);
  background: var(--section-tint);
}

.technical-table td {
  color: var(--muted);
}

.technical-table-wrap {
  overflow-x: auto;
}

.machine-park-hero .image-hero-copy {
  max-width: 650px;
}

.machine-park-hero .image-hero-media img {
  object-position: center;
}

.typewriter-heading {
  min-height: 2.1em;
}

.typewriter-heading.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(0.08em);
  animation: typewriterCaret 0.82s steps(1) infinite;
}

@keyframes typewriterCaret {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.machine-park-intro {
  display: grid;
  gap: 30px;
  background: var(--background);
}

.machine-park-intro-copy {
  max-width: 980px;
}

.machine-park-intro-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.machine-park-metrics {
  margin-top: 4px;
}

.machine-park-section {
  background: var(--background);
}

.machine-park-section:nth-of-type(even) {
  background: var(--section-tint);
}

.machine-badge-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.machine-badge-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 700;
}

.machine-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 26px;
  margin: 1px 4px 1px 0;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.machine-badge-5x {
  border-color: color-mix(in srgb, var(--primary) 36%, var(--border));
  color: var(--primary-dark);
  background: color-mix(in srgb, var(--primary) 14%, var(--surface));
}

.machine-badge-df {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  color: color-mix(in srgb, var(--accent) 74%, var(--text));
  background: color-mix(in srgb, var(--accent) 13%, var(--surface));
}

.machine-badge-auto {
  border-color: color-mix(in srgb, var(--text) 28%, var(--border));
  color: var(--text);
  background: color-mix(in srgb, var(--section-tint) 72%, var(--surface));
}

.machine-automation-note {
  display: inline;
  color: var(--muted);
  font-size: 0.9rem;
}

.machine-table {
  min-width: 820px;
  background: var(--surface);
}

.machine-table-wide {
  min-width: 980px;
}

.machine-table td:first-child {
  color: var(--text);
  font-weight: 800;
}

.machine-park-note {
  max-width: 860px;
  margin: 0;
  padding: 18px 20px;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 700;
}

.machine-park-benefits {
  background: var(--background);
}

.machine-park-benefits .job-list {
  margin-bottom: 0;
}

.machine-park-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--border));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 13%, transparent), transparent 62%),
    var(--surface);
  box-shadow: var(--shadow);
}

.machine-park-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.machine-park-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.machine-park-secondary-button {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.machine-park-secondary-button:hover,
.machine-park-secondary-button:focus {
  color: #ffffff;
  background: var(--primary-dark);
}

@media (max-width: 760px) {
  .machine-park-cta {
    grid-template-columns: 1fr;
    margin-right: 0;
    margin-left: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .machine-park-cta-actions {
    display: grid;
    justify-content: stretch;
  }

  .machine-park-cta-actions .button {
    width: 100%;
  }
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
}

.legal-document {
  display: grid;
  gap: 24px;
}

.pdf-viewer {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.industry-list span {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--section-tint);
  font-weight: 700;
}

.industry-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 34px;
}

.industry-focus-grid section {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 9%, transparent), transparent 58%),
    var(--section-tint);
}

.industry-focus-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  font-size: 0.82rem;
  font-weight: 800;
}

.industry-focus-grid h3 {
  margin-bottom: 8px;
}

.industry-focus-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.industry-quote {
  margin: 28px 0 30px;
  padding: 22px 24px;
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), transparent 62%),
    var(--section-tint);
}

.industry-quote blockquote {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

.industry-quote figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.industry-flip-card {
  min-height: 230px;
  border: 0;
  background: transparent;
  perspective: 1200px;
}

.industry-flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 230px;
  transition: transform 0.65s ease;
  transform-style: preserve-3d;
}

.industry-flip-card:hover .industry-flip-card-inner,
.industry-flip-card:focus-within .industry-flip-card-inner {
  transform: rotateY(180deg);
}

.industry-focus-card {
  min-width: 0;
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 9%, transparent), transparent 58%),
    var(--section-tint);
}

.industry-flip-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.industry-flip-card-back {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
  border-radius: 8px;
  color: #ffffff;
  background: var(--surface);
  text-decoration: none;
  transform: rotateY(180deg);
  box-shadow: var(--shadow);
}

.industry-flip-card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface) 58%, transparent) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 14%, transparent), transparent 58%);
  pointer-events: none;
}

:root[data-theme="dark"] .industry-flip-card-back::after {
  background:
    linear-gradient(180deg, rgba(5, 10, 9, 0.08) 0%, rgba(5, 10, 9, 0.72) 100%),
    linear-gradient(135deg, rgba(79, 192, 169, 0.16), transparent 58%);
}

:root[data-theme="light"] .industry-flip-card-back::after {
  background:
    linear-gradient(180deg, rgba(233, 240, 236, 0.08) 0%, rgba(233, 240, 236, 0.68) 100%),
    linear-gradient(135deg, rgba(54, 163, 142, 0.16), transparent 58%);
}

.industry-flip-card-back img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

:root[data-theme="dark"] .industry-flip-card-back img {
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

:root[data-theme="light"] .industry-flip-card-back img {
  filter: saturate(0.86) contrast(0.96) brightness(1.04);
}

.industry-flip-card-back span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, transparent);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(5, 10, 9, 0.62);
  font-size: 0.92rem;
  font-weight: 800;
}

:root[data-theme="light"] .industry-flip-card-back span {
  color: var(--text);
  background: rgba(233, 240, 236, 0.84);
}

.industry-transfer-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0 0 24px;
}

.industry-parts-card {
  grid-column: 1 / -1;
}

.industry-parts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.industry-parts-grid h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.02rem;
}

.industry-parts-list {
  columns: 2;
  column-gap: 28px;
  padding-left: 20px;
  margin: 0;
}

.industry-parts-list li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.production-overview {
  padding-bottom: 0;
}

.production-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
}

.production-metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 32%;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--primary) 34%, transparent) 48%, transparent 100%);
  transform: translateX(-120%);
  animation: productionSweep 5s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

:root[data-theme="light"] .production-metrics::after {
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--primary) 58%, transparent) 48%, transparent 100%);
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.production-metric-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, transparent), transparent 52%),
    var(--surface);
}

.production-metric-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  font-size: 0.86rem;
  font-weight: 800;
}

.production-metric-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

@keyframes productionSweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(380%);
  }
}

@keyframes targetSweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(320%);
  }
}

.production-capabilities {
  background: var(--section-tint);
}

.production-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.production-capability-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.production-flip-card {
  min-height: 250px;
  border: 0;
  background: transparent;
  perspective: 1200px;
  cursor: pointer;
}

.production-flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 250px;
  transition: transform 0.65s ease;
  transform-style: preserve-3d;
}

.production-flip-card:hover .production-flip-card-inner,
.production-flip-card:focus-visible .production-flip-card-inner {
  transform: rotateY(180deg);
}

.production-flip-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.production-flip-card-front {
  height: 100%;
}

.production-flip-card-back {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
  border-radius: 8px;
  background: var(--surface);
  transform: rotateY(180deg);
  box-shadow: var(--shadow);
}

.production-flip-card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface) 48%, transparent) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 14%, transparent), transparent 58%);
  pointer-events: none;
}

:root[data-theme="dark"] .production-flip-card-back::after {
  background:
    linear-gradient(180deg, rgba(5, 10, 9, 0.08) 0%, rgba(5, 10, 9, 0.72) 100%),
    linear-gradient(135deg, rgba(79, 192, 169, 0.16), transparent 58%);
}

:root[data-theme="light"] .production-flip-card-back::after {
  background:
    linear-gradient(180deg, rgba(233, 240, 236, 0.08) 0%, rgba(233, 240, 236, 0.66) 100%),
    linear-gradient(135deg, rgba(54, 163, 142, 0.16), transparent 58%);
}

.production-flip-card-back img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

:root[data-theme="dark"] .production-flip-card-back img {
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

:root[data-theme="light"] .production-flip-card-back img {
  filter: saturate(0.86) contrast(0.96) brightness(1.04);
}

.production-flip-card-back span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, transparent);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(5, 10, 9, 0.72);
  font-weight: 800;
}

:root[data-theme="light"] .production-flip-card-back span {
  color: var(--text);
  background: rgba(233, 240, 236, 0.82);
}

.production-capability-card h3 {
  font-size: 1.2rem;
}

.production-capability-card p {
  color: var(--muted);
}

.production-capability-card .production-card-highlight {
  color: var(--primary);
  font-weight: 800;
}

.production-card-stat {
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 8px;
  color: var(--primary);
  font-weight: 800;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 42%),
    rgba(5, 10, 9, 0.88);
}

:root[data-theme="light"] .image-lightbox {
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 163, 142, 0.18), transparent 42%),
    rgba(233, 240, 236, 0.9);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 86vh;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 10, 9, 0.72);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.job-list {
  padding-left: 20px;
}

.services {
  background: var(--section-tint);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.service-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.zerspanung-image-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
}

.zerspanung-image-card > * {
  position: relative;
  z-index: 1;
}

.zerspanung-image-card::before,
.zerspanung-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.zerspanung-image-card::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  filter: saturate(0.9) contrast(1.06);
}

.zerspanung-image-card::after {
  z-index: -1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 68%, transparent) 0%, color-mix(in srgb, var(--surface) 56%, transparent) 100%);
}

.workholding-card::before {
  background-image: image-set(
    url("assets/werkstueckspannung-card.jpg") type("image/jpeg"),
    url("assets/werkstueckspannung-card.png") type("image/png")
  );
}

.tool-selection-card::before {
  background-image: image-set(
    url("assets/werkzeugauswahl-card.jpg") type("image/jpeg"),
    url("assets/werkzeugauswahl-card.png") type("image/png")
  );
}

.tool-holder-card::before {
  background-image: image-set(
    url("assets/werkzeugaufnahmen-card.jpg") type("image/jpeg"),
    url("assets/werkzeugaufnahmen-card.png") type("image/png")
  );
}

.milling-strategy-card::before {
  background-image: image-set(
    url("assets/bearbeitungsstrategien-fraesen-card.jpg") type("image/jpeg"),
    url("assets/bearbeitungsstrategien-fraesen-card.png") type("image/png")
  );
}

.drilling-strategy-card::before {
  background-image: image-set(
    url("assets/bearbeitungsstrategien-bohren-card.jpg") type("image/jpeg"),
    url("assets/bearbeitungsstrategien-bohren-card.png") type("image/png")
  );
}

.cnc-automation-card::before {
  background-image: image-set(
    url("assets/automatisierung-cnc-maschinen-card.jpg") type("image/jpeg"),
    url("assets/automatisierung-cnc-maschinen-card.png") type("image/png")
  );
}

.milling-feeds-card::before {
  background-image: image-set(
    url("assets/schnittwerte-fraesen-card.jpg") type("image/jpeg"),
    url("assets/schnittwerte-fraesen-card.png") type("image/png")
  );
}

.coolant-card::before {
  background-image: image-set(
    url("assets/kuehl-schmiermittel-card.jpg") type("image/jpeg"),
    url("assets/kuehl-schmiermittel-card.png") type("image/png")
  );
}

.ghost-shift-card::before {
  background-image: image-set(
    url("assets/geisterschicht-mannlose-fertigung-card.jpg") type("image/jpeg"),
    url("assets/geisterschicht-mannlose-fertigung-card.png") type("image/png")
  );
}

:root[data-theme="dark"] .zerspanung-image-card::before {
  opacity: 0.68;
  filter: saturate(0.85) contrast(1.1) brightness(0.9);
}

:root[data-theme="dark"] .zerspanung-image-card::after {
  background: linear-gradient(180deg, rgba(23, 36, 33, 0.68) 0%, rgba(23, 36, 33, 0.56) 100%);
}

.service-card-feature {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border-color: color-mix(in srgb, var(--primary) 42%, var(--border));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), transparent 48%),
    var(--surface);
}

.service-card-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("assets/drehfraesen.avif") type("image/avif"),
    url("assets/drehfraesen.webp") type("image/webp"),
    url("assets/drehfraesen.jpg") type("image/jpeg")
  );
  background-position: 68% center;
  background-size: cover;
  opacity: 0.28;
  filter: saturate(0.85) contrast(1.08);
  pointer-events: none;
}

.service-card-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 76%, transparent) 54%, color-mix(in srgb, var(--surface) 38%, transparent) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 14%, transparent), transparent 50%);
  pointer-events: none;
}

:root[data-theme="dark"] .service-card-feature::before {
  opacity: 0.35;
  filter: saturate(0.86) contrast(1.12) brightness(0.98);
}

:root[data-theme="light"] .service-card-feature::before {
  opacity: 0.31;
  filter: saturate(0.8) contrast(0.98) brightness(1.08);
}

.service-card-feature-copy {
  position: relative;
  z-index: 1;
}

.service-card-feature h3 {
  max-width: 760px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.service-card-feature p {
  max-width: 760px;
  font-size: 1.03rem;
}

.service-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin: 24px 0;
}

.service-fact-grid span {
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--border));
  border-radius: 6px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.service-fact-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.titan-intro-section {
  background: var(--section-tint);
}

.titan-fact-grid {
  max-width: none;
}

.titan-side-card {
  display: grid;
  gap: 18px;
}

.titan-articles-section {
  background: var(--background);
}

.titan-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1380px;
}

.titan-faq-section {
  background: var(--section-tint);
}

.titan-faq-section .section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.titan-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.titan-faq-item {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.titan-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 56px 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.titan-faq-item summary::-webkit-details-marker {
  display: none;
}

.titan-faq-item summary::after {
  position: absolute;
  right: 22px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.titan-faq-item[open] summary::after {
  content: "-";
}

.titan-faq-item summary:focus {
  outline: 3px solid color-mix(in srgb, var(--primary) 24%, transparent);
  outline-offset: 3px;
}

.titan-faq-answer {
  display: grid;
  gap: 14px;
  padding: 0 22px 22px;
  color: var(--muted);
}

.titan-faq-answer p {
  margin: 0;
}

.titan-faq-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.titan-faq-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--input-background);
}

.titan-faq-table-wrap caption {
  padding: 12px 14px;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  background: color-mix(in srgb, var(--primary) 12%, var(--surface));
}

.titan-faq-table-wrap th,
.titan-faq-table-wrap td {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.titan-faq-table-wrap th {
  width: 32%;
  color: var(--text);
}

@media (max-width: 900px) {
  .titan-faq-list {
    grid-template-columns: 1fr;
  }
}

.edelstahl-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1380px;
}

.service-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
}

.service-scope-grid > div {
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.service-scope-grid h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-scope-grid h4::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

.service-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  color: var(--muted);
}

.service-detail-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
}

.series-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  padding-bottom: 2px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 72%, transparent);
}

.series-inline-link::after {
  content: "→";
  color: var(--primary);
  font-weight: 700;
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

.series-inline-link:hover,
.series-inline-link:focus {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.series-inline-link:hover::after,
.series-inline-link:focus::after {
  transform: translate(3px, -1px);
}

.series-process-section {
  position: relative;
  overflow: hidden;
}

.series-process-card {
  position: relative;
  z-index: 1;
}

.series-reveal-ready .series-process-card {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  transition-delay: calc(var(--series-step-delay, 0) * 70ms);
}

.series-reveal-ready .series-process-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.series-scroll-rail {
  position: absolute;
  top: 42px;
  bottom: 42px;
  width: 1px;
  z-index: 0;
  background: linear-gradient(
    180deg,
    transparent,
    color-mix(in srgb, #d8b45f 54%, transparent),
    transparent
  );
  opacity: 0.78;
  pointer-events: none;
}

.series-scroll-rail-left {
  left: clamp(14px, 2.4vw, 34px);
}

.series-scroll-rail-right {
  right: clamp(14px, 2.4vw, 34px);
}

.series-scroll-rail span {
  position: absolute;
  left: 50%;
  width: 13px;
  height: 13px;
  border-right: 2px solid #f3d782;
  border-bottom: 2px solid #f3d782;
  filter:
    drop-shadow(0 0 8px rgba(243, 215, 130, 0.95))
    drop-shadow(0 0 18px rgba(216, 180, 95, 0.6));
  opacity: 0;
  transform: translateX(-50%) rotate(45deg);
  animation: seriesArrowFlow 4.8s linear infinite;
}

.series-scroll-rail span::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 2px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 215, 130, 0.68), transparent);
  transform: rotate(-45deg) translate(15px, -26px);
  transform-origin: bottom;
  opacity: 0.78;
}

.series-scroll-rail span:nth-child(1) {
  animation-delay: 0s;
}

.series-scroll-rail span:nth-child(2) {
  animation-delay: 1.05s;
}

.series-scroll-rail span:nth-child(3) {
  animation-delay: 2.1s;
}

@keyframes seriesArrowFlow {
  0% {
    top: 0;
    opacity: 0;
  }

  18% {
    opacity: 0.95;
  }

  78% {
    opacity: 0.95;
  }

  100% {
    top: calc(100% - 13px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .series-reveal-ready .series-process-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .series-scroll-rail span {
    animation: none;
    opacity: 0.45;
  }
}

.service-detail-list-compact {
  gap: 10px;
  margin-top: 14px;
}

.service-detail-list-compact li {
  font-size: 0.92rem;
}

.service-detail-list-compact strong {
  font-size: 0.95rem;
}

.service-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.service-card-compact h3 {
  margin-bottom: 10px;
}

.article-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-card:hover,
.article-card:focus {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
  font-weight: 700;
}

.service-card p {
  color: var(--muted);
}

.article-meta {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content .article-meta {
  color: var(--accent);
}

.article-layout {
  background: var(--section-tint);
}

.knowledge-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.knowledge-card-wide {
  grid-column: 1 / -1;
}

.knowledge-card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.article-back-link {
  margin-top: 28px;
}

.process-sequence {
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--border));
  border-radius: 6px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  font-weight: 700;
}

.article-calculation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.process-sequence h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.process-sequence p {
  margin: 0 0 8px;
}

.tco-section {
  background: var(--section-tint);
}

.tco-tool {
  width: 100%;
}

.tco-tool .tool-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.tco-tool .tool-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.tco-tool .header-copy {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.tco-tool .section-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tco-tool .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tco-tool .section-title p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.tco-tool .input-grid,
.tco-tool .risk-toggle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tco-tool label {
  display: grid;
  gap: 6px;
}

.tco-tool label span,
.tco-tool .field-label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.tco-tool input,
.tco-tool select {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--input-background);
}

.tco-tool input:focus,
.tco-tool select:focus,
.tco-tool button:focus {
  outline: 3px solid color-mix(in srgb, var(--primary) 24%, transparent);
  outline-offset: 1px;
}

.tco-tool input[readonly],
.tco-tool input:disabled {
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 70%, var(--border));
}

.tco-tool .checkbox-label {
  align-content: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-height: 42px;
}

.tco-tool .checkbox-label input {
  width: 18px;
  min-height: 18px;
}

.tco-tool .warning-box {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 44%, var(--border));
  border-radius: 6px;
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
}

.tco-tool .scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tco-tool .scenario-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.tco-tool .scenario-card header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--primary) 12%, var(--surface));
}

.tco-tool .scenario-body {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.tco-tool .field-group {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.tco-tool .field-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tco-tool .field-group-title {
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 800;
}

.tco-tool .field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.tco-tool .summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.tco-tool .summary-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--input-background);
}

.tco-tool .summary-card.best {
  border-color: color-mix(in srgb, var(--primary) 48%, var(--border));
  background: color-mix(in srgb, var(--primary) 14%, var(--surface));
}

.tco-tool .summary-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tco-tool .summary-value {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
}

.tco-tool .summary-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tco-tool .table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.tco-tool table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--surface);
}

.tco-tool th,
.tco-tool td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  text-align: right;
  vertical-align: top;
}

.tco-tool th:first-child,
.tco-tool td:first-child {
  text-align: left;
}

.tco-tool thead th {
  color: var(--text);
  background: color-mix(in srgb, var(--primary) 10%, var(--surface));
  font-size: 0.88rem;
}

.tco-tool tbody tr:last-child td {
  border-bottom: 0;
}

.tco-tool .best-column {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  font-weight: 800;
}

.tco-tool .target-price-row td {
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

.tco-tool .target-price-row-place-2 td {
  border-top: 2px solid color-mix(in srgb, var(--primary) 30%, transparent);
}

.tco-tool .target-price-row-place-3 td {
  border-top: 2px solid color-mix(in srgb, var(--accent) 28%, transparent);
}

.tco-tool .place-chip,
.tco-tool .risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.tco-tool .place-chip {
  min-height: 28px;
  padding: 4px 9px;
  color: #ffffff;
  background: var(--primary);
  font-size: 0.82rem;
}

.tco-tool .target-price-row-place-3 .place-chip {
  background: var(--accent);
}

.tco-tool .target-price-highlight {
  min-width: 170px;
  background: color-mix(in srgb, var(--primary) 10%, var(--surface)) !important;
  box-shadow: inset 4px 0 0 var(--primary);
}

.tco-tool .target-price-row-place-3 .target-price-highlight {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface)) !important;
  box-shadow: inset 4px 0 0 var(--accent);
}

.tco-tool .target-price-value,
.tco-tool .target-price-unavailable {
  display: inline-flex;
  min-width: 132px;
  justify-content: flex-end;
  padding: 7px 10px;
  border: 2px solid color-mix(in srgb, var(--primary) 38%, var(--border));
  border-radius: 6px;
  background: var(--surface);
  font-size: 1.08rem;
  font-weight: 900;
  white-space: nowrap;
}

.tco-tool .target-price-unavailable {
  color: #b83232;
  border-color: rgba(184, 50, 50, 0.32);
}

.tco-tool .target-price-reduction {
  font-weight: 800;
}

.tco-tool .risk-badge {
  min-width: 92px;
  padding: 4px 8px;
  font-size: 0.85rem;
}

.tco-tool .risk-low {
  color: #168450;
  background: rgba(22, 132, 80, 0.12);
}

.tco-tool .risk-medium {
  color: #a86f00;
  background: rgba(168, 111, 0, 0.14);
}

.tco-tool .risk-high {
  color: #b83232;
  background: rgba(184, 50, 50, 0.14);
}

.tco-tool .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tco-tool button {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--primary);
  cursor: pointer;
  font-weight: 800;
}

.tco-tool button:hover,
.tco-tool button:focus {
  background: var(--primary-dark);
}

@media (max-width: 980px) {
  .tco-tool .tool-header,
  .tco-tool .section-title {
    display: grid;
    align-items: start;
  }

  .tco-tool .input-grid,
  .tco-tool .risk-toggle,
  .tco-tool .scenario-grid,
  .tco-tool .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tco-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .tco-tool .section-panel {
    padding: 16px;
  }

  .tco-tool .input-grid,
  .tco-tool .risk-toggle,
  .tco-tool .scenario-grid,
  .tco-tool .summary-grid {
    grid-template-columns: 1fr;
  }

  .tco-tool table {
    min-width: 720px;
  }
}

@media print {
  .tco-tool .section-panel {
    box-shadow: none;
    break-inside: avoid;
  }

  .tco-tool .scenario-grid {
    grid-template-columns: 1fr;
  }

  .tco-tool .export-panel,
  .tco-tool button,
  .site-header,
  .site-footer {
    display: none;
  }
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-page .faq-list {
  gap: 34px;
}

.faq-group {
  display: grid;
  gap: 14px;
}

.faq-group > h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.faq-item h2,
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.faq-item p,
.faq-cta p {
  color: var(--muted);
}

.faq-cta {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  background: var(--input-background);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 107, 93, 0.18);
  border-color: var(--primary);
}

.form-message {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--primary);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--footer-background);
}

.site-footer p {
  margin: 0;
}

.footer-location {
  display: block;
  margin-top: 6px;
  color: color-mix(in srgb, var(--muted) 82%, #ffffff);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
  }

  .site-header .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .site-header .theme-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px 16px;
  }

  .site-header:not(.nav-open) .main-nav {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .nav-item {
    display: grid;
    align-items: stretch;
    gap: 8px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid color-mix(in srgb, var(--primary) 36%, var(--border));
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-submenu::before {
    content: none;
  }

  .nav-submenu a {
    padding: 4px 0;
    color: var(--primary);
    white-space: normal;
  }

  .hero {
    min-height: 68vh;
    overflow: hidden;
    background:
      var(--hero-overlay-mobile),
      image-set(
        url("assets/halle1-1920.avif") type("image/avif"),
        url("assets/halle1-1920.webp") type("image/webp"),
        url("assets/halle1.webp") type("image/webp"),
        url("assets/halle1.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  h1 {
    font-size: 2.1rem;
  }

  .page-hero h1 {
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  .turn-mill-hero h1 {
    font-size: clamp(1.46rem, 6.5vw, 1.95rem);
    max-width: 22ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .cnc-milling-hero h1 {
    font-size: clamp(1.42rem, 6vw, 1.9rem);
    max-width: 24ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .workholding-hero h1 {
    font-size: clamp(1.45rem, 7.5vw, 2.05rem);
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }

  .tool-holder-hero h1 {
    font-size: clamp(1.45rem, 6.6vw, 1.95rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .milling-strategy-hero h1 {
    font-size: clamp(1.32rem, 5.8vw, 1.82rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .drilling-strategy-hero h1 {
    font-size: clamp(1.38rem, 6.2vw, 1.9rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .cnc-automation-hero h1 {
    font-size: clamp(1.45rem, 6.4vw, 1.95rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .milling-feeds-hero h1 {
    font-size: clamp(1.45rem, 6.6vw, 1.95rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .coolant-hero h1 {
    font-size: clamp(1.42rem, 6.2vw, 1.9rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .ghost-shift-hero h1 {
    font-size: clamp(1.45rem, 6.4vw, 1.95rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .stator-hero h1 {
    font-size: clamp(1.38rem, 5.9vw, 1.88rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .long-article-title {
    font-size: 1.62rem;
    line-height: 1.12;
    max-width: 18ch;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 32ch;
  }

  .hero h1 {
    font-size: 2.25rem;
    overflow-wrap: normal;
  }

  .two-column,
  .contact-section,
  .company-working-grid,
  .company-history-grid,
  .company-owner-layout,
  .company-values-list,
  .part-check-compare-grid,
  .part-check-assistant-header,
  .part-check-question-grid,
  .part-check-result,
  .part-check-cta,
  .service-grid,
  .service-focus-grid,
  .production-metrics,
  .production-card-grid,
  .faq-section,
  .content-page,
  .company-hero,
  .industry-parts-grid,
  .knowledge-article-grid,
  .emobility-example-card {
    grid-template-columns: 1fr;
  }

  .hero-example-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    max-width: 100%;
    margin-top: 16px;
    padding: 10px;
  }

  .hero-example-media {
    width: 86px;
  }

  .hero-example-copy strong {
    font-size: 0.94rem;
  }

  .hero-example-copy span:last-child {
    font-size: 0.78rem;
  }

  .emobility-example-card {
    margin: 44px 20px;
  }

  .emobility-example-media {
    min-height: 220px;
  }

  .service-card-feature h3 {
    font-size: 2rem;
  }

  .service-fact-grid,
  .service-scope-grid,
  .industry-focus-grid,
  .company-tech-grid {
    grid-template-columns: 1fr;
  }

  .series-scroll-rail {
    display: none;
  }

  .company-working-section::before {
    mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
  }

  .company-working-claim {
    font-size: 1.28rem;
  }

  .company-tech-card {
    min-height: auto;
  }

  .part-check-hero {
    min-height: 620px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(5, 10, 9, 0.22) 0%, rgba(5, 10, 9, 0.74) 48%, rgba(5, 10, 9, 0.97) 100%),
      image-set(
        url("assets/cnc-bauteil-check.avif") type("image/avif"),
        url("assets/cnc-bauteil-check.webp") type("image/webp"),
        url("assets/cnc-bauteil-check.png") type("image/png")
      ) center / cover no-repeat;
  }

  :root[data-theme="light"] .part-check-hero {
    background:
      linear-gradient(180deg, rgba(248, 245, 239, 0.22) 0%, rgba(248, 245, 239, 0.78) 48%, rgba(248, 245, 239, 0.98) 100%),
      image-set(
        url("assets/cnc-bauteil-check.avif") type("image/avif"),
        url("assets/cnc-bauteil-check.webp") type("image/webp"),
        url("assets/cnc-bauteil-check.png") type("image/png")
      ) center / cover no-repeat;
  }

  .part-check-hero h1 {
    font-size: 2rem;
  }

  .part-check-hero-copy {
    max-width: 34ch;
  }

  .part-check-subheadline {
    font-size: 1.05rem;
  }

  .part-check-cta {
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .part-check-cta-actions {
    display: grid;
    justify-content: stretch;
  }

  .part-check-result-actions {
    display: grid;
  }

  .part-check-result-actions .button,
  .part-check-result-actions .part-check-text-button {
    width: 100%;
  }

  .industry-parts-list {
    columns: 1;
  }

  .company-hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .image-hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .company-hero-media::after,
  :root[data-theme="dark"] .company-hero-media::after {
    background: linear-gradient(180deg, rgba(5, 10, 9, 0.28) 0%, rgba(5, 10, 9, 0.66) 42%, rgba(5, 10, 9, 0.94) 100%);
  }

  .image-hero-media::after {
    background: linear-gradient(180deg, rgba(233, 240, 236, 0.14) 0%, rgba(233, 240, 236, 0.72) 46%, rgba(233, 240, 236, 0.96) 100%);
  }

  :root[data-theme="dark"] .image-hero-media::after {
    background: linear-gradient(180deg, rgba(16, 24, 22, 0.18) 0%, rgba(16, 24, 22, 0.68) 46%, rgba(16, 24, 22, 0.96) 100%);
  }

  .edelstahl-hero .image-hero-media::after {
    background: linear-gradient(180deg, rgba(233, 240, 236, 0.14) 0%, rgba(233, 240, 236, 0.72) 46%, rgba(233, 240, 236, 0.96) 100%);
  }

  :root[data-theme="dark"] .edelstahl-hero .image-hero-media::after {
    background: linear-gradient(180deg, rgba(16, 24, 22, 0.18) 0%, rgba(16, 24, 22, 0.68) 46%, rgba(16, 24, 22, 0.96) 100%);
  }

  .company-hero-copy {
    max-width: 34ch;
  }

  .company-owner-portrait {
    position: static;
  }

  .company-owner-portrait img {
    width: min(70vw, 300px);
  }

  .image-hero-copy {
    max-width: 34ch;
  }

  .machine-park-hero .image-hero-copy {
    max-width: 31ch;
  }

  .manifold-hero .image-hero-copy,
  .maulteile-hero .image-hero-copy {
    max-width: 34ch;
  }

  .manifold-hero h1,
  .maulteile-hero h1 {
    font-size: 1.85rem;
  }

  .knowledge-card-wide {
    grid-column: auto;
  }

  .faq-cta {
    position: static;
  }

  .pdf-viewer {
    min-height: 560px;
  }
}
