/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LUMINEA HANDEL â€” Professional Clean Stylesheet
   Fonts: Advent Pro + Montserrat
   Palette: White Â· Light Grey Â· Charcoal Â· Black
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Tokens â”€â”€ */
:root {
  --white:      #ffffff;
  --off-white:  #f7f7f5;
  --light:      #efefed;
  --mid:        #d0d0cc;
  --muted:      #9a9a96;
  --dark-muted: #6b6b67;
  --charcoal:   #2a2a28;
  --near-black: #141412;
  --black:      #0a0a09;

  --accent:     #1a1a1a;

  --font-display: 'Advent Pro', 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --radius:   6px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);
}

/* â”€â”€ Reset â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--near-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* â”€â”€ Scrollbar â”€â”€ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--charcoal); border-radius: 99px; }

/* â”€â”€ Utility â”€â”€ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  transition: background var(--t), box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: 0 1px 0 var(--light);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.7; }

.logo-mark {
  width: 28px; height: 28px;
  color: var(--near-black);
}
.logo-mark svg { width: 100%; height: 100%; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--near-black);
}

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

.nav-link {
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark-muted);
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--near-black); }

.nav-link.nav-cta {
  background: var(--near-black);
  color: var(--white);
  margin-left: 8px;
}
.nav-link.nav-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

.nav-line {
  height: 1px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.nav-line-inner {
  position: absolute;
  top: 0; left: -100%; right: 100%;
  height: 100%;
  background: var(--near-black);
  transition: left 0.8s var(--ease), right 0.8s var(--ease);
}
.navbar.scrolled .nav-line-inner { left: 0; right: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--near-black);
  border-radius: 99px;
  transition: var(--t);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 68px;
}

.hero-photo-col {
  position: relative;
  overflow: hidden;
  background: var(--light);
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s var(--ease);
}

.hero-photo-col:hover .hero-photo {
  transform: scale(1.03);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,9,0.08) 0%, transparent 60%);
}

.hero-tech-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tech-svg {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}

/* Black block top-left like reference */
.hero-photo-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 160px; height: 220px;
  background: var(--near-black);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.hero-photo-col::after {
  content: 'LUMINEA';
  position: absolute;
  top: 32px; left: 28px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.hero-content-col {
  background: var(--near-black);
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero-content-col::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 280px; height: 200px;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

.hero-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--mid);
  font-weight: 300;
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--white);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), transform var(--t);
}
.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: transparent;
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: border-color var(--t), color var(--t), transform var(--t);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-grid-deco {
  margin-top: 48px;
  opacity: 0.4;
}
.hero-grid-deco svg { width: 200px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BRANDS STRIP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.brands-strip {
  background: var(--off-white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 0 40px;
}

.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
  overflow: hidden;
}

.brand-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.brands-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  transition: color var(--t);
  cursor: default;
}
.brand-item:hover { color: var(--near-black); }

/* â•â•â• TECH MARQUEE â•â•â• */
.tech-marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  background: #fff;
  overflow: hidden;
}

.tech-marquee-label {
  text-align: center;
  margin-bottom: 24px;
}
.tech-marquee-label span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--near-black);
}

.tech-marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.tech-marquee-fade-left,
.tech-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.tech-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.tech-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.tech-marquee-track-outer {
  overflow: hidden;
}

.tech-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: techScroll 80s linear infinite;
}
.tech-marquee-track:hover { animation-play-state: paused; }

@keyframes techScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each tech item */
.tmi {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid #eaeaea;
  white-space: nowrap;
  transition: background 0.2s;
  cursor: default;
}
.tmi:hover { background: #f8f8f6; }

.tmi img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.tmi-bg-dark {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 3px;
  width: 28px !important;
  height: 28px !important;
}

.tmi span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

/* Alte Tech-Strip Klassen (rÃ¼ckwÃ¤rtskompatibel) */
.tech-strip { display: none; }

.brand-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--mid);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION SHARED
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-tag-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tag-line-bar {
  width: 28px; height: 2px;
  background: var(--near-black);
}

.section-tag-line.light .tag-line-bar { background: var(--white); }

.tag-line-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-tag-line.light .tag-line-text { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--near-black);
  margin-bottom: 14px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 0.92rem;
  color: var(--dark-muted);
  line-height: 1.65;
  max-width: 480px;
}

.section-header {
  margin-bottom: 60px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light);
  border: 1px solid var(--light);
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background var(--t);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card:hover {
  background: var(--off-white);
}

.svc-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-bottom: 20px;
}

