:root {
  --bg: #f7f7f3;
  --surface: #ffffff;
  --surface-soft: #ecece7;
  --ink: #111312;
  --muted: #60645f;
  --line: #deded6;
  --dark: #171b1d;
  --dark-2: #22282b;
  --accent: #6f766f;
  --radius: 0;
  --shadow: 0 22px 70px rgba(17, 19, 18, .10);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 999;
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: .86rem;
}
.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 243, .94);
  border-bottom: 1px solid rgba(222,222,214,.82);
  backdrop-filter: blur(16px);
}
.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  letter-spacing: -.05em;
}
.brand__text { font-size: 1.18rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .95rem;
  font-weight: 650;
}
.main-nav a:not(.button) { color: #252a27; }
.main-nav a:not(.button):hover { color: #000; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--dark);
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button--dark { background: var(--dark); color: #fff; }
.button--dark:hover { background: #000; border-color: #000; }
.button--light { background: transparent; color: var(--ink); border-color: var(--line); }
.button--light:hover { border-color: var(--ink); }
.button--small { min-height: 42px; padding: 0 16px; }

.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: #4e524e;
  max-width: 680px;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding-top: 76px;
  background:
    linear-gradient(90deg, rgba(247,247,243,.96) 0%, rgba(247,247,243,.78) 48%, rgba(247,247,243,.96) 100%),
    radial-gradient(circle at 80% 20%, rgba(44,49,49,.14), transparent 38%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.075em;
  max-width: 850px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero__visual {
  position: relative;
  min-height: 520px;
}
.hero-card {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-card--main {
  right: 0;
  top: 0;
  width: min(100%, 540px);
  height: 540px;
  padding: 20px;
}
.hero-card--floating {
  left: 0;
  bottom: 8px;
  width: 300px;
  height: 230px;
  padding: 12px;
  border: 10px solid var(--bg);
}

.category-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.category-strip__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: thin;
}
.category-strip a {
  white-space: nowrap;
  padding: 11px 16px;
  background: #f3f3ef;
  font-size: .92rem;
  font-weight: 750;
}
.category-strip a:hover { background: var(--dark); color: #fff; }

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2,
.feature__copy h2,
.focus-card h2,
.contact__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-heading p,
.feature__copy p,
.focus-card p,
.contact__copy p { color: var(--muted); font-size: 1.05rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--surface);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.category-card--wide { grid-column: span 2; }
.category-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr auto;
}
.category-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 28px;
  background: #fff;
  transition: transform .45s ease;
}
.category-card:hover img { transform: scale(1.035); }
.category-card__body {
  padding: 28px;
  border-top: 1px solid var(--line);
}
.category-card__body span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.category-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.category-card p { margin: 0; color: var(--muted); }

.feature { background: var(--surface); }
.feature__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.feature__image {
  background: #f6f6f2;
  border: 1px solid var(--line);
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 42px;
}
.feature__image img { max-height: 490px; object-fit: contain; }
.benefit-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.benefit-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-list strong { font-size: 1rem; }
.benefit-list span { color: var(--muted); }

.product-focus { background: var(--bg); }
.focus-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--dark);
  color: #fff;
  min-height: 560px;
}
.focus-card__copy {
  padding: clamp(36px, 6vw, 80px);
  align-self: center;
}
.focus-card p { color: rgba(255,255,255,.76); }
.focus-card .eyebrow { color: rgba(255,255,255,.58); }
.focus-card .button { border-color: #fff; background: #fff; color: var(--ink); margin-top: 18px; }
.focus-card__image { background: #fff; display: grid; place-items: center; padding: 34px; }
.focus-card__image img { max-height: 520px; object-fit: contain; }

.support { background: var(--surface); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 250px;
}
.support-card__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  background: var(--dark);
  color: #fff;
  font-size: .86rem;
  font-weight: 850;
}
.support-card h3 { margin: 0 0 12px; font-size: 1.35rem; letter-spacing: -.035em; }
.support-card p { margin: 0; color: var(--muted); }

.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-mail {
  display: inline-block;
  margin-top: 22px;
  font-weight: 800;
  font-size: 1.15rem;
  border-bottom: 2px solid var(--ink);
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  gap: 18px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form span { font-weight: 750; font-size: .92rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); background: #fff; }
.form-hint { margin: 0; color: var(--muted); font-size: .84rem; }

.footer {
  background: #0f1111;
  color: #fff;
  padding: 70px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}
.footer p { color: rgba(255,255,255,.68); max-width: 300px; }
.footer h2 {
  margin: 0 0 18px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}
.footer a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.footer a:hover { color: #fff; }
.brand--footer .brand__mark { background: #fff; color: #0f1111; }
.footer__bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.footer__bottom a { display: inline; color: #fff; }

@media (max-width: 980px) {
  .header__inner { min-height: 78px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s;
  }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 12px; border-bottom: 0; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero__grid,
  .feature__grid,
  .focus-card,
  .contact__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 470px; }
  .hero-card--main { width: 100%; height: 430px; }
  .hero-card--floating { width: 250px; height: 190px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card--wide { grid-column: span 1; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar__inner { flex-direction: column; align-items: flex-start; padding: 10px 0; gap: 4px; }
  .main-nav { top: 113px; }
  .section { padding: 66px 0; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero__visual { min-height: 390px; }
  .hero-card--main { height: 330px; }
  .hero-card--floating { width: 190px; height: 145px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 420px; }
  .category-card img { height: 250px; }
  .feature__image { min-height: auto; padding: 20px; }
  .benefit-list div { grid-template-columns: 1fr; gap: 6px; }
  .focus-card__copy { padding: 34px 24px; }
  .footer__bottom { flex-direction: column; }
}


/* Basis-Seiten: Impressum, Datenschutz, 404 */
.legal-hero,
.error-page {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.legal-hero__inner,
.error-page__inner {
  max-width: 900px;
}
.legal-hero h1,
.error-page h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.legal-hero p,
.error-page p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}
.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.legal-note {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.legal-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 58px);
}
.legal-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
}
.legal-content a,
.form-hint a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.error-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
}
.error-page__actions { margin-top: 30px; }

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-note { position: static; }
}

/* Produktübersicht */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 64px;
  align-items: center;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero__image {
  min-height: 520px;
  background: #f6f6f2;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 54px);
}
.page-hero__image img {
  max-height: 460px;
  object-fit: contain;
}
.products-overview {
  background: var(--bg);
}
.product-category-list {
  display: grid;
  gap: 24px;
}
.product-section-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 500px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-section-card.is-hidden {
  display: none;
}
.product-section-card--reverse .product-section-card__image {
  order: 2;
}
.product-section-card__image {
  background: #f6f6f2;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 58px);
  border-right: 1px solid var(--line);
}
.product-section-card--reverse .product-section-card__image {
  border-right: 0;
  border-left: 1px solid var(--line);
}
.product-section-card__image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.product-section-card__image--split {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.product-section-card__image--split img {
  max-height: 270px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.product-section-card__content {
  padding: clamp(34px, 5vw, 68px);
  align-self: center;
}
.product-number {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.product-section-card h3 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.product-section-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag-list li {
  background: #f3f3ef;
  border: 1px solid var(--line);
  padding: 8px 11px;
  color: #3d423e;
  font-size: .88rem;
  font-weight: 750;
}
.product-section-card__actions {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.product-roadmap {
  background: var(--surface);
}
.roadmap-card {
  background: var(--dark);
  color: #fff;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  padding: clamp(34px, 6vw, 72px);
  align-items: center;
}
.roadmap-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.roadmap-card p {
  margin: 0 0 26px;
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
}
.roadmap-card .eyebrow { color: rgba(255,255,255,.58); }
.roadmap-card .button--light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.roadmap-card .button--light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

@media (max-width: 980px) {
  .page-hero__grid,
  .product-section-card,
  .roadmap-card {
    grid-template-columns: 1fr;
  }
  .page-hero__image { min-height: 390px; }
  .product-section-card--reverse .product-section-card__image { order: 0; }
  .product-section-card__image,
  .product-section-card--reverse .product-section-card__image {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .page-hero__image { min-height: 300px; padding: 22px; }
  .product-section-card { min-height: auto; }
  .product-section-card__image { padding: 24px; }
  .product-section-card__image img { max-height: 260px; }
  .product-section-card__image--split { grid-template-columns: 1fr; }
  .product-section-card__content { padding: 30px 24px; }
  .product-section-card h3 { font-size: clamp(2rem, 11vw, 3.2rem); }
}

/* Product detail page */
.product-hero {
  background: var(--bg);
  padding-top: 76px;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.product-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: .88;
  letter-spacing: -.085em;
}
.product-type {
  margin: 14px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.product-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.product-hero__media {
  min-height: 610px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 70px);
}
.product-hero__media img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.product-nav {
  position: sticky;
  top: 76px;
  z-index: 60;
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.product-nav__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 0;
}
.product-nav a {
  white-space: nowrap;
  padding: 10px 14px;
  background: #f3f3ef;
  font-size: .9rem;
  font-weight: 800;
}
.product-nav a:hover {
  background: var(--dark);
  color: #fff;
}
.product-benefits {
  background: var(--surface);
}
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-benefit-grid article {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(26px, 4vw, 44px);
  min-height: 250px;
}
.product-benefit-grid span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .14em;
  margin-bottom: 24px;
}
.product-benefit-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.product-benefit-grid p {
  margin: 0;
  color: var(--muted);
}
.product-split {
  background: var(--bg);
}
.product-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.product-split__image {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 60px);
}
.product-split__image img {
  max-height: 430px;
  object-fit: contain;
}
.product-split__copy h2,
.specs h2,
.detail-card h2,
.downloads h2,
.product-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.product-split__copy p,
.specs p,
.detail-card p,
.downloads p,
.product-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #353936;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 2px;
  background: var(--dark);
}
.specs {
  background: var(--surface);
}
.specs__grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.spec-table {
  border-top: 1px solid var(--line);
  background: #fff;
}
.spec-table > div {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.spec-table span {
  color: var(--muted);
  font-weight: 750;
}
.spec-table strong {
  font-weight: 850;
}
.product-details {
  background: var(--bg);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(30px, 5vw, 58px);
}
.downloads {
  background: var(--surface);
}
.downloads__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.download-list {
  display: grid;
  gap: 12px;
}
.download-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: background .2s ease, border .2s ease, transform .2s ease;
}
.download-card:hover {
  background: #fff;
  border-color: var(--dark);
  transform: translateY(-1px);
}
.download-card--disabled {
  opacity: .55;
  cursor: not-allowed;
}
.download-card--disabled:hover {
  background: var(--bg);
  border-color: var(--line);
  transform: none;
}
.download-card__type {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--dark);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.download-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  margin-bottom: 5px;
}
.download-card small {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}
.product-cta {
  background: var(--bg);
}
.product-cta__card {
  background: var(--dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
}
.product-cta__card p { color: rgba(255,255,255,.72); }
.product-cta__card .eyebrow { color: rgba(255,255,255,.58); }
.product-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.product-cta .button--light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.product-cta .button--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

@media (max-width: 980px) {
  .product-hero__grid,
  .product-split__grid,
  .specs__grid,
  .detail-grid,
  .downloads__grid,
  .product-cta__card,
  .product-benefit-grid {
    grid-template-columns: 1fr;
  }
  .product-hero__media,
  .product-split__image { min-height: 390px; }
  .product-cta__actions { justify-content: flex-start; }
  .product-nav { top: 76px; }
}

@media (max-width: 640px) {
  .product-hero h1 { font-size: clamp(3.4rem, 18vw, 5.1rem); }
  .product-hero__media,
  .product-split__image { min-height: 300px; padding: 22px; }
  .spec-table > div { grid-template-columns: 1fr; gap: 6px; }
  .download-card { grid-template-columns: 52px 1fr; padding: 16px; }
  .download-card__type { width: 48px; height: 48px; }
}

/* AnchorLock image gallery */
.product-gallery {
  background: var(--bg);
}
.gallery-heading {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}
.gallery-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 6.3rem);
  line-height: .92;
  letter-spacing: -.07em;
}
.gallery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}
.gallery-stage {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: min(76vw, 760px);
  display: grid;
  grid-template-rows: 1fr auto;
}
.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
  padding: clamp(12px, 2vw, 26px);
}
.gallery-stage figcaption {
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  color: var(--muted);
  font-weight: 750;
  background: #fff;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: min(76vw, 760px);
  overflow: auto;
  padding-right: 4px;
}
.gallery-thumb {
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  transition: border .2s ease, background .2s ease, transform .2s ease;
}
.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--dark);
  background: #f5f5f2;
}
.gallery-thumb:hover {
  transform: translateY(-1px);
}
.gallery-thumb img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  display: block;
  background: #f4f4f1;
}
.gallery-thumb span {
  font-size: .95rem;
  font-weight: 850;
  color: var(--ink);
}
.gallery-thumb:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .gallery-heading,
  .gallery-layout {
    grid-template-columns: 1fr;
  }
  .gallery-stage {
    min-height: 560px;
  }
  .gallery-thumbs {
    max-height: none;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow: visible;
    padding-right: 0;
  }
  .gallery-thumb {
    grid-template-columns: 1fr;
  }
  .gallery-thumb img {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 640px) {
  .gallery-stage {
    min-height: 390px;
  }
  .gallery-stage img {
    padding: 8px;
  }
  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
  }
  .gallery-thumb {
    min-width: 142px;
  }
  .gallery-thumb img {
    height: 96px;
  }
}


