/* ============================================================
   JMW Fire d.o.o. — Main Stylesheet
   Modern industrial design, no framework
   ============================================================ */

/* ── Fonts self-hosted (GDPR-compliant) ── */
@import url('../assets/fonts/fonts.css');

/* ============================================================
   0. INTERSCHUTZ ANNOUNCEMENT BANNER
   ============================================================ */

/* ── Interschutz 2026 — Floating Card ── */
.interschutz-banner {
  position: fixed;
  top: 100px;
  right: 32px;
  z-index: 1001;
  width: 300px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}

.interschutz-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.interschutz-banner-inner {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

/* Collab header: JMW Fire × Interschutz */
.interschutz-collab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 0 6px;
}

.interschutz-collab-logo {
  height: 36px;
  width: auto;
  border-radius: 3px;
}

.interschutz-collab-logo--is {
  height: 32px;
}

.interschutz-x {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  user-select: none;
}

@media (max-width: 768px) {
  .interschutz-collab-logo { height: 28px; }
  .interschutz-collab-logo--is { height: 24px; }
  .interschutz-x { font-size: 1.4rem; }
  .interschutz-collab { gap: 10px; }
}

.interschutz-mainline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1.3;
}

.interschutz-highlight {
  color: var(--red);
}

.interschutz-subline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.interschutz-meta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  display: block;
}

.interschutz-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.interschutz-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.25;
  display: block;
}

.interschutz-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.interschutz-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-top: 6px;
}

.interschutz-cta {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 9px 14px;
  text-decoration: none;
  border-radius: 4px;
  display: block;
  text-align: center;
  transition: background 0.2s;
}

.interschutz-cta:hover {
  background: #a01f14;
}

.interschutz-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 4px;
  transition: color 0.2s;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interschutz-close:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   1. CSS RESET & ROOT VARIABLES
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --red:          #BB2415;
  --red-dark:     #8a1a0f;
  --red-light:    rgba(187, 36, 21, 0.08);
  --gray-dark:    #CCCCCC;
  --gray-light:   #E6E6E6;
  --gray-bg:      #f0f0f0;
  --black:        #111111;
  --text:         #333333;
  --text-light:   #666666;
  --white:        #ffffff;

  /* Background gradient */
  --gradient-bg:  linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
  --gradient-hero: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 60%, #d8d8d8 100%);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max:   1200px;
  --nav-height:      60px;

  /* Transitions */
  --transition:    0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --shadow-red:   0 8px 30px rgba(187, 36, 21, 0.35);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ============================================================
   2. UTILITY CLASSES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding);
}

.text-red    { color: var(--red); }
.text-black  { color: var(--black); }
.text-light  { color: var(--text-light); }

.bg-white    { background: var(--white); }
.bg-gray     { background: var(--gray-light); }
.bg-black    { background: var(--black); }

/* YouTube / Video embed */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.bg-gradient { background: var(--gradient-bg); }
.bg-red      { background: var(--red); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title::after {
  display: none;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.82rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-lg {
  padding: 17px 44px;
  font-size: 1.05rem;
}

/* ============================================================
   5. LOGO COMPONENT
   ============================================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(187,36,21,0.3));
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  height: var(--nav-height);
  background: #ffffff;
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

/* ── Desktop Nav Links (left side) ── */
.nav-links-top {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-wrap > a,
a.nav-item-wrap {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  padding: 6px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item-wrap > a:hover,
a.nav-item-wrap:hover {
  color: var(--red);
  background: var(--red-light);
}

.nav-item-wrap.active > a,
a.nav-item-wrap.active {
  color: var(--red);
  font-weight: 700;
}

.nav-chevron {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform var(--transition);
}

.nav-item-wrap:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 180px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 999;
}

.nav-item-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown a:hover {
  color: var(--red);
  background: var(--red-light);
}

/* Center: Logo + brand name */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-center-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  justify-content: center;
}

/* Logo image — SVG, no blend mode needed */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--black);
  padding: 6px 14px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: var(--red-light);
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
  margin-left: 6px;
  white-space: nowrap;
}

/* Right: Language + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
  cursor: pointer;
  background: none;
}

.lang-btn:hover {
  color: var(--red);
  border-color: var(--red);
}

.lang-btn.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

/* Hamburger button — hidden on desktop, visible only on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 3px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
  width: 100%;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav panel (slides from right) ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.visible {
  display: block;
  opacity: 1;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 90vw;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}

.nav-panel.open {
  transform: translateX(0);
}

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-light);
  flex-shrink: 0;
}

.nav-panel-close {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  transition: color var(--transition);
}

.nav-panel-close:hover {
  color: var(--red);
}

.nav-panel-links {
  padding: 16px 0;
  flex: 1;
  overflow-y: auto;
}

/* Main nav links */
.nav-panel-links > a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  padding: 14px 28px;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.nav-panel-links > a:hover,
.nav-panel-links > a.active {
  color: var(--red);
  border-left-color: var(--red);
  background: var(--red-light);
}