.svc-icon {
  width: 40px; height: 40px;
  color: var(--near-black);
  margin-bottom: 18px;
}
.svc-icon svg { width: 100%; height: 100%; }

.svc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--near-black);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--dark-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.svc-list li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.svc-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--mid);
  font-size: 0.75rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUKTE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.products {
  padding: 100px 0;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  min-height: 500px;
}

.products-left {
  padding: 80px 60px 80px 40px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--light);
}

.products-right {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-row {
  display: grid;
  grid-template-columns: 64px 1fr 48px;
  align-items: center;
  gap: 0;
  padding: 36px 48px;
  border-bottom: 1px solid var(--light);
  background: var(--off-white);
  transition: background var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.product-row:last-child { border-bottom: none; }
.product-row:hover { background: var(--white); }
.product-row:hover .product-arrow { opacity: 1; transform: translateX(0); }

.product-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mid);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--near-black);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--dark-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6192BA;
  border: 1px solid #dcdcdc;
  padding: 4px 12px;
  border-radius: 3px;
}

.product-arrow {
  width: 32px; height: 32px;
  color: var(--charcoal);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t), transform var(--t);
}
.product-arrow svg { width: 100%; height: 100%; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ÃœBER UNS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 0.9rem;
  color: var(--dark-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light);
}

.val-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light);
  transition: background var(--t);
}

.val-line {
  width: 2px;
  height: 44px;
  background: var(--near-black);
  flex-shrink: 0;
  margin-top: 2px;
  transition: height var(--t);
}

.val-item:hover .val-line { height: 56px; }

.val-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.val-content p {
  font-size: 0.82rem;
  color: var(--dark-muted);
  line-height: 1.6;
  margin: 0;
}

/* About Visual */
.about-visual {
  position: relative;
  display: grid;
  grid-template-rows: 260px 120px;
  gap: 16px;
}

.about-block-main {
  background: var(--near-black);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-block-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-block-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ab-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ab-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.about-block-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-mini-block {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.about-mini-block.dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.mini-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--near-black);
  line-height: 1;
}

.about-mini-block.dark .mini-num { color: var(--white); }

.mini-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-mini-block.dark .mini-label { color: rgba(255,255,255,0.4); }

.about-tech-deco {
  position: absolute;
  top: 50%; right: -30px;
  transform: translateY(-50%);
  width: 120px; height: 120px;
  opacity: 0.5;
  pointer-events: none;
}
.about-tech-deco svg { width: 100%; height: 100%; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TEAM â€” Revolutionary Editorial Style
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.team-strip {
  margin-top: 72px;
  padding-top: 0;
  border-top: none;
}

.team-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light);
}

/* Full-width split panel */
.team-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 380px;
  border: 1px solid var(--light);
  border-top: none;
  overflow: hidden;
}

/* Vertical divider */
.team-divider {
  width: 1px;
  background: var(--light);
  position: relative;
}
.team-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: var(--near-black);
  border-radius: 50%;
}

/* Each person panel */
.team-person {
  position: relative;
  padding: 48px 52px;
  overflow: hidden;
  background: var(--white);
  transition: background var(--t);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team-person:hover { background: var(--off-white); }

/* Ghost initials â€” massive background text */
.team-person-ghost {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 11rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: -webkit-text-stroke-color var(--t);
}
.team-person:hover .team-person-ghost {
  -webkit-text-stroke-color: var(--mid);
}

/* Index number top-left */
.team-person-index {
  position: absolute;
  top: 32px;
  left: 52px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mid);
}

/* Content bottom-left */
.team-person-content {
  position: relative;
  z-index: 1;
}

.team-person-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.team-person-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--near-black);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.team-person-line {
  width: 32px;
  height: 2px;
  background: var(--near-black);
  margin-bottom: 14px;
  transition: width var(--t);
}
.team-person:hover .team-person-line { width: 56px; }

.team-person-desc {
  font-size: 0.84rem;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}

