@font-face {
  font-family: 'Barlow Condensed';
  font-style: italic; font-weight: 700; font-display: swap;
  src: url('/assets/marloth_website/fonts/bc-700i.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('/assets/marloth_website/fonts/bc-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('/assets/marloth_website/fonts/Inter.woff2') format('woff2');
}

:root {
  --stahlblau: #001132;
  --nachtblau: #000d26;
  --tuerkis: #45f0c5;
  --tuerkis-hover: #19e68c;
  --oliv: #4b5320;
  --signal: #ff5c26;
  --signal-hover: #e04a17;
  --kobalt: #2e62ff;
  --kobalt-tint: #e9efff;
  --lime: #d8f24b;
  --text: #333e52;
  --text-muted: #66718a;
  --text-on-dark: #b6c1d8;
  --hairline: #d9dfec;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  color-scheme: only light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

/* Typo-Rollen */
.display {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700; text-transform: uppercase;
  line-height: 0.95; letter-spacing: 0.005em; text-wrap: balance;
}
.kicker {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 1rem; line-height: 1;
}
.cta-line {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.45rem; line-height: 1.1;
  letter-spacing: 0.01em; text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 0.5em;
}
.cta-line .arrow { font-style: normal; transition: transform 0.15s ease; }
.cta-line:hover .arrow { transform: translateX(0.3em); }
@media (prefers-reduced-motion: reduce) {
  .cta-line .arrow { transition: none; }
  .cta-line:hover .arrow { transform: none; }
}
.cta-line:focus-visible { outline: 3px solid var(--kobalt); outline-offset: 4px; }

/* Bänder */
.band { padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 5vw, 4rem); }
.band-inner { max-width: 1160px; margin: 0 auto; }
.band--dark { background: var(--stahlblau); color: var(--text-on-dark); }
.band--tint { background: var(--kobalt-tint); }
.band--tint { --text-muted: #525d78; }
.band .kicker { display: block; margin-bottom: 1.5rem; color: var(--kobalt); }
.band--tint .kicker { color: #2050dd; }
.band--dark .kicker { color: var(--lime); }
h1.display { font-size: clamp(3.2rem, 9vw, 6.5rem); color: #fff; }
h2.display { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--stahlblau); margin-bottom: 1.75rem; }
.band--dark h2.display { color: #fff; }
.copy { max-width: 46rem; }
.copy p + p { margin-top: 1.1em; }
.band .cta-line { margin-top: 2.25rem; color: var(--signal); }
.band .cta-line:hover { color: var(--signal-hover); }
.band--dark .cta-line { color: var(--tuerkis); }
.band--dark .cta-line:hover { color: var(--tuerkis-hover); }

/* Topbar */
.topbar {
  background: #fff; border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; z-index: 10;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem; padding: 0.9rem 0;
}
.logo { display: block; line-height: 0; }
.logo img { display: block; height: 58px; width: auto; }
.topbar .main-nav { display: flex; gap: 1.8rem; margin-left: auto; flex-wrap: wrap; }
.topbar .main-nav a { font-size: 0.95rem; font-weight: 600; text-decoration: none; color: var(--stahlblau); }
.topbar .main-nav a:hover, .topbar .main-nav a.active { color: var(--kobalt); }
.topbar .cta-line { font-size: 1.2rem; color: var(--signal); margin-left: 1rem; }
.topbar .cta-line:hover { color: var(--signal-hover); }

.lang { position: relative; padding-left: 1.5rem; border-left: 1px solid var(--hairline); }
.lang summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.1em; color: var(--stahlblau);
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover, .lang[open] summary { color: var(--kobalt); }
.lang summary:focus-visible { outline: 3px solid var(--kobalt); outline-offset: 3px; }
.lang .globe { width: 20px; height: 20px; display: block; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 0.9rem); z-index: 20;
  background: #fff; border: 1px solid var(--hairline); min-width: 10rem;
  box-shadow: 0 10px 30px rgba(0, 17, 50, 0.12);
}
.lang-menu a {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.65rem 1rem; text-decoration: none;
  font-size: 0.92rem; font-weight: 600; color: var(--stahlblau);
}
.lang-menu a:hover { background: var(--kobalt-tint); color: var(--kobalt); }
.lang-menu a.active { border-left: 3px solid var(--signal); padding-left: calc(1rem - 3px); }
.lang-menu .code { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; color: var(--text-muted); }

/* Burger */
.burger { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.burger span { display: block; width: 26px; height: 3px; background: var(--stahlblau); margin: 5px 0; }
.burger:focus-visible { outline: 3px solid var(--kobalt); outline-offset: 3px; }
@media (max-width: 920px) {
  .topbar .main-nav, .topbar .lang, .topbar .cta-line { display: none; }
  .burger { display: block; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 50; background: var(--stahlblau);
  display: none; flex-direction: column; gap: 1.5rem;
  padding: 5.5rem clamp(1.5rem, 8vw, 3rem) 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 2.1rem; line-height: 1;
  color: #fff; text-decoration: none;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--tuerkis); }
.mobile-menu .mm-lang { display: flex; gap: 1.5rem; margin-top: auto; }
.mobile-menu .mm-lang a { font-style: normal; font-weight: 600; font-size: 1rem; letter-spacing: 0.12em; color: var(--text-on-dark); }
.mobile-menu .mm-lang a.active { color: var(--lime); }
.mm-close {
  position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: none;
  color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; padding: 0.3rem;
}
.mm-close:focus-visible, .mobile-menu a:focus-visible { outline: 3px solid var(--tuerkis); outline-offset: 3px; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(0, 17, 50, 0.94) 0%, rgba(0, 17, 50, 0.82) 55%, rgba(0, 17, 50, 0.62) 100%);
}
.hero .band-inner { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero h1 .alt { color: var(--tuerkis); }
.hero .copy { margin-top: 2.25rem; font-size: 1.15rem; color: var(--text-on-dark); }
.hero .cta-row { display: flex; gap: 3rem; flex-wrap: wrap; align-items: baseline; }
.hero .cta-line.secondary { color: #fff; }
.hero .cta-line.secondary:hover { color: var(--text-on-dark); }
.hero .kicker { color: var(--lime); }

/* Facts */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem 2rem; }
.fact-number {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 0.9;
  color: var(--stahlblau); text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.fact-number .unit { color: #2050dd; }
.fact-label { margin-top: 0.75rem; font-size: 0.95rem; color: var(--text-muted); max-width: 22ch; }

/* Säulen-Teaser (dunkles Band) */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem 2rem; margin-top: 3.5rem; }
.pillar { text-decoration: none; display: block; }
.pillar-media { aspect-ratio: 4 / 3; overflow: hidden; background: #0a1f46; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pillar h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.55rem; line-height: 1; color: #fff;
  margin: 1rem 0 0.5rem; text-wrap: balance;
}
.pillar p { font-size: 0.92rem; color: var(--text-on-dark); }
.pillar .cta-line { font-size: 1.1rem; margin-top: 0.8rem; }
.pillar:hover h3 { color: var(--tuerkis); }
.pillar:focus-visible { outline: 3px solid var(--tuerkis); outline-offset: 4px; }

/* Vollbild-Figur */
.fullbleed { line-height: 0; }
.fullbleed img { width: 100%; max-height: 70vh; object-fit: cover; display: block; }
.fullbleed figcaption {
  line-height: 1.4; background: var(--stahlblau); color: var(--tuerkis);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.85rem;
  padding: 0.9rem clamp(1.25rem, 5vw, 4rem);
}

/* Preistabelle */
.price-table { width: 100%; max-width: 56rem; border-collapse: collapse; margin-top: 2.5rem; font-variant-numeric: tabular-nums; }
.price-table th {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.9rem; color: var(--stahlblau);
  text-align: left; padding: 0.8rem 0.6rem; border-bottom: 2px solid var(--stahlblau);
}
.price-table td { padding: 0.85rem 0.6rem; border-bottom: 1px solid #c8d2ea; font-size: 0.98rem; }
.price-table .num { text-align: right; font-weight: 600; color: var(--stahlblau); white-space: nowrap; }
.price-table .sub { color: var(--text-muted); font-size: 0.88rem; }
/* Fussnote unter der Tabelle (Quelle, Vorbehalt). Steht im Markup als
   <caption>, gerendert wird sie darunter: semantisch korrekt zugeordnet,
   ohne dass dafuer ein eigener Baustein noetig ist. */
.price-table caption { caption-side: bottom; text-align: left; padding-top: 1.1rem; color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; max-width: 46rem; }

/* Story / Zitat */
.quote blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 1.05; text-wrap: balance;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem); color: #fff;
}
.quote blockquote .hl { color: var(--tuerkis); }

/* Drei Schritte */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 3rem 2.5rem; margin-top: 3.5rem; }
.step-no {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 3.2rem; line-height: 0.9; color: var(--signal);
}
.step h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.55rem; line-height: 1;
  color: var(--stahlblau); margin: 0.9rem 0 0.6rem;
}
.step p { font-size: 0.95rem; }

/* Kontakt */
.contact-lines { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.contact-lines .cta-line { margin-top: 0; }
.contact-sub { margin-top: 2rem; font-size: 0.95rem; color: var(--text-on-dark); max-width: 40rem; }

/* Footer */
.footer-split { display: grid; grid-template-columns: 1.8fr 1fr; }
@media (max-width: 860px) { .footer-split { grid-template-columns: 1fr; } }
.footer-main, .footer-jobs { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem); }
.footer-main { background: var(--nachtblau); color: var(--text-on-dark); }
.footer-main .kicker { display: block; margin-bottom: 1.5rem; color: var(--lime); }
.footer-main .cta-line { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--tuerkis); }
.footer-main .cta-line:hover { color: var(--tuerkis-hover); }
.footer-meta { margin-top: 3.5rem; display: flex; gap: 2.5rem; flex-wrap: wrap; font-size: 0.9rem; }
.footer-meta a { color: var(--text-on-dark); }
.footer-meta a:hover { color: #fff; }
.demo-note { margin-top: 3rem; font-size: 0.8rem; color: #8b96ad; }
.footer-jobs { background: var(--signal); color: var(--stahlblau); }
.footer-jobs .kicker { display: block; margin-bottom: 1.5rem; color: var(--stahlblau); }
.footer-jobs h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.95; text-wrap: balance;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--stahlblau); margin-bottom: 1.25rem;
}
.footer-jobs p { font-size: 0.98rem; max-width: 26rem; }
.footer-jobs .cta-line { margin-top: 1.75rem; color: var(--stahlblau); }
.footer-jobs .cta-line:hover { color: #fff; }

/* Entwurfs-Badge */
.draft-badge {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 60;
  background: var(--stahlblau); color: var(--lime);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; padding: 0.45rem 0.8rem;
}

/* ---------- Unterseiten-Bausteine ---------- */

.page-hero { position: relative; overflow: hidden; }
.page-hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(0, 17, 50, 0.94) 0%, rgba(0, 17, 50, 0.82) 55%, rgba(0, 17, 50, 0.62) 100%);
}
.page-hero .band-inner { position: relative; z-index: 2; }
.page-hero h1.display { font-size: clamp(2.8rem, 7vw, 5.2rem); }

.media-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.media-row .media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.media-row h2.display { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }

.checklist { list-style: none; display: grid; gap: 0.7rem; max-width: 46rem; margin-top: 1.5rem; padding: 0; }
.checklist li { position: relative; padding-left: 1.7rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 0.68em; height: 0.68em; background: var(--kobalt);
}
.band--dark .checklist li::before { background: var(--tuerkis); }
.checklist--cols { max-width: none; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.9rem 2.5rem; }

.acc { max-width: 52rem; margin-top: 2.5rem; }
.acc details { border-top: 1px solid var(--hairline); }
.acc details:last-of-type { border-bottom: 1px solid var(--hairline); }
.acc summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: baseline; gap: 2rem; padding: 1.15rem 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.35rem; line-height: 1.1; color: var(--stahlblau);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--kobalt); }
.acc summary:focus-visible { outline: 3px solid var(--kobalt); outline-offset: 3px; }
.acc .plus { font-style: normal; color: var(--signal); font-size: 1.6rem; line-height: 1; flex: none; transition: transform 0.15s ease; }
.acc details[open] .plus { transform: rotate(45deg); }
@media (prefers-reduced-motion: reduce) { .acc .plus { transition: none; } }
.acc-body { padding: 0 0 1.5rem; max-width: 46rem; }