/* Thule-artige Produktnavigation / Megamenü */
.nav-link--button {
  border: 0;
  background: transparent;
  color: #252a27;
  padding: 0;
  font-weight: 750;
  cursor: pointer;
}
.nav-link--button:hover,
.nav-link--button.is-active { color: #000; }

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(42px + 76px);
  z-index: 90;
  background: rgba(247, 247, 243, .985);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(17,19,18,.10);
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .24s ease, transform .24s ease, visibility 0s linear .24s;
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .24s ease, transform .24s ease, visibility 0s;
}
.mega-menu__inner { padding: 18px 0 16px; }
.mega-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.mega-menu__top p {
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -.025em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}
.mega-close {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 0fr;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 300px;
  max-width: 1040px;
  overflow: hidden;
  transition: grid-template-columns .24s ease, max-width .24s ease;
}
.mega-menu.has-selection .mega-menu__grid {
  grid-template-columns: minmax(300px, .85fr) minmax(360px, 1.15fr);
}
.mega-menu__categories {
  border-right: 1px solid var(--line);
  background: #fff;
}
.mega-category {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 760;
  font-size: .96rem;
  cursor: pointer;
}
.mega-category:hover,
.mega-category.is-active { background: #ddd4c4; }
.mega-category span:last-child { font-size: 1.45rem; font-weight: 500; }
.mega-menu__subcategories {
  background: #ddd4c4;
  padding: 26px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  overflow: hidden;
}
.mega-menu.has-selection .mega-menu__subcategories {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.mega-subpanel { display: none; }
.mega-subpanel.is-active { display: grid; gap: 14px; }
.mega-subpanel a {
  font-size: .98rem;
  font-weight: 500;
}
.mega-subpanel a:hover { text-decoration: underline; text-underline-offset: 4px; }
.mega-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 850 !important;
  margin-bottom: 8px;
}
.mega-all span { font-size: 1.55rem; font-weight: 500; }
.mega-menu__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  font-weight: 800;
  font-size: .92rem;
}
.mega-menu__footer a { border-bottom: 2px solid transparent; }
.mega-menu__footer a:hover { border-color: var(--ink); }
body.mega-open { overflow: auto; }