@media (max-width: 900px) {
  .team-duo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .team-divider {
    width: 100%; height: 1px;
  }
  .team-divider::before {
    top: 50%; left: 50%;
  }
  .team-person { padding: 40px 32px; min-height: 280px; }
  .team-person-ghost { font-size: 7rem; top: -10px; right: -5px; }
  .team-person-index { left: 32px; }
  .team-person-name { font-size: 2rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KONTAKT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact {
  background: var(--near-black);
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-inner {
  display: contents;
}

.contact-left {
  padding: 80px 60px 80px 40px;
  max-width: 100%;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.contact-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cd-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cd-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.cd-icon svg { width: 17px; height: 17px; }

.cd-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 3px;
}

.cd-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
}
a.cd-value:hover { color: var(--white); }

.contact-right {
  padding: 80px 40px 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta-box {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--t), border-color var(--t);
}

.contact-cta-box:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.cta-box-deco {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  pointer-events: none;
}
.cta-box-deco svg { width: 100%; height: 100%; }

.cta-box-content { position: relative; z-index: 1; }

.cta-overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--white);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--t), transform var(--t);
}
.cta-btn svg { width: 17px; height: 17px; transition: transform var(--t); }
.cta-btn:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.cta-btn:hover svg { transform: translateX(4px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer { background: var(--black); }

.footer-top {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-link { margin-bottom: 16px; display: inline-flex; color: var(--white); }
.footer-logo-link .logo-mark { color: var(--white); }
.footer-logo-icon { color: var(--white) !important; }
.footer-logo-text {
  color: var(--white) !important;
  opacity: 1 !important;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 280px;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }
.f-muted { font-size: 0.83rem; color: rgba(255,255,255,0.5); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1100px) {
  .hero              { grid-template-columns: 1fr; }
  .hero-photo-col    { height: 45vh; min-height: 300px; }
  .hero-content-col  { padding: 60px 40px; }
  .products          { grid-template-columns: 1fr; }
  .products-left     { border-right: none; border-bottom: 1px solid var(--light); padding: 60px 40px 40px; }
  .product-row       { padding: 28px 40px; }
  .contact           { grid-template-columns: 1fr; }
  .contact-left      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 60px 40px; }
  .contact-right     { padding: 60px 40px; }
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-inner         { padding: 0 24px; }
  .nav-links         {
    display: none; flex-direction: column; position: absolute;
    top: 69px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    padding: 16px 24px;
    gap: 2px;
  }
  .nav-links.open    { display: flex; }
  .hamburger         { display: flex; }
  .services-grid     { grid-template-columns: 1fr; }
  .brands-inner      { gap: 24px; overflow-x: auto; }
  .hero-content-col  { padding: 48px 24px; }
  .contact-left,
  .contact-right     { padding: 48px 24px; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .container         { padding: 0 24px; }
  .products-left     { padding: 48px 24px 32px; }
  .product-row       { padding: 24px; grid-template-columns: 48px 1fr 40px; }
}

/* â•â•â• MEGA OVERVIEW â•â•â• */
.mega-overview {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.mega-header { margin-bottom: 48px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.mega-col {
  padding: 36px 28px;
  border-right: 1px solid #e8e8e8;
}
.mega-col:last-child { border-right: none; }
.mega-col-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--near-black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--near-black);
}
.mega-group { margin-bottom: 22px; }
.mega-group-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}
.mega-item {
  display: block;
  font-size: 0.83rem;
  color: #3a3a3a;
  padding: 4px 0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s, padding-left 0.18s;
  line-height: 1.5;
}
.mega-item:hover { color: #111; padding-left: 6px; }
.mega-item--accent { color: #1a4fff; font-weight: 500; }
.mega-item--accent:hover { color: #0030cc; }

@media (max-width: 960px) {
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .mega-col { border-right: none; border-bottom: 1px solid #e8e8e8; }
  .mega-col:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  .mega-grid { grid-template-columns: 1fr; }
}

/* â•â•â• FAQ SECTION â•â•â• */
.faq-section {
  padding: 80px 0;
  background: #fafaf9;
}
.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.faq-header .section-tag-line { justify-content: center; }
.faq-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e2e2e2;
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid #e2e2e2; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
  padding-left: 2px;
}
.faq-a strong { color: var(--near-black); }

/* Brand Logo in Product Row */
.product-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-logo-wrap span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--near-black);
  text-transform: uppercase;
}
.product-logo-wrap strong {
  font-weight: 900;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #0077B5;
  color: #fff;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #0077B5;
}
.footer-social-link:hover {
  background: #005983;
  color: #fff;
  border-color: #005983;
}

/* Red Accent for Mini Block */
.about-mini-block.accent-red {
  background: #c0392b;
  border-color: #e74c3c;
}
.about-mini-block.accent-red .mini-num {
  color: #ffffff;
}
.about-mini-block.accent-red .mini-label {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   RECHTLICHE SEITEN (DATENSCHUTZ & IMPRESSUM)
   ========================================= */
.ds-page {
  padding: 140px 5% 80px 5%;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
  font-family: var(--font-body);
}

.ds-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}
.ds-back:hover {
  color: var(--primary);
}
.ds-back svg {
  width: 18px;
  height: 18px;
}

.ds-header {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
.ds-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
}
.ds-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ds-meta {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.ds-law-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ds-law-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  color: var(--text-dim);
}

.ds-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 60px;
}
.ds-toc-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text);
}
.ds-toc-list {
  columns: 2;
  column-gap: 40px;
  padding-left: 20px;
}
.ds-toc-list li {
  margin-bottom: 10px;
}
.ds-toc-list a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.ds-toc-list a:hover {
  color: var(--primary);
}