.teasers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 3rem 2rem; margin-top: 2.5rem; }
.teaser-media {
  aspect-ratio: 4 / 3; overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 14px, transparent 14px 28px),
    #0a1f46;
  display: flex; align-items: flex-end;
}
.teaser-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.teaser-media span {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.75rem; color: var(--tuerkis); padding: 0.7rem 0.9rem;
}
.teaser h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.7rem; line-height: 1; color: var(--stahlblau);
  margin: 1.1rem 0 0.6rem; text-wrap: balance;
}
.teaser p { font-size: 0.95rem; }
.teaser .cta-line { font-size: 1.2rem; margin-top: 0.9rem; color: var(--signal); }
.teaser .cta-line:hover { color: var(--signal-hover); }

.brand-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; margin-top: 2.5rem;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 1.1rem; color: var(--text-muted);
}

.redacted-list { display: grid; gap: 1rem; margin-top: 2.5rem; max-width: 34rem; }
.redacted-row { display: flex; align-items: center; gap: 1.25rem; }
.redacted-bar { height: 1.4rem; background: var(--oliv); flex: 1; }
.redacted-row:nth-child(2) .redacted-bar { flex: 0.7; }
.redacted-row:nth-child(3) .redacted-bar { flex: 0.85; }
.redacted-row:nth-child(4) .redacted-bar { flex: 0.6; }
.redacted-tag {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.8rem; color: var(--text-muted); white-space: nowrap;
}