/* Sub-links: compact, indented */
.nav-panel-sub {
  padding-left: 20px;
  border-left: 2px solid var(--red);
  margin: 0 28px 4px;
}

.nav-panel-sub a {
  display: block;
  font-family: var(--font-heading);
  padding: 7px 12px !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: none !important;
  color: var(--text-light) !important;
  transition: all var(--transition);
}

.nav-panel-sub a:hover {
  color: var(--red) !important;
  background: var(--red-light) !important;
}

/* Legal links: bottom section */
.nav-panel-legal {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  padding-left: 28px;
  padding-right: 28px;
}

.nav-panel-legal a {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: var(--text-light) !important;
  padding: 6px 10px !important;
  letter-spacing: 0.3px;
}

.nav-panel-lang {
  display: flex;
  gap: 8px;
  padding: 16px 28px;
  border-top: 1px solid var(--gray-light);
  flex-shrink: 0;
}

.nav-panel-contact {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--gray-light);
  flex-shrink: 0;
}

.nav-panel-contact p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.nav-panel-contact a {
  font-size: 0.85rem;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Geometric accent lines */
.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

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

.hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--red);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--black);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Hero image / slideshow */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4/3;
  background: transparent;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #d0d0d0 0%, #b8b8b8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 10px;
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* Slide counter dots */
.slideshow-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}

.slideshow-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slideshow-dots span.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Hero parallax bg (subtle) */
.parallax-bg {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   8. STATS SECTION
   ============================================================ */

.stats-section {
  background: var(--white);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
}

.stat-item {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   9. ABOUT TEASER
   ============================================================ */

.about-teaser {
  background: var(--gradient-bg);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Huge decorative logo — overflows left edge */
.about-teaser-logo {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  z-index: 0;
}

.about-teaser-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-teaser-spacer {
  /* spacer so text sits on the right */
}

.about-teaser-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0 20px;
  flex-wrap: wrap;
}
.about-teaser-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-teaser-stat strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
}
.about-teaser-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .about-teaser-logo {
    position: relative;
    width: 100%;
    height: 280px;
    left: 0;
    top: 0;
    bottom: auto;
    margin-bottom: 32px;
  }
  .about-teaser-inner {
    grid-template-columns: 1fr;
  }
  .about-teaser-spacer {
    display: none;
  }
}

/* ============================================================
   10. PRODUCT CARDS
   ============================================================ */

.products-section {
  background: #faf9f6;
  padding: var(--section-padding);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
  border-color: transparent;
}
.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #ffffff;
  padding: 16px;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.08);
}

.product-card-body {
  padding: 24px;
}

.product-card-norm {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.product-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.category-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid rgba(187,36,21,0.2);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* Categories Grid (produkte.html) */
.categories-section {
  background: var(--white);
  padding: var(--section-padding);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  position: relative;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.category-card:hover::before {
  transform: scaleX(1);
}
.category-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}
.category-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f7f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
}
.category-card-num {
  position: absolute;
  bottom: -8px;
  left: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.18);
  pointer-events: none;
  user-select: none;
}
.category-card-img-wrap img {
  width: auto;
  height: 130px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.10));
  position: relative;
  z-index: 1;
}
.category-card:hover .category-card-img-wrap img {
  transform: scale(1.06);
}
.img-scale-xl { transform: scale(1.8); transform-origin: center; }
.img-scale-lg { transform: scale(1.1); transform-origin: center; }
.category-card:hover .category-card-img-wrap .img-scale-xl { transform: scale(1.9); }
.category-card:hover .category-card-img-wrap .img-scale-lg { transform: scale(1.18); }
.category-card-body {
  padding: 22px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.category-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-bottom: 4px;
  flex: 1;
  align-content: flex-start;
}
.card-tag {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #888;
  border: 1px solid rgba(0,0,0,0.11);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.category-card-body .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid rgba(0,0,0,0.10) !important;
  padding: 14px 20px !important;
  margin-left: -24px;
  margin-right: -24px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--black);
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease;
}
.category-card-body .btn:hover {
  background: var(--black);
  color: #fff;
}
.category-card--dark {
  background: #1c1c1c;
}
.category-card--dark .category-card-img-wrap {
  background: #262626;
}
.category-card--dark .category-card-num {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.12);
}
.category-card--dark .category-card-img-wrap img {
  mix-blend-mode: luminosity;
  opacity: 0.85;
}
.category-card--dark .category-card-body h3 {
  color: #fff;
}
.category-card--dark .card-tag {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.12);
}
.category-card--dark .category-card-body .btn {
  border-top-color: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.6);
}
.category-card--dark .category-card-body .btn:hover {
  background: var(--red);
  color: #fff;
}
.category-card--dark::before {
  background: var(--red);
}