.ds-section {
  margin-bottom: 60px;
  position: relative;
}
.ds-section-num {
  position: absolute;
  left: -50px;
  top: 5px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--border);
}
.ds-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}
.ds-text {
  margin-bottom: 20px;
  color: var(--text-dim);
}
.ds-list {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-dim);
}
.ds-list li {
  margin-bottom: 10px;
}
.ds-list li strong {
  color: var(--text);
}

.ds-highlight {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}
.ds-highlight p {
  margin: 0;
  color: var(--text);
  font-style: italic;
}

.ds-contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}
.ds-contact-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.ds-contact-box p {
  color: var(--text-dim);
  margin-bottom: 5px;
}
.ds-contact-box a {
  color: var(--primary);
  text-decoration: none;
}
.ds-contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ds-toc-list {
    columns: 1;
  }
  .ds-section-num {
    position: static;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

/* =========================================
   IMPRESSUM SEITE
   ========================================= */
.imp-page {
  padding: 140px 5% 80px 5%;
  max-width: 900px;
  margin: 0 auto;
  color: var(--near-black);
  line-height: 1.8;
}

.imp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 40px;
  transition: color var(--t);
}
.imp-back:hover { color: var(--black); }
.imp-back svg { width: 18px; height: 18px; }

.imp-hero {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--mid);
  padding-bottom: 40px;
}
.imp-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--mid);
  border-radius: 30px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.imp-company {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
.imp-company-sub {
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.imp-address-block {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}
.imp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.imp-cell {
  background: var(--off-white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--light);
}
.imp-cell.dark {
  background: var(--charcoal);
  color: var(--white);
  border: none;
}
.imp-cell.full {
  grid-column: 1 / -1;
}
.imp-cell-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.7;
}
.imp-cell-value {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.imp-cell-sub {
  font-size: 0.9rem;
  opacity: 0.7;
}
.imp-cell.dark .imp-cell-value a {
  color: var(--white);
  text-decoration: underline;
}

.imp-map-block {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.imp-map-pin svg {
  width: 40px;
  height: 40px;
}
.imp-map-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.imp-map-addr {
  color: var(--muted);
  margin-bottom: 10px;
}
.imp-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: underline;
}
.imp-map-link svg {
  width: 16px;
  height: 16px;
}

.imp-legal-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.imp-legal-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mid);
}
.imp-legal-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.imp-legal-text {
  color: var(--dark-muted);
}
.imp-stand {
  text-align: right;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .imp-grid { grid-template-columns: 1fr; }
  .imp-legal-row { flex-direction: column; gap: 5px; }
  .imp-map-block { flex-direction: column; align-items: flex-start; }
}

/* FIX VARIABLES FOR DATENSCHUTZ */
.ds-page { color: var(--near-black); }
.ds-back { color: var(--muted); }
.ds-back:hover { color: var(--black); }
.ds-header { border-bottom: 1px solid var(--mid); }
.ds-badge { color: var(--charcoal); border-color: var(--mid); }
.ds-meta { color: var(--muted); }
.ds-law-badge { background: var(--off-white); border-color: var(--mid); color: var(--dark-muted); }
.ds-toc { background: var(--off-white); border-color: var(--light); color: var(--near-black); }
.ds-toc-title { color: var(--near-black); }
.ds-toc-list a { color: var(--dark-muted); }
.ds-toc-list a:hover { color: var(--charcoal); }
.ds-section-num { color: var(--mid); }
.ds-section-title { color: var(--near-black); }
.ds-text { color: var(--dark-muted); }
.ds-list { color: var(--dark-muted); }
.ds-list li strong { color: var(--near-black); }
.ds-highlight { background: var(--off-white); border-left-color: var(--charcoal); }
.ds-highlight p { color: var(--near-black); }
.ds-contact-box { background: var(--off-white); border-color: var(--light); }
.ds-contact-box p { color: var(--dark-muted); }
.ds-contact-box a { color: var(--charcoal); }

