/* Inomess – Shared Design System v1 */
/* Marke: Graphit #22262B · Weiß · Amaranth-Rot #D81F35 (aus der RCD-Messbrücke) */

:root {
  --graphite:     #22262B;   /* dunkelster Anker: Hero-Overlay, Footer, CTA, Cookie-Modal */
  --graphite-2:   #2C3138;   /* etwas heller */
  --graphite-3:   #3A4048;
  --red:          #D81F35;   /* Marken-Amaranth-Rot: Buttons, Links, Akzente */
  --red-dark:     #A81528;   /* Hover / dunkler */
  --red-deep:     #7E0F1E;
  --red-bright:   #FF5A6B;   /* helle Variante für dunkle Hintergründe */
  --red-pale:     #FDECEE;   /* zarter Rot-Ton: Icon-BG, Tags */
  --red-glow:     216,31,53; /* RGB für Schatten */

  --gray-dark:    #363B41;
  --gray-mid:     #6A7078;
  --gray-light:   #F4F5F6;
  --gray-pale:    #F7F8F9;
  --border:       #D6D9DD;
  --border-light: #E7E9EC;
  --white:        #FFFFFF;
  --text:         #1B1E22;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; line-height: 1.75; font-size: 16px; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.03em; line-height: 1.2; color: var(--graphite); }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
img { display: block; max-width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s ease;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(34,38,43,.09); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
/* Logo ist weiß → im hellen Nav invertieren (dunkler Wortmarke) */
.nav-logo img { height: 34px; width: auto; filter: invert(1) brightness(.16); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem;
  color: var(--gray-dark); padding: 9px 15px; border-radius: 6px;
  transition: color .18s ease, background .18s ease;
  letter-spacing: .005em;
}
.nav-link:hover { color: var(--red); background: var(--red-pale); }
.nav-link.active { color: var(--red); background: var(--red-pale); }
.nav-phone {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--graphite); display: flex; align-items: center; gap: 7px;
  transition: color .2s ease;
}
.nav-phone:hover { color: var(--red); }
.nav-cta {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  background: var(--red); color: #fff; padding: 10px 22px; border-radius: 6px;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  margin-left: 8px; box-shadow: 0 2px 10px rgba(var(--red-glow),.28);
}
.nav-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(var(--red-glow),.35); }
.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger-line {
  display: block; width: 22px; height: 2px; background: var(--graphite);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease; margin-bottom: 5px;
}
.hamburger-line:last-child { margin-bottom: 0; }
.hamburger-btn.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border-light); padding: 16px 24px 24px; }
#mobile-menu.open { display: block; max-height: calc(100dvh - 84px); overflow-y: auto; }
.mobile-nav-link {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .97rem; color: var(--gray-dark); padding: 14px 0;
  border-bottom: 1px solid var(--border-light); transition: color .18s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--red); }

/* ============================================================
   MEGA-MENÜ (Produkte-Dropdown, klick-basiert)
   ============================================================ */