/* ── Produkte: Alternating Feature Rows ── */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid var(--gray-light);
}

.product-feature:nth-child(even) {
  direction: rtl;
}
.product-feature:nth-child(even) > * {
  direction: ltr;
}

.product-feature-image {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px;
}

.product-feature-image img {
  max-height: 260px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-feature:hover .product-feature-image img {
  transform: scale(1.06);
}

.product-feature-content {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.product-feature-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.product-feature-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 4px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.product-feature-content p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 16px 0 28px;
  padding-left: 19px;
}

/* ── Produkte: Services Strip ── */
.services-strip {
  background: var(--black);
  padding: 56px 0;
}

.services-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.service-item {
  background: var(--black);
  padding: 40px 36px;
  text-align: center;
}

.service-item-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--red);
}

.service-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-feature {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .product-feature:nth-child(even) { direction: ltr; }
  .product-feature-image {
    padding: 32px;
    min-height: 240px;
  }
  .product-feature-content {
    padding: 36px 24px;
  }
  .services-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   11. PARTNERS SECTION
   ============================================================ */

.partners-section {
  background: var(--gradient-bg);
  padding: var(--section-padding);
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.partner-logo {
  background: var(--white);
  border: 1px solid var(--gray-dark);
  border-radius: 4px;
  padding: 20px 24px;
  transition: all var(--transition);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

/* ============================================================
   12. PARALLAX BANNER (RED)
   ============================================================ */

.parallax-banner {
  background: var(--red);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.parallax-banner-content {
  position: relative;
  z-index: 1;
}

.parallax-banner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.parallax-banner p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Partner Ticker */
.partner-ticker {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  padding: 10px 0;
}

.partner-ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.partner-ticker-inner img {
  height: 70px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 36px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.partner-ticker-inner img[alt="Kindswater"] {
  padding: 0px 36px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ============================================================
   13. PAGE HERO BANNER (inner pages)
   ============================================================ */

.page-hero {
  background: #ffffff;
  padding: 100px 0 40px;
  min-height: 180px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: var(--red);
}

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

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
  max-width: 540px;
  line-height: 1.7;
}

/* ── SLIM PAGE HEADER (subpage replacement for page-hero) ── */
@keyframes flyInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-breadcrumb .breadcrumb {
  animation: fadeIn 0.5s ease 0s both;
}
.page-breadcrumb h1 {
  animation: flyInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.page-breadcrumb p {
  animation: flyInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
/* Desktop: wie vorher */
.page-breadcrumb {
  background: #ffffff;
  padding: calc(var(--nav-height, 60px) + 24px) 0 40px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.page-breadcrumb::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: var(--red);
  pointer-events: none;
}
.page-breadcrumb .breadcrumb {
  margin-bottom: 10px;
}
.page-breadcrumb h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--black);
  margin: 0;
}

.page-breadcrumb-watermark { display: none; }

/* Accessibility: visually hidden but readable by screen readers & search engines */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--red); }

.breadcrumb-sep { color: var(--red); font-weight: 700; }

/* ============================================================
   14. INTRO SECTION (2-column)
   ============================================================ */

.intro-section {
  padding: var(--section-padding);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }

.col-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-light);
  aspect-ratio: 4/3;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.col-content h2 {
  color: var(--red);
}

.col-content .btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   15. CATALOG PAGE
   ============================================================ */

.catalog-section {
  padding: var(--section-padding);
}

/* LinkedIn cards */
.linkedin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.linkedin-card { background: #fff; border: 1px solid var(--gray-light); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow 0.2s; }
.linkedin-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.linkedin-card-header { display: flex; align-items: center; gap: 10px; }
.linkedin-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gray-light); }
.linkedin-card-header strong { display: block; font-size: 0.82rem; color: var(--text); }
.linkedin-card-header span { font-size: 0.7rem; color: var(--text-muted); }
.linkedin-card-text { font-size: 0.82rem; line-height: 1.6; color: var(--text); flex: 1; }
.linkedin-card-link { font-size: 0.75rem; font-weight: 600; color: var(--red); text-decoration: none; letter-spacing: 0.02em; }
.linkedin-card-link:hover { text-decoration: underline; }
@media (max-width: 900px) { .linkedin-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .linkedin-grid { grid-template-columns: 1fr; } }

/* Datasheet list */
.datasheet-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-light); border-radius: 6px; overflow: hidden; }
.datasheet-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--gray-light); background: #fff; transition: background 0.18s; }
.datasheet-item:last-child { border-bottom: none; }
.datasheet-item:hover { background: var(--gradient-bg); }
.datasheet-info { display: flex; flex-direction: column; gap: 3px; }
.datasheet-category { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.datasheet-name { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.datasheet-placeholder { text-align: center; padding: 64px 24px; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.datasheet-placeholder p { font-size: 0.95rem; }
@media (max-width: 600px) {
  .datasheet-item { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* PDF Download box */
.pdf-download-box {
  background: var(--gradient-bg);
  border: 2px solid var(--gray-dark);
  border-radius: 6px;
  padding: 48px;
  text-align: center;
  margin-bottom: 64px;
}

.pdf-download-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pdf-download-box p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.pdf-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Filter buttons */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 3px;
  border: 2px solid var(--gray-dark);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.catalog-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
  border-color: var(--red);
}

.catalog-card[data-category] { display: block; }
.catalog-card.hidden { display: none; }

.catalog-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--gray-light);
}

.catalog-card-body {
  padding: 18px;
}

.catalog-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--black);
}