/* Kategorie-Zielseiten */
.category-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.category-hero__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.category-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.category-hero__image {
  background: #f6f6f2;
  border: 1px solid var(--line);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 34px;
}
.category-hero__image img { max-height: 470px; object-fit: contain; }
.product-list-grid { display: grid; gap: 22px; }
.product-list-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 330px;
}
.product-list-card__media {
  background: #f7f7f3;
  display: grid;
  place-items: center;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.product-list-card__media img { max-height: 280px; object-fit: contain; }
.product-list-card__body {
  padding: clamp(28px, 4vw, 48px);
  align-self: center;
}
.product-list-card__body h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.product-list-card__body p { color: var(--muted); max-width: 600px; }
.product-list-card__body .button { margin-top: 18px; }

@media (max-width: 980px) {
  .main-nav {
    top: 120px;
    max-height: calc(100vh - 111px);
    overflow-y: auto;
  }
  .main-nav .nav-link--button {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .mega-menu {
    top: 120px;
    height: calc(100vh - 111px);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 1;
    transition: transform .26s ease, visibility 0s linear .26s;
  }
  .mega-menu.is-open {
    transform: translateX(0);
    transition: transform .26s ease, visibility 0s;
  }
  .mega-menu__inner { width: 100%; padding: 0; }
  .mega-menu__top { padding: 16px 20px; margin: 0; border-bottom: 1px solid var(--line); }
  .mega-menu__grid,
  .mega-menu.has-selection .mega-menu__grid { grid-template-columns: 1fr; border: 0; min-height: 0; max-width: none; }
  .mega-menu__categories { border-right: 0; }
  .mega-menu__subcategories { display: none; padding: 0; background: #ddd4c4; opacity: 1; visibility: visible; transform: none; }
  .mega-menu.has-selection .mega-menu__subcategories { display: block; }
  .mega-subpanel.is-active { padding: 18px 24px 26px; }
  .mega-category { min-height: 60px; padding: 0 22px; font-size: .98rem; }
  .mega-menu__footer { padding: 18px 20px; flex-direction: column; background: #fff; }
  body.mega-open { overflow: hidden; }
  .category-hero__grid,
  .product-list-card { grid-template-columns: 1fr; }
  .category-hero__image { min-height: 390px; }
  .product-list-card__media { border-right: 0; border-bottom: 1px solid var(--line); }
  .category-subnav { top: 120px; }
}

@media (max-width: 640px) {
  .mega-menu { top: 113px; height: calc(100vh - 113px); }
  .category-subnav { top: 113px; }
  .category-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .category-hero__image { min-height: 300px; padding: 20px; }
}

/* Erweiterung Kategorie-Landingpage Sicherungstechnik */
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  align-items: end;
}
.section-heading--split p { margin-top: 0; }
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.product-list-card--placeholder { opacity: .88; }
.product-list-card--placeholder .product-list-card__media img { filter: grayscale(.35); opacity: .72; }
.cta-band {
  margin-top: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.cta-band p { max-width: 620px; }
.cta-band--light { background: #f7f7f3; }
@media (max-width: 760px) {
  .section-heading--split,
  .cta-band { grid-template-columns: 1fr; display: grid; }
  .cta-band .button { width: max-content; }
}

/* FIX: Kategorie-Hero und Split-Headings ohne Textüberlappung */
.category-hero__grid > *,
.section-heading--split > * {
  min-width: 0;
}

.category-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.category-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.category-hero .lead {
  max-width: 620px;
}

.section-heading--split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: start;
}

.section-heading--split h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .96;
}

@media (max-width: 1100px) {
  .category-hero__grid {
    grid-template-columns: 1fr;
  }
  .category-hero h1 {
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .section-heading--split {
    grid-template-columns: 1fr;
  }
  .category-hero h1,
  .section-heading--split h2 {
    letter-spacing: -.055em;
  }
}


/* AnchorLock Premium-Produktseite */
.product-hero--premium .lead { max-width: 680px; }
.product-hero__media--image { overflow: hidden; }
.product-hero__media--image img { max-height: 620px; }
.product-quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}
.product-quickfacts div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 16px;
}
.product-quickfacts dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-quickfacts dd {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.025em;
}
.gallery-stage { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
  padding: 28px;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease, visibility 0s;
}
.lightbox img {
  max-width: min(1120px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 640px) {
  .product-quickfacts { grid-template-columns: 1fr; }
  .lightbox { padding: 12px; }
}


/* FIX: Split-Headings ohne Überlappung */
.section-heading--split {
  display: block !important;
  max-width: 980px !important;
}
.section-heading--split h2 {
  max-width: 900px !important;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}
.section-heading--split p {
  max-width: 720px !important;
  margin-top: 18px !important;
}
@media (max-width: 760px) {
  .section-heading--split h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem) !important;
  }
}


/* Product video section */
.product-video {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-video__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
.product-video__copy {
  min-width: 0;
  max-width: 620px;
}
.product-video__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.25vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.065em;
  max-width: 100%;
  overflow-wrap: normal;
  hyphens: auto;
}
.product-video__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.product-video__hint {
  margin-top: 18px !important;
  font-size: .95rem !important;
  color: #747874 !important;
}
.product-video__player {
  min-width: 0;
  background: #0f1211;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-video__player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #111;
}
@media (max-width: 1100px) {
  .product-video__grid {
    grid-template-columns: 1fr;
  }
  .product-video__copy {
    max-width: 760px;
  }
}
@media (max-width: 640px) {
  .product-video__copy h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    letter-spacing: -.055em;
  }
}