/* ---------- Dezente Übergänge ---------- */

a, .btn { transition: color 0.15s ease, background-color 0.15s ease; }
.pillar-media img, .teaser-media img { transition: transform 0.5s ease; }
.pillar:hover .pillar-media img, .teaser:hover .teaser-media img { transform: scale(1.03); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease-out, transform 0.55s ease-out; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  a, .btn, .pillar-media img, .teaser-media img { transition: none; }
  .pillar:hover .pillar-media img, .teaser:hover .teaser-media img { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mega-Menü (Schwarz-Vorbild) ---------- */

.topbar .main-nav { align-items: center; }
.topbar .main-nav > a, .topbar .has-mega > a {
  display: inline-block;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.topbar .main-nav > a.active, .topbar .has-mega > a.active {
  color: var(--kobalt); border-bottom-color: var(--kobalt);
}
.has-mega { position: static; display: flex; align-items: center; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--hairline);
  box-shadow: 0 24px 48px rgba(0, 17, 50, 0.10);
  visibility: hidden; opacity: 0;
  transition: opacity 0.12s ease, visibility 0s linear 0.25s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .mega:hover {
  visibility: visible; opacity: 1; transition-delay: 0s;
}
@media (prefers-reduced-motion: reduce) { .mega { transition: none; } }
.mega-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem) 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
@media (max-width: 1150px) { .mega-inner { grid-template-columns: repeat(3, 1fr); } }
.mega-col { display: flex; flex-direction: column; gap: 0.55rem; }
.mega-col a { text-decoration: none; color: var(--text); font-size: 0.92rem; font-weight: 400; }
.mega-col a:hover { color: var(--kobalt); }
.mega-head {
  font-size: 0.95rem; font-weight: 700; color: var(--stahlblau);
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--hairline); margin-bottom: 0.5rem;
}
.mega-foot {
  border-top: 1px solid var(--hairline);
  max-width: 1160px; margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 5vw, 4rem) 1.3rem;
  display: flex; justify-content: flex-end; align-items: baseline; gap: 1rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.mega-foot .cta-line { font-size: 1.25rem; color: var(--signal); margin: 0; }
.mega-foot .cta-line:hover { color: var(--signal-hover); }

.checklist a { color: var(--kobalt); text-decoration: none; }
.checklist a:hover { text-decoration: underline; }
.band--dark .checklist a { color: var(--tuerkis); }

/* ---------- Formular (Linien-Stil auf Dunkel) ---------- */

.form-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem 3rem; max-width: 56rem; margin-top: 3rem;
}
.field--full { grid-column: 1 / -1; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem;
  color: var(--lime); margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-body); font-size: 1.1rem; color: #fff;
  padding: 0.5rem 0;
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2345f0c5' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 0.2rem center / 12px;
  padding-right: 1.5rem;
}
.field option { color: var(--stahlblau); background: #fff; }
.field textarea { background: rgba(255, 255, 255, 0.06); padding: 0.85rem 1rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--tuerkis);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.55); }
.form-meta { margin-top: 2.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 2rem 3rem; }
.check { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; max-width: 34rem; }
.check input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--tuerkis); flex: none; }
.check label { color: var(--text-on-dark); }
.check a { color: var(--tuerkis); }