.catalog-card-norm {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

/* ============================================================
   16. SHOP PAGE
   ============================================================ */

.shop-info-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 20px 0;
}

.shop-info-banner p {
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
}

.pricing-table th {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr:nth-child(even) td {
  background: var(--gray-light);
}

.shop-placeholder {
  background: var(--gradient-bg);
  border: 2px dashed var(--gray-dark);
  border-radius: 6px;
  padding: 80px 40px;
  text-align: center;
  margin: 48px 0;
}

.shop-placeholder p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.shop-placeholder small {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-style: italic;
}

/* ── Shop: Section Intro ── */
.shop-grid-section {
  padding: 96px 0 112px;
  background: #f9f9f9;
}

.shop-section-intro {
  text-align: center;
  margin-bottom: 56px;
}

.shop-section-label {
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.shop-section-label::before,
.shop-section-label::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--red);
}

.shop-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.shop-section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Shop: Product Card Grid ── */
.shop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.26s ease, transform 0.26s ease;
  position: relative;
}

.shop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.shop-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

.shop-card:hover::before {
  transform: scaleX(1);
}

.shop-card-img {
  position: relative;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.shop-card-img svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
  transition: opacity 0.26s, transform 0.26s;
}

.shop-card:hover .shop-card-img svg {
  opacity: 0.7;
  transform: scale(1.06);
}

.shop-card-img-photo {
  background: #f9f9f9;
}

.shop-card-img-photo img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  display: block;
  transition: transform 0.28s ease;
}

.shop-card:hover .shop-card-img-photo img {
  transform: scale(1.05);
}

.shop-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.shop-card-body {
  padding: 28px 28px 20px;
  flex: 1;
}

.shop-card-category {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.shop-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.shop-card-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.shop-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-top: 1px solid #efefef;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: #fafafa;
  transition: background 0.2s, color 0.2s;
}

.shop-card:hover .shop-card-cta {
  background: var(--red);
  color: #fff;
}

.shop-card-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.22s;
  flex-shrink: 0;
}

.shop-card:hover .shop-card-cta svg {
  transform: translateX(5px);
}

/* ── Shop: Modals ── */
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shop-modal.is-visible {
  display: flex;
}

.shop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-modal.is-open .shop-modal-backdrop {
  opacity: 1;
}

.shop-modal-box {
  position: relative;
  background: #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 96px rgba(0,0,0,0.28), 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(28px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease;
}

.shop-modal.is-open .shop-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.shop-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  z-index: 1;
  transition: background 0.18s, color 0.18s;
}

.shop-modal-close:hover {
  background: var(--red);
  color: #fff;
}

.shop-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 460px;
}

.shop-modal-image {
  position: relative;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
  min-height: 340px;
}

.shop-modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 48px;
}

.shop-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 300px;
  display: block;
}

.shop-modal-img-placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.45;
}

.shop-modal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.shop-modal-info {
  padding: 48px 44px 40px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #efefef;
}

.shop-modal-label {
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.shop-modal-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.shop-modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.shop-modal-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.shop-modal-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #efefef;
  margin-top: auto;
}