#nav .nav-inner { position: relative; }
.nav-dd { display: inline-flex; }
.nav-dd-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem;
  color: var(--gray-dark); padding: 9px 15px; border-radius: 6px;
  background: none; border: none; cursor: pointer; letter-spacing: .005em;
  transition: color .18s ease, background .18s ease;
}
.nav-dd-trigger:hover, .nav-dd.open .nav-dd-trigger { color: var(--red); background: var(--red-pale); }
.nav-dd-trigger.active { color: var(--red); background: var(--red-pale); }
.nav-dd-caret { transition: transform .25s ease; }
.nav-dd.open .nav-dd-caret { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(880px, 94vw); max-width: calc(100vw - 40px);
  background: #fff; border: 1px solid var(--border-light); border-radius: 16px;
  box-shadow: 0 30px 70px rgba(34,38,43,.18), 0 6px 18px rgba(0,0,0,.05);
  padding: 22px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s cubic-bezier(.16,1,.3,1); z-index: 200;
}
.nav-dd.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 0.92fr; gap: 4px 22px; }
.mega-head { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin: 4px 0 8px 12px; }
.mega-head.mt { margin-top: 16px; }
.mega-item { padding: 9px 12px; border-radius: 10px; transition: background .18s ease; }
.mega-item:hover { background: var(--gray-pale); }
.mega-item-main { display: block; }
.mega-item-title { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; color: var(--graphite); }
.mega-item-title .art { font-weight: 600; font-size: .68rem; color: var(--gray-mid); }
.mega-item-sub { display: block; font-size: .75rem; color: var(--gray-mid); margin-top: 2px; }
.mega-sublinks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.mega-sublinks a { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .7rem; color: var(--gray-mid); padding: 3px 9px; border: 1px solid var(--border-light); border-radius: 6px; transition: color .18s ease, border-color .18s ease, background .18s ease; }
.mega-sublinks a:hover { color: var(--red); border-color: var(--red); background: var(--red-pale); }
.mega-feature { background: linear-gradient(160deg, var(--graphite) 0%, #2E3338 100%); border-radius: 12px; padding: 20px; color: #fff; display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; }
.mega-feature-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 8px; }
.mega-feature-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; line-height: 1.25; margin-bottom: 8px; }
.mega-feature-text { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 16px; }
.mega-feature-links { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.mega-feature-links a { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .78rem; color: rgba(255,255,255,.9); transition: color .18s ease, gap .18s ease; }
.mega-feature-links a:hover { color: var(--red-bright); gap: 11px; }
.mega-feature-links svg { color: var(--red-bright); flex-shrink: 0; }

/* Mobile-Akkordeon (Produkte im mobilen Menü) */
.m-acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .97rem; color: var(--gray-dark);
  padding: 14px 0; border: none; border-bottom: 1px solid var(--border-light);
  background: none; cursor: pointer; text-align: left; transition: color .18s ease;
}
.m-acc-trigger:hover { color: var(--red); }
.m-acc-caret { transition: transform .3s ease; flex-shrink: 0; color: var(--red); }
.m-acc.open .m-acc-caret { transform: rotate(180deg); }
.m-acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.16,1,.3,1); }
.m-acc.open .m-acc-panel { max-height: 640px; }
.m-acc-panel a { display: block; font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--gray-mid); padding: 11px 0 11px 16px; border-bottom: 1px solid var(--border-light); transition: color .18s ease; }
.m-acc-panel a:hover { color: var(--red); }
.m-acc-panel a.m-acc-all { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--graphite); }