.btn {
  display: inline-block; border: none; cursor: pointer; border-radius: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.02em;
  background: var(--signal); color: var(--stahlblau);
  padding: 0.85rem 1.9rem 0.95rem 1.7rem;
  transition: background-color 0.15s ease;
}
.btn:hover { background: var(--signal-hover); }
.btn:disabled { opacity: 0.6; cursor: wait; }
.btn:focus-visible { outline: 3px solid var(--kobalt); outline-offset: 3px; }

.status { padding: 1rem 1.25rem; font-size: 0.95rem; max-width: 46rem; border-left: 4px solid; margin-top: 1.5rem; }
.status--ok { background: rgba(69, 240, 197, 0.08); border-color: var(--tuerkis); color: #b8f5e0; }
.status--fehler { background: rgba(255, 122, 102, 0.08); border-color: #ff7a66; color: #ffc4ba; }
.status strong { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.hp { position: absolute; left: -9999px; top: -9999px; }
[hidden] { display: none !important; }


/* ---------- Konfigurator-Kacheln (vereinfacht) ---------- */

.opt-group { margin-top: 2.5rem; }
.opt-label {
  display: block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem;
  color: var(--lime); margin-bottom: 0.9rem;
}
.opt-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; max-width: 56rem; }
.opt-tile { position: relative; }
.opt-tile input { position: absolute; opacity: 0; inset: 0; }
.opt-tile label {
  display: block; cursor: pointer; height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.35); padding: 1rem 1.1rem 1.1rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.opt-tile .opt-title {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.25rem; line-height: 1; color: #fff;
  display: block;
}
.opt-tile .opt-price { display: block; margin-top: 0.4rem; font-size: 0.88rem; color: var(--text-on-dark); }
.opt-tile input:checked + label { border-color: var(--tuerkis); background: rgba(69, 240, 197, 0.08); }
.opt-tile input:checked + label .opt-title { color: var(--tuerkis); }
.opt-tile input:focus-visible + label { outline: 3px solid var(--kobalt); outline-offset: 3px; }


/* ---------- Übergangs-Kompatibilität: Alt-Tokens (website.css) ---------- */
:root {
  --marloth-stahlblau: var(--stahlblau);
  --marloth-dark-grey: #333333;
  --marloth-tuerkis: var(--tuerkis);
  --marloth-tuerkis-hover: var(--tuerkis-hover);
  --marloth-gelb: #ffc000;
  --marloth-purpur: #47243c;
  --marloth-grau: var(--text-muted);
  --marloth-grau-hell: var(--text-on-dark);
  --marloth-weiss: #ffffff;
  --marloth-hellgrau: #f5f5f5;
  --marloth-hellgrau-hover: #eaeaea;
  --marloth-dark-blue: var(--nachtblau);
  --marloth-oliv: var(--oliv);
}

/* ---------- Geteilte Bausteine aus website.css (lp-figure / lp-video) ---------- */
.lp-figure {
    margin: 28px 0 0;
}
.lp-figure img {
    width: 100%;
    height: auto;
    display: block;
    /* Bodenständig statt verspielt: kein türkiser Akzentbalken auf Weiß, nur eine
       dezente neutrale Kante, die das Foto vom weißen Grund abgrenzt.
       (Türkis bleibt Kontrastfarbe gegen Dunkelblau – Buttons/Nav/dunkle Bänder.) */
    border: 1px solid var(--marloth-hellgrau-hover);
}
.lp-figure figcaption {
    font-size: 0.9rem;
    color: var(--marloth-stahlblau);
    opacity: 0.7;
    margin-top: 8px;
}
.lp-figure-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

/* Partner-Vorstellung (Foto + Text) auf Leistungsseiten */
.lp-partner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}
.lp-partner img {
    width: 100%;
    height: auto;
    display: block;
    /* Wie .lp-figure img: dezente neutrale Kante statt buntem Akzentbalken auf Weiß. */
    border: 1px solid var(--marloth-hellgrau-hover);
}
@media (max-width: 768px) {
    .lp-partner { grid-template-columns: 1fr; }
}

/* Zwei-Klick-YouTube-Baustein (.lp-video, DESIGN_GUIDE.md → „Leistungsseiten").
   Datenschutz: beim Seitenaufruf wird nichts von Google geladen — das Poster
   liegt lokal unter images/youtube/. Erst der Klick (Handler in site.js)
   tauscht das Poster gegen ein iframe von youtube-nocookie.com.
   Default ist das 9:16-Hochformat (Shorts); .lp-video--wide für 16:9. */
.lp-video {
    margin: 28px 0 0;
    max-width: 300px;
}
.lp-video--wide { max-width: 640px; }
.lp-video-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    background: var(--marloth-stahlblau);
    /* Wie .lp-figure img: dezente neutrale Kante gegen den weißen Grund. */
    border: 1px solid var(--marloth-hellgrau-hover);
}
.lp-video--wide .lp-video-frame { aspect-ratio: 16 / 9; }
.lp-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}
.lp-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Play-Symbol: Türkis lebt auf Dunkelblau (Farbregel), rechteckig wie Buttons. */
.lp-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--marloth-stahlblau);
    color: var(--marloth-tuerkis);
}
.lp-video-play svg { width: 26px; height: 26px; }
.lp-video-poster:hover .lp-video-play,
.lp-video-poster:focus-visible .lp-video-play {
    background: var(--marloth-dark-blue);
    color: var(--marloth-tuerkis-hover);
}
.lp-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.lp-video figcaption {
    font-size: 0.9rem;
    color: var(--marloth-stahlblau);
    opacity: 0.7;
    margin-top: 8px;
}
.lp-video-consent {
    display: block;
    font-size: 0.8rem;
    margin-top: 4px;
}
/* Mehrere Videos nebeneinander (mobil untereinander) */
.lp-video-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
    gap: 20px;
    justify-content: start;
    margin-top: 28px;
}
.lp-video-row .lp-video { margin-top: 0; }