/* ── Variants (shared by modal) ── */
.shop-variants {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.variant-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.variant-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-btn {
  padding: 7px 18px;
  border: 1.5px solid var(--gray-dark);
  background: transparent;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.variant-btn:hover { border-color: var(--red); color: var(--red); }

.variant-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.variant-colors { align-items: center; }

.variant-color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--swatch, #ccc);
  cursor: pointer;
  transition: transform 0.15s;
  outline: none;
}

.variant-color-btn:hover { transform: scale(1.12); }

.variant-color-btn.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--black);
}

.variant-color-label {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
}

.shop-price-note {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .shop-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-modal-inner {
    grid-template-columns: 1fr;
  }

  .shop-modal-image {
    border-radius: 4px 4px 0 0;
    min-height: 240px;
  }

  .shop-modal-info {
    padding: 32px 28px 32px;
    border-left: none;
    border-top: 1px solid #efefef;
  }

  .shop-modal-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .shop-card-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .shop-grid-section {
    padding: 64px 0 80px;
  }

  .shop-modal-info {
    padding: 24px 20px 24px;
  }

  .shop-modal-image {
    min-height: 200px;
  }
}

/* ============================================================
   17. ABOUT PAGE
   ============================================================ */

/* ── Über uns: Full-bleed split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-split-image {
  overflow: hidden;
  position: relative;
}

.about-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--black);
}

.about-split-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-pull-quote {
  border-left: 3px solid var(--red);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--red-light);
  border-radius: 0 4px 4px 0;
}

.about-pull-quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.7;
}

.about-pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Über uns: Werte ── */
.values-section {
  background: var(--gradient-bg);
  padding: var(--section-padding);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
}

.value-icon {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split-image {
    height: 320px;
  }
  .about-split-content {
    padding: 48px 24px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.quote-block {
  border-left: 4px solid var(--red);
  padding: 20px 28px;
  background: var(--red-light);
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
}

.quote-block blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-attribution {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.full-width-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background: var(--gray-light);
  display: block;
}

.full-width-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #d8d8d8 0%, #c0c0c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--text-light);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ============================================================
   18. CAREER PAGE
   ============================================================ */

.job-no-openings {
  padding: 48px 40px;
  border: 1px solid var(--gray-light);
  border-top: none;
  background: var(--white);
  text-align: center;
  margin-bottom: 32px;
}

.job-no-openings p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all var(--transition);
  margin-bottom: 16px;
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  transform: translateX(4px);
}

.job-card-info h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 6px;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.job-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--red);
}

.career-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h4 {
  color: var(--red);
  margin-bottom: 8px;
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 1px solid var(--gray-dark);
  padding: 20px 0;
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  flex-shrink: 0;
  border: 1px solid rgba(187,36,21,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-text {
  padding-top: 4px;
}

.contact-item-text strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-item-text,
.contact-item-text p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-item-text a {
  color: var(--text);
  transition: color var(--transition);
  font-size: 0.95rem;
}

.contact-item-text a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Contact form */
.contact-form {
  background: var(--gradient-bg);
  border-radius: 6px;
  padding: 40px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid #d8d8d8;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: transparent;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-size: 0.92rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--red);
  box-shadow: none;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--red);
  text-decoration: underline;
}

/* Map */
.map-section {
  background: var(--red);
  padding: 56px 0 56px;
}

.map-section-header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 36px;
}

.map-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.map-section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

.map-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 0;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.map-section-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  text-align: right;
}

.map-wrapper {
  overflow: hidden;
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 340px;
  border-radius: 4px;
  border: none;
  filter: grayscale(1) brightness(1.08) contrast(0.95);
}

/* ============================================================
   20. LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */

.legal-section {
  padding: 80px 0 120px;
  background: #f7f6f3;
}

.legal-content {
  max-width: 760px;
}

/* AGB Table of Contents */
.agb-toc {
  background: #f5f5f5;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.agb-toc h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 16px;
}

.agb-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 32px;
}

.agb-toc ol li {
  margin-bottom: 8px;
  break-inside: avoid;
  font-size: 0.9rem;
}

.agb-toc ol li a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
}

.agb-toc ol li a:hover {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .agb-toc ol {
    columns: 1;
  }
  .agb-toc {
    padding: 20px 20px;
  }
  .legal-section {
    padding: 48px 0 80px;
  }
  .legal-content h2 {
    font-size: 1.3rem;
  }
}

.legal-content h2 {
  font-size: 1.6rem;
  color: var(--red);
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin: 28px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--text);
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ============================================================
   20b. FOOTER WORDMARK DIVIDER
   ============================================================ */