/* Logo integration */
.brand--logo { gap: 0; }
.brand__logo { display: block; height: 56px; width: auto; max-width: 320px; object-fit: contain; }
.brand--footer .brand__logo { filter: invert(1); opacity: .96; }

/* Compact dropdown navigation */
.nav-link--button { background: transparent; border: 0; cursor: pointer; color: #252a27; font-weight: 650; padding: 0; }
.nav-link--button:hover, .nav-link--button.is-active { color: #000; }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown__menu { position: absolute; top: calc(100% + 18px); right: 0; min-width: 295px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease, visibility .22s ease; z-index: 150; }
.nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__menu a { display: block; padding: 12px 14px; margin: 0; border-bottom: 1px solid rgba(222,222,214,.75); }
.nav-dropdown__menu a:last-child { border-bottom: 0; }
.nav-dropdown__menu a:hover { background: #f3f3ef; }

/* Editorial and support pages */
.editorial-hero { background: var(--bg); padding-top: 110px; }
.editorial-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.editorial-hero h1 { margin: 0; font-size: clamp(3.4rem, 8vw, 7.2rem); line-height: .92; letter-spacing: -.075em; }
.editorial-hero__image { background: #fff; box-shadow: var(--shadow); min-height: 420px; display: grid; place-items: center; overflow: hidden; }
.editorial-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.two-col h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .95; letter-spacing: -.065em; }
.two-col p { color: var(--muted); font-size: 1.08rem; }
.feature-grid-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article { border: 1px solid var(--line); padding: 28px; background: var(--bg); }
.feature-grid h3 { margin: 0 0 10px; font-size: 1.25rem; }
.feature-grid p { color: var(--muted); margin: 0 0 16px; }
.feature-grid a { font-weight: 800; border-bottom: 2px solid var(--ink); }
.image-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.image-band__grid img { background: #fff; height: 320px; width: 100%; object-fit: contain; padding: 20px; }
.support-teaser-card { background: #fff; border: 1px solid var(--line); padding: 34px; box-shadow: var(--shadow); }
.support-teaser-card h3, .support-teaser-card h2 { margin-top: 0; }
.support-teaser-card--hero { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.contact__grid--teaser { align-items: center; }
.contact-form select { min-height: 50px; border: 1px solid var(--line); background: #f8f8f5; padding: 0 14px; }
.contact-form select:focus { border-color: var(--ink); background: #fff; outline: none; }
.downloads-overview { display: grid; gap: 46px; }
.download-section h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 0 0 20px; letter-spacing: -.04em; }
.download-list { display: grid; gap: 12px; }
.download-row { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); padding: 18px; transition: border .2s ease, transform .2s ease; }
.download-row:hover { border-color: var(--ink); transform: translateY(-1px); }
.download-row small { display: block; color: var(--muted); margin-top: 3px; }

@media (max-width: 900px) {
  .brand__logo { height: 44px; max-width: 255px; }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown__toggle { width: 100%; text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-dropdown__menu { position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 0 8px 14px; display: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown__menu a { padding: 10px 0; background: transparent; }
  .editorial-hero__grid, .two-col, .feature-grid, .image-band__grid, .contact__grid--teaser { grid-template-columns: 1fr; }
  .editorial-hero__image { min-height: 300px; }
}


/* Startseite: ruhigere Produktwelt statt überlagerter Einzelbilder */
.hero__visual--product-wall {
  min-height: 540px;
}
.hero-product-wall {
  height: 540px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}
.hero-product-tile {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero-product-tile--large {
  grid-row: span 3;
}
.hero-product-tile--wide {
  grid-column: 2;
}
.hero-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  background: #fff;
}
.hero-product-tile--photo img {
  object-fit: cover;
  padding: 0;
  background: transparent;
}
.hero-product-tile figcaption {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f9f9f6;
}
.support-card--link {
  display: block;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.support-card--link:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 19, 18, .08);
}

@media (max-width: 980px) {
  .hero-product-wall { height: auto; min-height: 460px; }
  .hero-product-tile--large { grid-row: span 2; }
  .hero-product-tile img { min-height: 150px; }
}
@media (max-width: 640px) {
  .hero__visual--product-wall { min-height: auto; }
  .hero-product-wall { grid-template-columns: 1fr 1fr; height: auto; min-height: 0; }
  .hero-product-tile--large { grid-column: span 2; grid-row: auto; }
  .hero-product-tile--wide { grid-column: span 2; }
  .hero-product-tile img { height: 180px; min-height: 0; padding: 16px; }
  .hero-product-tile figcaption { font-size: .68rem; }
}


/* Fix: Support-/Editorial-Hero sauberer zweispaltiger Aufbau */
.editorial-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
}
.editorial-hero__grid > * {
  min-width: 0;
}
.support-teaser-card--hero {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  min-height: 320px;
}
@media (max-width: 1150px) {
  .editorial-hero__grid {
    grid-template-columns: 1fr;
  }
  .support-teaser-card--hero {
    justify-self: stretch;
    max-width: none;
    min-height: auto;
  }
}


/* Lifestyle image usage */
.image-band--lifestyle .image-band__grid img {
  object-fit: cover;
  padding: 0;
  height: 360px;
}
@media (max-width: 900px) {
  .image-band--lifestyle .image-band__grid img { height: 260px; }
}

/* Additional lifestyle scene gallery */
.scene-section { background: #f3f3ef; }
.scene-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.scene-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.scene-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.scene-card figcaption {
  padding: 14px 16px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fafaf7;
}
@media (max-width: 980px) {
  .scene-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .scene-gallery { grid-template-columns: 1fr; }
  .scene-card img { height: 240px; }
}


/* Fix: Download-Übersicht ohne Überschrift/Kachel-Kollision */
.editorial-hero--downloads .editorial-hero__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
}
.editorial-hero--downloads h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
}
.editorial-hero--downloads .lead {
  max-width: 920px;
}
.editorial-hero--downloads .support-teaser-card--hero {
  justify-self: stretch;
  max-width: none;
  min-height: auto;
  padding: clamp(28px, 4vw, 48px);
}


/* Unified category overview templates */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
.category-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  font-weight: 850;
  color: #2c302d;
}
.category-products .section-heading {
  margin-bottom: 36px;
}
.category-products .product-list-grid {
  display: grid;
  gap: 22px;
}
.category-products .product-list-card {
  overflow: hidden;
}
.category-products .product-list-card__media img {
  width: 100%;
  height: 100%;
  max-height: 285px;
  object-fit: contain;
}
.category-products .product-card-actions .button {
  margin-top: 0;
}
.category-hero .hero__actions {
  margin-top: 30px;
}
@media (max-width: 760px) {
  .category-tags span {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .9rem;
  }
}


/* Legal long text refinements */
.legal-content .index,
.legal-content .m-elements,
.legal-content .glossary {
  padding-left: 1.25rem;
}
.legal-content .index li,
.legal-content .m-elements li,
.legal-content .glossary li {
  margin-bottom: .75rem;
}
.legal-content a {
  word-break: break-word;
}


/* Kontaktformular: Inline-Erfolgsmeldung statt externer Formspree-Erfolgsseite */
.form-status {
  display: none;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-weight: 750;
  background: #f7f7f3;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  border-color: #1f5f3a;
  background: #edf7f0;
  color: #17462b;
}
.form-status.is-error {
  border-color: #8a2d2d;
  background: #fff1f1;
  color: #692121;
}
.contact-form button[disabled] {
  opacity: .65;
  cursor: wait;
}