/* Zurück-Link im lp-hero (Leistungsseite -> Hub /leistungen) */
.lp-hero .lp-back {
    display: inline-block;
    color: var(--marloth-weiss);
    opacity: 0.75;
    text-decoration: underline;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.lp-hero .lp-back:hover { opacity: 1; }

/* ---------- Bewerbungsformular: SIGNAL-Fassung der contact- und form-Bausteine ---------- */
.contact-section { background: var(--stahlblau); color: var(--text-on-dark); padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 5vw, 4rem); }
.contact-container { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-info h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.95; text-wrap: balance;
  font-size: clamp(2rem, 4.5vw, 3.2rem); color: #fff; margin-bottom: 1.25rem;
}
.contact-info p { margin-bottom: 0.9em; max-width: 34rem; }
.contact-info a { color: var(--tuerkis); }
.form-group { margin-bottom: 1.6rem; }
.form-label {
  display: block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem;
  color: var(--lime); margin-bottom: 0.35rem;
}
.form-control, .form-file {
  width: 100%; background: transparent; border: none; border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-body); font-size: 1.05rem; color: #fff; padding: 0.5rem 0;
}
textarea.form-control { background: rgba(255, 255, 255, 0.06); padding: 0.85rem 1rem; }
.form-control:focus, .form-file:focus { outline: none; border-bottom-color: var(--tuerkis); }
.form-control::placeholder { color: rgba(255, 255, 255, 0.55); }
.form-file { padding: 0.5rem 0 0.7rem; }
.form-file::file-selector-button {
  border: none; border-radius: 0; background: rgba(255, 255, 255, 0.12); color: #fff;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.8rem; padding: 0.45rem 0.9rem;
  margin-right: 1rem; cursor: pointer;
}
.form-consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; margin: 1.5rem 0 1.8rem; }
.form-consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--tuerkis); flex: none; }
.form-consent a { color: var(--tuerkis); }
.submit-btn {
  display: inline-block; border: none; cursor: pointer; border-radius: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.02em;
  background: var(--signal); color: var(--stahlblau);
  padding: 0.85rem 1.9rem 0.95rem 1.7rem; transition: background-color 0.15s ease;
}
.submit-btn:hover { background: var(--signal-hover); }
.submit-btn:disabled { opacity: 0.6; cursor: wait; }
.bc-hp { position: absolute; left: -9999px; top: -9999px; }