.footer-wordmark-divider {
  background: linear-gradient(to bottom,
    var(--red) 38%,
    #ffffff 38%,
    #ffffff 65%,
    #1c1c1c 65%
  );
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.footer-wordmark-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  pointer-events: none;
  z-index: 0;
}

.footer-wordmark-svg {
  width: 120vw;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  margin-left: calc(-3.39vw - 376px);
}

/* Simple logo version — hidden on desktop, shown on mobile/tablet */
.footer-wordmark-simple {
  display: none;
}

/* Footer mobile logo — hidden on desktop */
.footer-mobile-logo {
  display: none;
}

@media (max-width: 1200px) {
  .footer-wordmark-divider {
    display: none;
  }
  .footer-mobile-logo {
    display: flex;
    justify-content: flex-start;
    padding: 0 0 20px;
  }
  .footer-mobile-logo img {
    height: 52px;
    width: auto;
  }
}

@media (max-width: 768px) {
  /* Hide complex SVG on mobile */
  .footer-wordmark-svg {
    display: none;
  }
  /* Hide wordmark divider completely on mobile */
  .footer-wordmark-divider {
    display: none;
  }
  /* Show logo above footer content */
  .footer-mobile-logo {
    display: flex;
    justify-content: flex-start;
    padding: 0 0 20px;
  }
  .footer-mobile-logo img {
    height: 44px;
    width: auto;
  }
}

/* ============================================================
   21. FOOTER
   ============================================================ */

.footer {
  background: #1c1c1c;
  color: rgba(255,255,255,0.75);
  position: relative;
}


.footer-body {
  padding: 48px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 60px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--red);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-social-link:hover {
  color: var(--red);
}

.footer-social-link svg {
  width: 28px;
  height: 28px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}

.footer-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  background: rgba(187,36,21,0.12);
  border: 1px solid rgba(187,36,21,0.2);
  border-radius: 8px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-cta-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-tagline {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 28px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--red);
}

/* ============================================================
   22. SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.from-left {
  transform: translateX(-30px);
}

.reveal.from-right {
  transform: translateX(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered delays for card grids */
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

/* ============================================================
   23. CTA SECTION
   ============================================================ */

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section.dark {
  background: var(--black);
}

.cta-section.dark h2 { color: var(--white); }
.cta-section.dark p { color: rgba(255,255,255,0.65); }

/* ============================================================
   24. NOTIFICATION / INFO BOXES
   ============================================================ */

.info-box {
  background: var(--red-light);
  border: 1px solid rgba(187,36,21,0.2);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text);
}