@media (max-width: 1024px) { .nav-dd { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem;
  padding: 12px 26px; border-radius: 7px; border: none; cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .18s cubic-bezier(.16,1,.3,1), box-shadow .2s ease;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 2px 12px rgba(var(--red-glow),.3); }
.btn-primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 6px 22px rgba(var(--red-glow),.4); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-dark { background: var(--graphite); color: #fff; box-shadow: 0 2px 12px rgba(34,38,43,.28); }
.btn-dark:hover { background: #000; color: #fff; }
.btn-white { background: #fff; color: var(--graphite); box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--gray-light); color: var(--graphite); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-ghost-white {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.92);
  border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.4); }

/* ============================================================
   LAYOUT
   ============================================================ */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 110px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.section-title { font-size: 2.15rem; font-weight: 800; color: var(--graphite); margin-bottom: 16px; }
.section-title-lg { font-size: 2.6rem; }
.section-lead { font-size: 1.08rem; color: var(--gray-mid); line-height: 1.75; max-width: 620px; }
.section-divider { width: 40px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 28px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 28px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
}
.card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 34px rgba(var(--red-glow),.12), 0 2px 8px rgba(0,0,0,.05);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 11px;
  background: var(--red-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.tag {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 5px; background: var(--red); color: #fff;
}
.tag-soft { background: var(--red-pale); color: var(--red-dark); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.sr-active .sr { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.sr-active .sr.in { opacity: 1; transform: none; }
.sr-active .sr.delay-1 { transition-delay: .1s; }
.sr-active .sr.delay-2 { transition-delay: .2s; }
.sr-active .sr.delay-3 { transition-delay: .3s; }
.sr-active .sr.delay-4 { transition-delay: .4s; }
.sr-active .sr.delay-5 { transition-delay: .5s; }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero { background: var(--graphite); padding: 118px 0 72px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,22,26,0.95) 0%, rgba(34,38,43,0.88) 45%, rgba(34,38,43,0.72) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-title { font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.page-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; line-height: 1.75; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 22px; font-family: 'Montserrat', sans-serif; }
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-red { color: var(--red); }
.text-graphite { color: var(--graphite); }
.text-gray { color: var(--gray-mid); }
.bg-light { background: var(--gray-light); }
.bg-pale { background: var(--gray-pale); }
.bg-graphite { background: var(--graphite); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--graphite); color: rgba(255,255,255,.7); position: relative; overflow: hidden; }
.footer a { color: rgba(255,255,255,.65); transition: color .2s ease; }
.footer a:hover { color: #fff; }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.4); position: relative; z-index: 2;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }
.footer-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .9rem; }
.footer-link-btn {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .18s ease;
}
.footer-link-btn:hover { color: #fff; }

/* ============================================================
   COOKIE CONSENT MODAL (DSGVO)
   ============================================================ */
.cookie-overlay {
  position: fixed; inset: 0; z-index: 10000; background: rgba(20,22,26,.8);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.cookie-overlay.visible { opacity: 1; pointer-events: all; }
.cookie-overlay.hidden { display: none !important; }
.cookie-modal {
  background: var(--graphite); border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: 36px 40px; max-width: 640px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,.55);
  max-height: 92vh; overflow-y: auto;
}
.cookie-modal h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 10px; letter-spacing: -.02em; }
.cookie-modal-desc { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 26px; }
.cookie-cats { border: 1px solid rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; margin-bottom: 26px; }
.cookie-cat { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem; color: #fff; margin-bottom: 4px; }
.cookie-cat-desc { font-size: .78rem; color: rgba(255,255,255,.48); line-height: 1.5; }
.cookie-always-on { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem; color: rgba(255,255,255,.38); letter-spacing: .04em; white-space: nowrap; flex-shrink: 0; }
.cookie-toggle-label { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle-input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,.14); border-radius: 26px; transition: background .25s ease; }
.cookie-toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform .25s cubic-bezier(.16,1,.3,1); }
.cookie-toggle-input:checked + .cookie-toggle-slider { background: var(--red); }
.cookie-toggle-input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-primary { flex: 2; min-width: 140px; background: var(--red); color: #fff; border: none; border-radius: 7px; padding: 13px 20px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; cursor: pointer; transition: background .2s ease, transform .15s ease; }
.cookie-btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.cookie-btn-secondary { flex: 1; min-width: 110px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.14); border-radius: 7px; padding: 13px 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .82rem; cursor: pointer; transition: background .2s ease, color .2s ease; }
.cookie-btn-secondary:hover { background: rgba(255,255,255,.16); color: #fff; }
.cookie-modal-footer { font-size: .75rem; color: rgba(255,255,255,.38); margin-top: 16px; text-align: center; }
.cookie-modal-footer a { color: var(--red-bright); }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-wrap { background: var(--graphite); padding: 12px 0; overflow: hidden; position: relative; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--graphite), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--graphite), transparent); }
.ticker-track { display: inline-flex; white-space: nowrap; animation: tickerScroll 42s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 38px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .82rem; color: rgba(255,255,255,.9); letter-spacing: .01em; }
.ticker-item svg { flex-shrink: 0; color: var(--red-bright); }
.ticker-sep { color: rgba(255,255,255,.22); font-size: .55rem; padding: 0 4px; line-height: 1; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CIRCUIT DECORATION (Schaltkreis / Platinen-Muster)
   ============================================================ */
.circuit-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.circuit-deco svg { position: absolute; width: 100%; height: 100%; }
.circuit-trace { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1.4; }
.circuit-node { fill: rgba(255,255,255,.55); }
.circuit-node-red { fill: var(--red-bright); }
.circuit-pad { fill: none; stroke: rgba(255,255,255,.4); stroke-width: 1.4; }
/* dezente Puls-Animation an Knotenpunkten */
@keyframes nodePulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.circuit-node-red { animation: nodePulse 3.2s ease-in-out infinite; }
.circuit-node-red.d1 { animation-delay: .6s; }
.circuit-node-red.d2 { animation-delay: 1.2s; }
.circuit-node-red.d3 { animation-delay: 1.8s; }
.circuit-node-red.d4 { animation-delay: 2.4s; }

/* ============================================================
   PRODUKT-DETAILSEITE (PDP)
   ============================================================ */
.pdp-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pdp-media { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 36px; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 44px rgba(34,38,43,.10); position: relative; min-height: 360px; }
.pdp-media img { max-width: 100%; max-height: 380px; width: auto; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(34,38,43,.18)); }
.pdp-media .tag { position: absolute; top: 18px; left: 18px; }
.pdp-art { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .08em; color: var(--red); background: var(--red-pale); padding: 5px 12px; border-radius: 6px; margin-bottom: 16px; }
.pdp-title { font-size: 1.9rem; font-weight: 800; color: var(--graphite); margin-bottom: 14px; letter-spacing: -.02em; }
.pdp-lead { color: var(--gray-mid); line-height: 1.75; margin-bottom: 22px; }
.pdp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pdp-chip { display: flex; align-items: center; gap: 7px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .78rem; color: var(--graphite); background: var(--gray-pale); border: 1px solid var(--border-light); border-radius: 100px; padding: 7px 14px; }
.pdp-chip svg { color: var(--red); flex-shrink: 0; }
.pdp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.pdp-nav { display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--border-light); padding-top: 22px; }
.pdp-nav a { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; color: var(--gray-dark); padding: 8px 14px; border-radius: 7px; background: var(--gray-pale); transition: color .18s ease, background .18s ease; }
.pdp-nav a:hover { color: #fff; background: var(--red); }
.pdp-spec { width: 100%; border-collapse: collapse; border: 1px solid var(--border-light); border-radius: 12px; overflow: hidden; }
.pdp-spec tr { border-bottom: 1px solid var(--border-light); }
.pdp-spec tr:last-child { border-bottom: none; }
.pdp-spec th { text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .86rem; color: var(--graphite); padding: 14px 20px; width: 42%; background: var(--gray-pale); vertical-align: top; }
.pdp-spec td { padding: 14px 20px; font-size: .9rem; color: var(--gray-mid); vertical-align: top; }
.pdp-spec th, .pdp-spec td { overflow-wrap: anywhere; }
.pdp-dl { display: grid; gap: 12px; }
.pdp-dl-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 16px 20px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; text-decoration: none; min-width: 0; }
.pdp-dl-row:hover { border-color: var(--red); box-shadow: 0 10px 26px rgba(216,31,53,.10); transform: translateY(-2px); }
.pdp-dl-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--red-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.pdp-dl-meta { flex: 1; min-width: 0; }
.pdp-dl-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem; color: var(--graphite); overflow-wrap: anywhere; }
.pdp-dl-sub { font-size: .76rem; color: var(--gray-mid); margin-top: 2px; }
.pdp-dl-cta { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; color: var(--red); display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
/* Leerzustand: Produkt hat (noch) keine Dokumente im Downloadcenter */
.pdp-dl-empty { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--gray-pale); border: 1px dashed var(--border-light); border-radius: 14px; padding: 24px 26px; }
.pdp-dl-empty-icon { width: 48px; height: 48px; border-radius: 12px; background: #fff; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.pdp-dl-empty-body { flex: 1; min-width: 200px; }
.pdp-dl-empty-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--graphite); margin-bottom: 4px; }
.pdp-dl-empty-body p { font-size: .92rem; color: var(--gray-mid); line-height: 1.6; }
.pdp-video { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(150deg, var(--graphite), #2E3338); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-light); }
.pdp-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.pdp-video-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; color: #fff; text-align: center; padding: 20px; }
.pdp-video-play { width: 74px; height: 74px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(216,31,53,.5); transition: transform .2s ease; cursor: pointer; }
.pdp-video-inner:hover .pdp-video-play { transform: scale(1.07); }
.pdp-video-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; }
.pdp-video-sub { font-size: .82rem; color: rgba(255,255,255,.6); }
.pdp-related { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pdp-rel-card { border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; background: #fff; transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.16,1,.3,1); display: block; }
.pdp-rel-card:hover { border-color: var(--red); box-shadow: 0 14px 34px rgba(216,31,53,.12); transform: translateY(-4px); }
.pdp-rel-media { height: 160px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 18px; border-bottom: 1px solid var(--border-light); }
.pdp-rel-media img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(34,38,43,.16)); }
.pdp-rel-body { padding: 16px 20px 20px; }
.pdp-rel-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .98rem; color: var(--graphite); margin-bottom: 4px; }
.pdp-rel-sub { font-size: .8rem; color: var(--gray-mid); }
@media (max-width: 900px) { .pdp-overview { grid-template-columns: 1fr; gap: 32px; } .pdp-related { grid-template-columns: 1fr; } }