/* Stellenliste (Karriere) */
.job-list { display: grid; gap: 0; max-width: 56rem; margin-top: 2.5rem; }
.job-row { display: block; text-decoration: none; padding: 1.4rem 0; border-top: 1px solid var(--hairline); }
.job-list .job-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.job-row h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.5rem; line-height: 1.05;
  color: var(--stahlblau); margin-bottom: 0.4rem;
}
.job-row:hover h3 { color: var(--kobalt); }
.job-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-muted); }
.job-row .cta-line { font-size: 1.15rem; margin-top: 0.7rem; color: var(--signal); }
.job-empty { color: var(--text-muted); margin-top: 2rem; max-width: 46rem; }

/* ---------- Mobile Schnellkontakt-Leiste ---------- */

.mobile-cta { display: none; }
@media (max-width: 920px) {
  body { padding-bottom: 4.4rem; }
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
    background: var(--nachtblau);
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-display); font-style: italic; font-weight: 700;
    text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em;
    text-decoration: none; padding: 0.7rem 0.4rem; color: var(--stahlblau);
    white-space: nowrap;
  }
  .mobile-cta svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
  .mobile-cta .mc-call { background: var(--tuerkis); }
  .mobile-cta .mc-wa { background: #25d366; }
}

/* ---------- Rechtstexte und Downloads ---------- */

.legal-page { background: #fff; padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem); }
.legal-container { max-width: 52rem; margin: 0 auto; }
.back-link {
  display: inline-block; margin-bottom: 2rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.85rem; color: var(--kobalt);
}
.back-link:hover { text-decoration: underline; }
.legal-page h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.95; font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--stahlblau); margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 1.4rem; color: var(--stahlblau);
  margin: 2.2rem 0 0.7rem; border-bottom: 1px solid var(--hairline); padding-bottom: 0.4rem;
}
.legal-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--stahlblau); margin: 1.5rem 0 0.4rem; }
.legal-content p, .legal-content ul { margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.3rem; }
.legal-content a { color: var(--kobalt); }

/* ---------- Produktkatalog (prod-*) ---------- */

.prod-head { background: var(--stahlblau); color: var(--text-on-dark); padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem); }
.prod-head-inner { max-width: 1160px; margin: 0 auto; }
.prod-head h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.95; color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.5rem); margin: 0 0 0.9rem;
}
.prod-head p { margin: 0; font-size: 1.05rem; }
.prod-wrap {
  max-width: 1160px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
  display: grid; grid-template-columns: 230px 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 860px) { .prod-wrap { grid-template-columns: 1fr; } }