/* ============================================================
   25. MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .partners-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
    --nav-height: 60px;
  }

  /* Nav: hide desktop links on mobile, show hamburger */
  .nav-links,
  .nav-links-top {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-switcher {
    display: none; /* shown in panel instead */
  }

  /* Mobile nav: logo left, brand centered, hamburger right */
  .nav-inner { position: relative; }

  .nav-brand {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: 'Bebas Neue', var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.10em;
    color: var(--black);
    white-space: nowrap;
    pointer-events: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 32px 24px 0;
  }

  .hero-content { max-width: 100%; }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-visual {
    order: 1;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-slideshow {
    max-width: 100%;
    aspect-ratio: 1/1;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Grids → single column or 2-col */
  .products-grid,
  .categories-grid,
  .career-values { grid-template-columns: 1fr 1fr; gap: 16px; }

  .catalog-grid { grid-template-columns: 1fr 1fr; }

  .partners-logos { grid-template-columns: repeat(2, 1fr); }

  .two-col,
  .about-teaser-inner { grid-template-columns: 1fr; gap: 36px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .contact-form { padding: 24px; }

  .two-col.reversed { direction: ltr; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Hide nav column on mobile — hamburger replaces it */
  .footer-col-nav { display: none; }

  /* CTA bar: centered, prominent on mobile */
  .footer-cta-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 20px;
    border-color: rgba(255,255,255,0.12);
    background: rgba(187,36,21,0.12);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .parallax-banner { padding: 64px 0; }

  .page-hero { padding: 100px 0 48px; }

  /* Hide <br> in hero subtitle on mobile — wraps naturally */
  .hero-subtitle br { display: none; }

  /* Hide hero watermark on mobile — slideshow needs the space */
  .hero-watermark { display: none; }

  /* Scroll-Indikator ausblenden */
  .hero-scroll { display: none; }

  /* CTA Buttons im Hero etwas schlanker */
  .hero-cta .btn-lg {
    padding: 12px 28px;
    font-size: 0.88rem;
  }

  /* Interschutz banner: unten rechts auf Mobile */
  .interschutz-banner {
    top: auto;
    bottom: 24px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  /* ── MOBILE TYPOGRAFIE-SYSTEM ── */

  /* Page-Hero Überschriften (Unterseiten) */
  .page-hero h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  .page-hero p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* Section-Titel (h2 in Sektionen) */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  /* Section-Untertitel */
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.7;
  }

  /* Fließtext */
  p { line-height: 1.7; }

  /* Parallax Banner Text */
  .parallax-banner h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  /* Hide partner tickers on mobile */
  .about-teaser-stat--ticker,
  .about-partner-ticker,
  .partner-ticker { display: none; }

  /* "From our world": nur 2 Beiträge auf Mobile */
  .social-feed-card:nth-child(n+3) { display: none; }

  /* Section titles slightly smaller on mobile */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* FAQ sections: reduce padding on mobile */
  .faq-section { padding: 40px 0 !important; }

  /* Job spontaneous card: tighter on mobile */
  .job-spontaneous { padding: 28px 20px; }

  /* Scroll-to-top: avoid overlap with Interschutz banner */
  .scroll-top { bottom: 100px; right: 16px; }

}

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

  /* Stats: 2 columns on small phones (less cramped than 3) */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Parallax text smaller */
  .parallax-banner p { font-size: 1.05rem; }

  /* Page hero tighter */
  .page-hero { padding: 88px 0 36px; }

  /* Full-width images: reduce height on mobile */
  .full-width-img,
  .full-width-placeholder { height: 240px; }

  /* PDF download box: less padding */
  .pdf-download-box { padding: 28px 20px; margin-bottom: 40px; }

  /* Footer legal links: allow wrapping */
  .footer-legal-links { flex-wrap: wrap; gap: 12px 20px; justify-content: center; }
}

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

  .products-grid,
  .catalog-grid,
  .career-values { grid-template-columns: 1fr; }

  .partners-logos { grid-template-columns: 1fr 1fr; }

  .hero-cta { flex-direction: column; align-items: center; }

  .hero-title { font-size: 2.4rem; }

  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  .parallax-banner { padding: 48px 0; }
  .parallax-banner p { font-size: 1rem; margin-bottom: 28px; }

  /* Reset product image overscale on small phones */
  .hero-slide img,
  .prod-cat-card img,
  .kat-cat-card img { transform: none !important; }

}

@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .footer-cta-bar { padding: 20px 16px; }
}

/* ============================================================
   26. PRINT STYLES
   ============================================================ */

/* ── Job Detail Pages ── */
.job-detail-block {
  margin-bottom: 40px;
}

.job-detail-list {
  list-style: none;
  margin-top: 20px;
}

.job-detail-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
}

.job-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ── Scroll-to-Top Button ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-red);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   PRODUKTDATENBLÄTTER — Redesign
   ============================================================ */

/* Stats strip below hero */
.ds-stats-strip {
  background: var(--bg, #f7f6f3);
  padding: 24px 0;
}

.ds-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ds-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 40px;
}

.ds-stat-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

.ds-stat-label {
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.ds-stat-divider {
  width: 1px;
  height: 36px;
  background: #e0e0e0;
}

/* Main section */
.ds-section {
  padding: 80px 0 112px;
  background: #f4f3f0;
}

.ds-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

/* Filter tabs */
.ds-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.ds-filter-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  background: #fff;
  color: var(--text-light);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.ds-filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

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

/* Category group */
.ds-group {
  margin-bottom: 52px;
  transition: opacity 0.18s ease;
}
.ds-group.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.ds-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  line-height: 24px;
}

.ds-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Cards grid */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ds-card {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ds-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.ds-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.10);
}

.ds-card:hover::before {
  transform: scaleX(1);
}

.ds-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(187,36,21,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.ds-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ds-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.ds-card-norm {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-family: var(--font-body);
}

.ds-card-dl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 4px;
  padding: 8px 14px;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}

.ds-card:hover .ds-card-dl {
  background: var(--red);
  color: #fff;
}

/* CTA section */
.ds-cta-section {
  background: var(--bg-dark, #1a1a1a);
  padding: 80px 0;
}

.ds-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ds-cta-text {
  max-width: 560px;
}

.ds-cta-text .section-eyebrow {
  margin-bottom: 12px;
}

.ds-cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.ds-cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.ds-cta-section .section-eyebrow {
  color: var(--red);
}

/* Responsive */
@media (max-width: 900px) {
  .ds-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-stat { padding: 8px 24px; }
  .ds-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .ds-grid { grid-template-columns: 1fr; }
  .ds-stat-divider { display: none; }
  .ds-stats-inner { gap: 8px; }
  .ds-stat { padding: 6px 16px; }
}

/* ============================================================
   PRODUKTE & SERVICES — Redesign
   ============================================================ */

/* Intro 2-col */
.prod-intro-section {
  background: #fff;
  padding: 96px 0;
}

.prod-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.prod-intro-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.prod-intro-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-intro-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.prod-intro-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.prod-intro-content p {
  color: var(--text-light);
  line-height: 1.82;
  font-size: 1rem;
  margin: 0;
}

.prod-intro-content .btn-group {
  margin-top: 8px;
}

/* USP strip */
.prod-usp-strip {
  background: #111;
  padding: 0;
}

.prod-usp-inner {
  display: flex;
  align-items: stretch;
}

.prod-usp-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 44px;
}