/* ============================================================
   360°-SPIN-VIEWER (eigene, schlanke Umsetzung)
   ============================================================ */
.spin360 { position: relative; width: 100%; aspect-ratio: 1 / 1; touch-action: pan-y; cursor: grab; user-select: none; -webkit-user-select: none; overflow: hidden; }
.spin360.dragging { cursor: grabbing; }
.spin360-img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; -webkit-user-drag: none; display: block; }
.spin360-loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.spin360.ready .spin360-loader { display: none; }
.spin360-loader::after { content: ''; width: 34px; height: 34px; border: 3px solid rgba(34,38,43,.15); border-top-color: var(--red); border-radius: 50%; animation: spin360rot .8s linear infinite; }
@keyframes spin360rot { to { transform: rotate(360deg); } }
.spin360-hint { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; color: var(--gray-dark); background: rgba(255,255,255,.85); border: 1px solid var(--border-light); border-radius: 100px; padding: 5px 12px; pointer-events: none; opacity: 0; transition: opacity .3s ease; backdrop-filter: blur(4px); white-space: nowrap; }
.spin360.ready .spin360-hint { opacity: 1; }
.spin360.dragging .spin360-hint { opacity: 0; }
.spin360-hint svg { color: var(--red); flex-shrink: 0; }
.spin360-badge { position: absolute; top: 10px; right: 10px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .62rem; letter-spacing: .08em; color: #fff; background: var(--red); border-radius: 100px; padding: 4px 10px; pointer-events: none; box-shadow: 0 4px 12px rgba(216,31,53,.35); }
/* Variante im Hero: weißes Produkt-Fenster auf der Glaskarte */
.spin360--card { background: #fff; border-radius: 14px; }

/* ============================================================
   CTA-SECTION (dunkel, vor dem Footer) – zentral für alle Seiten
   ============================================================ */
.cta-section { position: relative; overflow: hidden; background: var(--graphite); }
.cta-bg { position: absolute; inset: 0; background-image: url('images/team/customer-service.jpg'); background-size: cover; background-position: center 30%; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,22,26,.96) 0%, rgba(34,38,43,.9) 48%, rgba(126,15,30,.72) 100%); }
.cta-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding: 70px 0; }
@media (max-width: 640px) { .cta-inner { flex-direction: column; text-align: center; padding: 54px 0; } }