.prod-side h2 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.9rem; color: var(--kobalt); margin: 1.8rem 0 0.7rem;
}
.prod-side h2:first-child { margin-top: 0; }
.prod-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.prod-filter button {
  border: 1px solid var(--hairline); background: #fff; color: var(--text);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding: 0.4rem 0.7rem; cursor: pointer; border-radius: 0;
}
.prod-filter button:hover { border-color: var(--kobalt); color: var(--kobalt); }
.prod-filter button.is-active { background: var(--stahlblau); border-color: var(--stahlblau); color: #fff; }
.prod-filter-count { opacity: 0.65; margin-left: 0.3rem; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 2.5rem 2rem; }
.prod-card { display: block; text-decoration: none; }
.prod-card-img { display: block; aspect-ratio: 1; background: #fff; overflow: hidden; }
.prod-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.5s ease; }
.prod-card:hover .prod-card-img img { transform: scale(1.03); }
.prod-card-body { display: block; padding-top: 0.9rem; }
.prod-card h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.3rem; line-height: 1.05;
  color: var(--stahlblau); margin: 0 0 0.4rem;
}
.prod-card:hover h3 { color: var(--kobalt); }
.prod-card-price {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; color: var(--stahlblau); font-variant-numeric: tabular-nums;
}
.prod-card-price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.78rem; color: var(--text-muted); }
.prod-card-link {
  display: inline-block; margin-top: 0.6rem;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.05rem; color: var(--signal);
}
.prod-foot { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 4rem) 4rem; }
.lp-group-note { color: var(--text-muted); font-size: 0.9rem; }

/* Produkt-Detail */
.prod-detail {
  max-width: 1160px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr);
  gap: 3rem; align-items: start;
}
@media (max-width: 860px) { .prod-detail { grid-template-columns: 1fr; } }
.prod-detail-img { background: #fff; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.prod-detail-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-detail-cat {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.85rem; color: var(--kobalt);
}
.prod-detail-info h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.98; color: var(--stahlblau);
  font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.4rem 0 0.6rem;
}
.prod-detail-code { color: var(--text-muted); font-size: 0.88rem; }
.prod-detail-price {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 2rem; color: var(--stahlblau); margin: 1rem 0 0.2rem;
  font-variant-numeric: tabular-nums;
}
.prod-detail-price small { font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 0.85rem; color: var(--text-muted); }
.prod-detail-desc { margin-top: 1.25rem; }
.prod-detail-desc p { margin-bottom: 0.8rem; }

/* Anfrage-Formular auf hellem Grund */
.prod-form { margin-top: 1.75rem; border-top: 1px solid var(--hairline); padding-top: 1.5rem; }
.prod-form-row { margin-bottom: 1.2rem; }
.prod-form label {
  display: block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem;
  color: var(--kobalt); margin-bottom: 0.3rem;
}
.prod-form input, .prod-form textarea {
  width: 100%; border: none; border-bottom: 2px solid #a7b1c6; border-radius: 0;
  background: transparent; font-family: var(--font-body); font-size: 1.02rem;
  color: var(--text); padding: 0.45rem 0;
}
.prod-form textarea { background: var(--kobalt-tint); padding: 0.8rem 0.9rem; }
.prod-form input:focus, .prod-form textarea:focus { outline: none; border-bottom-color: var(--kobalt); }
.prod-form-error { color: var(--fehler); font-size: 0.88rem; margin-top: 0.4rem; }
.prod-hp { position: absolute; left: -9999px; top: -9999px; }
.prod-thanks { background: #e7f6ee; border-left: 4px solid var(--ok); color: #0d5236; padding: 1rem 1.25rem; }

/* Verwandte Produkte */
.prod-rel { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 4rem) 4rem; }
.prod-rel h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; color: var(--stahlblau); font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}
.prod-rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; }
.prod-rel-card { display: block; text-decoration: none; }

/* CTA-Band + Button + Zurück-Link (geteilt von Katalogseiten) */
.lp-cta-band { background: var(--stahlblau); color: var(--text-on-dark); padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem); }
.lp-cta-band-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: center; justify-content: space-between; }
.lp-cta-band h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 1; color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 0.6rem;
}
.lp-cta-band p { margin: 0; max-width: 36rem; }
.lp-cta-button {
  display: inline-block; border: none; cursor: pointer; border-radius: 0;
  text-decoration: none;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.02em;
  background: var(--signal); color: var(--stahlblau);
  padding: 0.8rem 1.7rem 0.9rem 1.5rem; transition: background-color 0.15s ease;
}
.lp-cta-button:hover { background: var(--signal-hover); }
.lp-back {
  display: inline-block; margin-bottom: 1.5rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.85rem; color: var(--kobalt);
}
.lp-back:hover { text-decoration: underline; }