.prod-usp-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 24px 0;
}

.prod-usp-icon {
  width: 52px;
  height: 52px;
  background: rgba(187,36,21,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.prod-usp-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prod-usp-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prod-usp-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Category section */
.prod-cat-section {
  background: #f9f9f9;
  padding: 96px 0 112px;
}

.prod-cat-intro {
  text-align: center;
  margin-bottom: 56px;
}

.prod-cat-intro .section-subtitle {
  margin: 12px auto 0;
}

.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-cat-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.prod-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: 1;
}

.prod-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
}

.prod-cat-card:hover::before {
  transform: scaleX(1);
}

.prod-cat-card-img-wrap {
  background: #f5f5f5;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.prod-cat-card-img-wrap img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.prod-cat-card:hover .prod-cat-card-img-wrap img {
  transform: scale(1.06);
}

.prod-cat-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.prod-cat-card-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-body);
}

.prod-cat-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.prod-cat-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.68;
  margin: 4px 0 8px;
  flex: 1;
}

.prod-cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.prod-cat-card:hover .prod-cat-card-link {
  gap: 10px;
}

/* Responsive */
@media (max-width: 960px) {
  .prod-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .prod-usp-inner { flex-direction: column; }
  .prod-usp-divider { width: 100%; height: 1px; margin: 0 24px; }
  .prod-usp-item { padding: 28px 32px; }
}

@media (max-width: 900px) {
  .prod-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .prod-cat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUKTKATALOG — Redesign
   ============================================================ */

.kat-section {
  padding: 80px 0 112px;
  background: #f4f3f0;
}

/* Featured download card */
.kat-featured {
  background: #111;
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 280px;
  margin-bottom: 72px;
  position: relative;
}

.kat-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.kat-featured-content {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kat-featured-content .section-eyebrow {
  color: var(--red);
}

.kat-featured-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0;
}

.kat-featured-content > p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  max-width: 460px;
}

.kat-featured-aside {
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 32px;
}

.kat-featured-aside-icon {
  width: 76px;
  height: 76px;
  background: rgba(255,255,255,0.14);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.kat-featured-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.kat-featured-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 0;
  width: 100%;
  text-align: center;
}

.kat-featured-stat-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.kat-featured-stat-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.kat-featured-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* Category section heading */
.kat-cat-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  line-height: 24px;
}

.kat-cat-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Category grid */
.kat-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kat-cat-card {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kat-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.kat-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.10);
}

.kat-cat-card:hover::before {
  transform: scaleX(1);
}

.kat-cat-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-body);
}

.kat-cat-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  flex: 1;
}

.kat-cat-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
}

.kat-cat-link {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.kat-cat-card:hover .kat-cat-link {
  gap: 10px;
}

/* Responsive */
@media (max-width: 960px) {
  .kat-featured { grid-template-columns: 1fr; }
  .kat-featured-aside {
    flex-direction: row;
    justify-content: center;
    padding: 28px 32px;
  }
  .kat-featured-stats { flex-direction: row; gap: 24px; }
  .kat-featured-stat { padding: 0 16px; }
  .kat-featured-stat-divider { width: 1px; height: 36px; }
}

@media (max-width: 900px) {
  .kat-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .kat-featured { grid-template-columns: 1fr; }
  .kat-featured-aside { display: none; }
  .kat-featured::before { display: none; }
  .kat-featured-content { padding: 36px 28px; border-right: none; }
}

@media (max-width: 560px) {
  .kat-cat-grid { grid-template-columns: 1fr; }
}

@media print {
  .navbar,
  .footer,
  .hero-cta,
  .btn,
  .nav-panel,
  .nav-overlay { display: none !important; }

  body { font-size: 12pt; color: #000; }

  .hero { min-height: auto; padding-top: 20px; }

  .page-hero { padding: 20px 0; min-height: auto; }

  a { text-decoration: underline; }

  .section-title { color: #000; }

  .stat-number { color: #000; }
}