/* ============================================================
   FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .82rem; color: var(--graphite); margin-bottom: 7px; }
.form-input { width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: 7px; font-size: .93rem; font-family: 'Inter', sans-serif; color: var(--text); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(var(--red-glow),.12); }
.form-input::placeholder { color: #9CA3AF; }

/* ============================================================
   HERO ANIMATIONS
   ============================================================ */
@keyframes heroZoom   { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY     { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger-btn { display: flex; flex-direction: column; }
  .section-title-lg { font-size: 1.9rem; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .section-title-lg { font-size: 1.6rem; }
  .page-hero { padding: 100px 0 52px; }
  .page-hero-title { font-size: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px 24px !important; }
  .cookie-modal { padding: 24px 20px; max-width: 100%; border-radius: 12px; }
  .cookie-modal-actions { flex-direction: column; gap: 10px; }
  .cookie-btn-primary, .cookie-btn-secondary { flex: none; width: 100%; text-align: center; justify-content: center; }
  /* Produktseiten/Downloads: kein horizontales Überlaufen auf Mobil */
  .pdp-spec { table-layout: fixed; }
  .pdp-spec th, .pdp-spec td { padding: 12px 14px; }
  .pdp-dl-row { padding: 14px 15px; gap: 13px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .page-hero-title { font-size: 1.7rem; }
  .page-hero { padding: 90px 0 44px; }
  .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn { font-size: .88rem; padding: 12px 20px; }
  .card { padding: 20px; }
  /* Download-Zeilen: CTA in eigene Zeile, Titel bekommt volle Breite (kein Mittelwort-Umbruch) */
  .pdp-dl-row { flex-wrap: wrap; }
  .pdp-dl-cta { flex-basis: 100%; justify-content: flex-end; margin-top: 2px; }
  .cookie-overlay { align-items: flex-end; padding: 0; }
  .cookie-modal { border-radius: 16px 16px 0 0; max-height: 88vh; overflow-y: auto; }
}