/* Heller Trennstreifen vor dem Footer: dunkle Schlussbänder laufen nie direkt in den dunklen Footer */
.footer-split { border-top: clamp(2.5rem, 5vw, 4rem) solid #fff; }

/* Hochformat-Teaser: für stehende Fotos (Robotik-Galerie), zeigt das Motiv statt eines Quer-Ausschnitts */
.teaser-media--portrait { aspect-ratio: 3 / 4; }

/* ---------- Hero-Panel-Slider (Schwarz-Vorbild): Bild hinten, weiße Infobox davor, Tab-Leiste unten ---------- */

.hero-slider { position: relative; overflow: hidden; }
.hero-slide { position: relative; min-height: clamp(420px, 60vh, 640px); display: none; }
.hero-slide.is-active { display: block; }
.hero-slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide-inner {
  position: relative; max-width: 1160px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem) 7rem;
  display: flex; justify-content: flex-end;
}
.hero-panel { background: #fff; max-width: 26rem; padding: 2rem 2.2rem 2.4rem; }
.hero-panel .kicker {
  display: inline-block; background: var(--stahlblau); color: var(--lime);
  padding: 0.4rem 0.7rem; margin-bottom: 1.25rem;
}
.hero-panel h2, .hero-panel h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.98; text-wrap: balance;
  color: var(--stahlblau); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 1rem;
}
.hero-panel p { font-size: 0.98rem; margin: 0 0 1.25rem; }
.hero-panel .cta-line { font-size: 1.3rem; color: var(--signal); margin: 0; }
.hero-panel .cta-line:hover { color: var(--signal-hover); }
.hero-tabbar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 2px;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.hero-tabbar button {
  border: none; border-radius: 0; cursor: pointer;
  background: #fff; color: var(--stahlblau);
  box-shadow: inset 0 -4px 0 var(--hairline);
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: clamp(1rem, 2.2vw, 1.4rem);
  padding: 1.1rem 0.5rem; transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.hero-tabbar button:hover { box-shadow: inset 0 -4px 0 var(--kobalt); color: var(--kobalt); }
.hero-tabbar button.is-active { background: var(--stahlblau); color: #fff; box-shadow: inset 0 -4px 0 var(--signal); }
.hero-tabbar button:focus-visible { outline: 3px solid var(--kobalt); outline-offset: -3px; }
@media (max-width: 700px) {
  .hero-slide-inner { justify-content: stretch; }
  .hero-panel { max-width: none; width: 100%; }
  .hero-tabbar { grid-auto-flow: row; grid-auto-columns: unset; grid-template-columns: 1fr 1fr; }
}

/* ---------- Referenz-Logos (Industrie/Healthcare offen, Defence geschwärzt) ---------- */

.ref-group { margin-top: 2.5rem; }
.ref-group .kicker { margin-bottom: 1rem; }
.ref-logos { display: flex; flex-wrap: wrap; gap: 1.5rem 3.5rem; align-items: center; }
.ref-logos img { height: clamp(40px, 6vw, 58px); width: auto; max-width: 220px; object-fit: contain; }

/* Produkt-Detail: verwandte Karten + Dankes-Box */
.prod-rel-card img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.prod-rel-card strong {
  display: block; margin-top: 0.7rem;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: 1.15rem; line-height: 1.05; color: var(--stahlblau);
}
.prod-rel-card:hover strong { color: var(--kobalt); }
.prod-rel-card span { font-size: 0.85rem; color: var(--text-muted); }
.prod-thanks { display: none; }
.prod-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 640px) { .prod-form-row { grid-template-columns: 1fr; } }
.prod-form label { margin-bottom: 1.2rem; }

/* ---------- Produkt-Detail (Neuaufbau, pd-*) ---------- */

.pd-head { background: var(--stahlblau); padding: 1.4rem clamp(1.25rem, 5vw, 4rem); }
.pd-head .lp-back { margin-bottom: 0; color: var(--tuerkis); }
.pd-band { padding-top: clamp(2.5rem, 5vw, 4rem); }
.pd-grid {
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.2fr);
  gap: 3rem clamp(2rem, 5vw, 4.5rem); align-items: start;
}
@media (max-width: 860px) { .pd-grid { grid-template-columns: 1fr; } }
.pd-media img { width: 100%; aspect-ratio: 1; object-fit: contain; display: block; }
.pd-info .kicker { display: block; margin-bottom: 1rem; color: var(--kobalt); }
.pd-info h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; line-height: 0.98; text-wrap: balance;
  color: var(--stahlblau); font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 0.4rem;
}
.pd-code { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.4rem; }
.pd-price {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 2rem; color: var(--stahlblau); margin: 1rem 0 0.4rem;
  font-variant-numeric: tabular-nums;
}
.pd-price small { display: block; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 0.85rem; color: var(--text-muted); }
.pd-desc { margin-top: 1.25rem; max-width: 40rem; }
.pd-desc p { margin-bottom: 0.8rem; }
.pd-desc ul { padding-left: 1.3rem; margin-bottom: 0.8rem; }
.pd-info .cta-line { margin-top: 1.5rem; color: var(--signal); }
.pd-info .cta-line:hover { color: var(--signal-hover); }
.teaser-media--product { background: #fff; }
.teaser-media--product img { object-fit: contain; }

/* Katalog-Filter: vom JS ausgeblendete Karten */
.prod-card.is-hidden { display: none; }
