/* ═══════════════════════════════════════════════════════════════
   DIEWALD Bauconsulting — Premium Dark CSS
   Design direction: Dark precision safety, controlled authority
   Accent: Diewald Orange #EF4F00
   ═══════════════════════════════════════════════════════════════ */

:root {
  --c-bg-0:   #080A0C;
  --c-bg-1:   #0D0F12;
  --c-bg-2:   #111418;
  --c-bg-3:   #161A1F;
  --c-surface:       rgba(255,255,255,0.035);
  --c-surface-mid:   rgba(255,255,255,0.055);
  --c-surface-high:  rgba(255,255,255,0.08);
  --c-glass-bar: rgba(10,11,14,0.82);
  --c-text:    #EFEFEF;
  --c-muted:   rgba(239,239,239,0.60);
  --c-muted-2: rgba(239,239,239,0.38);

  /* DIEWALD Orange System */
  --c-yellow:       #EF4F00;
  --c-yellow-deep:  #C44000;
  --c-yellow-light: #FF6B1A;
  --c-gold-glow:    rgba(239,79,0,0.20);
  --c-gold-subtle:  rgba(239,79,0,0.07);
  --c-gold-light:   rgba(239,79,0,0.13);
  --c-gold-line:    rgba(239,79,0,0.32);

  --c-chrome-1: rgba(255,255,255,0.88);
  --c-chrome-2: rgba(180,190,205,0.55);
  --c-line:     rgba(255,255,255,0.08);

  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  --text-h1:    clamp(46px, 11vw, 92px);
  --text-h2:    clamp(30px, 7vw, 56px);
  --text-h3:    clamp(20px, 4.5vw, 32px);
  --text-body:  clamp(15px, 3.8vw, 17px);
  --text-small: clamp(12px, 3vw, 13px);

  --space-1:  6px;  --space-2: 12px; --space-3: 20px; --space-4: 28px;
  --space-5: 40px; --space-6: 56px; --space-7: 80px; --space-8: 112px;
  --m-pad:   20px; --m-gap: 16px; --m-block: 56px;

  --radius-sm: 10px; --radius-md: 16px; --radius-large: 20px; --radius-pill: 999px;

  --shadow-lift: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-deep: 0 20px 50px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 0 1px rgba(239,79,0,0.15), 0 0 24px var(--c-gold-glow);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.06);

  --ease: cubic-bezier(0.23, 0.44, 0.40, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 500ms;
  --duration-fast: 240ms;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  touch-action: pan-y;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg-0);
  overflow-x: clip;
  max-width: 100vw;
  padding-bottom: env(safe-area-inset-bottom);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: var(--text-h1); line-height: 0.93; }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

a { color: inherit; text-decoration: none; transition: all var(--duration-fast) var(--ease); }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
img, video, svg { max-width: 100%; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--m-pad); }
@media (min-width: 768px) { .container { padding: 0 var(--space-6); } }

/* ── LABEL / EYEBROW ───────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-yellow);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--c-yellow);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Transparent / frosted dark, no logo, premium nav
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 400ms var(--ease);
}
.header.scrolled {
  background: rgba(12,14,17,0.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
  position: relative;
}

/* Logo — mobil sichtbar, Desktop versteckt */
.header__logo { display: none; }
@media (max-width: 899px) {
  .header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
  }
  .header__logo img {
    height: 56px;
    width: auto;
    display: block;
  }
}

/* Quick contact button — mobile only, centered */
.header__contact-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-yellow);
  background: rgba(239,79,0,0.08);
  border: 1px solid rgba(239,79,0,0.30);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: auto;
  z-index: 1;
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.header__contact-btn:active { background: rgba(239,79,0,0.18); border-color: rgba(239,79,0,0.55); }
@media (min-width: 900px) { .header__contact-btn { display: none; } }

/* Desktop nav — floating glass pill */
.header__nav {
  display: none;
  align-items: center;
  gap: 2px;
  /* Glass pill container */
  background: rgba(14,16,20,0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.40),
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(239,79,0,0.06);
}
@media (min-width: 900px) { .header__nav { display: flex; } }


/* Individual nav links — pill-shaped, hover fills */
.nav-link {
  position: relative;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.72);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all 220ms var(--ease);
  white-space: nowrap;
}
.nav-link::after { display: none; }   /* remove old underline */
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-link.active {
  color: #fff;
  background: rgba(239,79,0,0.20);
  border: 1px solid rgba(239,79,0,0.35);
  box-shadow: 0 0 12px rgba(239,79,0,0.15);
}

.nav-separator { width: 1px; height: 14px; background: rgba(255,255,255,0.10); margin: 0 2px; }

/* ── BURGER ─────────────────────────────────────────────────── */
.burger {
  position: absolute;
  right: var(--m-pad);
  display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; padding: 4px;
}
.burger span { display: block; height: 1.5px; background: #EF4F00; transition: all 280ms var(--ease); transform-origin: center; }
.burger span:first-child { width: 100%; }
.burger span:nth-child(2) { width: 70%; }
.burger span:last-child { width: 85%; }
.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 100%; }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }
@media (min-width: 900px) { .burger { display: none; } }

.header__nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,12,15,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  padding: var(--space-3) var(--m-pad) var(--space-4);
  gap: 0;
  z-index: 1001;
  background-clip: unset;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.header__nav.active .nav-link {
  padding: 13px 4px;
  font-size: 13px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65);
  background: transparent;
  box-shadow: none;
  letter-spacing: 0.12em;
}
.header__nav.active .nav-link:hover { color: #fff; background: transparent; }
.header__nav.active .nav-link.active { background: transparent; color: var(--c-yellow); }
.header__nav.active .nav-link:last-child { border-bottom: none; }
.header__nav.active .nav-separator { display: none; }



/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
              background 200ms var(--ease), border-color 200ms var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 550ms ease-out;
  pointer-events: none;
}
.btn:hover::before { left: 100%; }
.btn:active { transform: scale(0.96); }

.btn--large { padding: 15px 30px; font-size: 13px; letter-spacing: 0.1em; }

.btn--primary,
.btn--hero-primary {
  background: rgba(239,79,0,0.18);
  color: #fff;
  border-color: rgba(239,79,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(239,79,0,0.10), 0 4px 18px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.09);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.btn--primary:hover, .btn--hero-primary:hover {
  background: rgba(239,79,0,0.30);
  border-color: rgba(239,79,0,0.75);
  box-shadow: 0 0 0 1px rgba(239,79,0,0.22), 0 8px 26px rgba(239,79,0,0.18);
  transform: translateY(-1px);
}

.btn--secondary, .btn--hero-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.07);
  text-shadow: 0 1px 3px rgba(0,0,0,0.28);
}
.btn--secondary:hover, .btn--hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.36); transform: translateY(-1px); }



/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-image img,
.hero__bg-image video,
.hero__bg-image-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.02) brightness(1.15);
  display: block;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.08) 100%);
}
@media (max-width: 767px) {
  .hero__video-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.38) 40%, rgba(0,0,0,0.60) 80%, rgba(8,10,12,0.88) 100%);
  }
}

.hero__background { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,10,12,0.5) 0%, transparent 100%); }
.hero__grain {
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.012) 0px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.6;
}

.hero__scene { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
@media (max-width: 767px) { .hero__scene { display: none; } }
.hero__hill { filter: drop-shadow(0 -16px 32px rgba(0,0,0,0.4)); }

.hero__container { position: relative; z-index: 30; width: 100%; }
.hero__content { position: relative; z-index: 31; max-width: 580px; padding: 0 0 100px; }

.hero__mobile-top, .hero__mobile-bottom { display: none; }
.hero__container--desktop { display: flex; }

@media (max-width: 767px) {
  .hero__container--desktop { display: none; }
  .hero { align-items: stretch; position: relative; }
  .hero__mobile-top {
    display: block;
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 30;
    padding: 80px 20px 0;
  }
  .hero__mobile-top .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
    color: var(--c-yellow); text-transform: uppercase; margin-bottom: 10px; opacity: 0.95;
  }
  .hero__mobile-top .hero__eyebrow::before {
    content: ''; display: inline-block; width: 20px; height: 1px; background: var(--c-yellow);
  }
  .hero__mobile-top .hero__title { font-size: clamp(38px, 10vw, 52px); line-height: 0.93; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
  .hero__mobile-top .hero__subtitle { font-size: 14px; line-height: 1.55; color: rgba(239,239,239,0.65); margin: 0; }
  .hero__mobile-bottom {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    position: absolute; bottom: 120px; left: 0; right: 0;
    z-index: 30; padding: 0 20px;
  }
  .hero__mobile-bottom .btn { width: 256px; padding: 13px 0; font-size: 12px; justify-content: center; box-sizing: border-box; }
  .hero__mobile-bottom .btn svg { flex-shrink: 0; width: 15px; height: 15px; }
  .hero__trust-mobile { font-size: 11px; color: rgba(239,239,239,0.38); letter-spacing: 0.02em; margin-top: 2px; line-height: 1.4; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--c-yellow); text-transform: uppercase; margin-bottom: var(--space-3); opacity: 0.95;
}
.hero__eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--c-yellow); }

.hero__title { margin-bottom: var(--space-3); text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: var(--text-body); color: rgba(239,239,239,0.70); margin-bottom: var(--space-3); line-height: 1.65; max-width: 440px; }

.hero__actions { display: flex; flex-direction: column; gap: 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--space-3); }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: 12px; color: rgba(239,239,239,0.50); letter-spacing: 0.02em; }

/* ═══════════════════════════════════════════════════════════════
   PROMISE / VORTEILE
   ═══════════════════════════════════════════════════════════════ */
.promise {
  padding: var(--m-block) 0;
  background: linear-gradient(to bottom, var(--c-bg-1) 0%, var(--c-bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-line), transparent);
}
.promise::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-0));
  pointer-events: none;
}

.promise__photo-wrap {
  position: absolute; top: 0; left: 0; width: 45%; height: 100%; z-index: 0; pointer-events: none;
}
.promise__photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,10,12,0.10) 0%, rgba(8,10,12,0.50) 70%, var(--c-bg-1) 100%);
}
.promise__photo { width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0.75; filter: brightness(1.15) contrast(1.02); display: block; }
.promise__photo-wrap video.promise__photo { transform: scale(0.95); transform-origin: center center; }
@media (max-width: 767px) { .promise__photo-wrap { display: none; } }

.promise__container {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5); position: relative; z-index: 1;
}
@media (min-width: 768px) { .promise__container { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }

.promise__statement h2 { font-size: clamp(34px, 8vw, 64px); line-height: 1; color: var(--c-text); }

.promise__list { display: flex; flex-direction: column; gap: 0; }
.promise__item {
  position: relative;
  padding: var(--space-4) 0 var(--space-4) 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.promise__item:last-child { border-bottom: none; }
.promise__item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--c-gold-line), transparent);
  opacity: 0; transition: opacity 300ms var(--ease);
}
.promise__item:hover::before { opacity: 1; }

.promise__number {
  position: absolute; left: 0; top: var(--space-4);
  font-family: var(--font-head); font-size: 36px; line-height: 1;
  color: var(--c-yellow); opacity: 0.18; letter-spacing: 0.05em;
}
.promise__item h3 { font-size: clamp(16px, 4vw, 20px); margin-bottom: 6px; color: var(--c-text); letter-spacing: 0.03em; }
.promise__item p { color: var(--c-muted); line-height: 1.6; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES — Tab Slider
   ═══════════════════════════════════════════════════════════════ */
.services { padding: var(--m-block) 0; background: var(--c-bg-0); position: relative; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-line), transparent);
}

.services__header { margin-bottom: var(--space-5); }

.services__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 1024px) { .services__grid { grid-template-columns: 300px 1fr; gap: var(--space-5); } }

.services__rail { display: flex; flex-direction: column; gap: 3px; position: relative; z-index: 2; }
@media (max-width: 1023px) {
  .services__rail { flex-direction: row; overflow-x: auto; gap: 6px; padding-bottom: 2px; scrollbar-width: none; -ms-overflow-style: none; }
  .services__rail::-webkit-scrollbar { display: none; }
}

.service-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  text-align: left;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  cursor: pointer; position: relative; overflow: hidden;
}
.service-tab::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 550ms ease-out; pointer-events: none;
}
.service-tab:hover::before { left: 100%; }
.service-tab:active { transform: scale(0.97); }
@media (max-width: 1023px) { .service-tab { flex-shrink: 0; padding: 9px 16px; white-space: nowrap; } }

.service-tab.active {
  background: rgba(239,79,0,0.13);
  border-color: rgba(239,79,0,0.50);
  box-shadow: 0 0 0 1px rgba(239,79,0,0.08), 0 4px 16px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-tab:hover:not(.active) { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }

.tab__number { font-family: var(--font-head); font-size: 17px; color: var(--c-yellow); opacity: 0.35; line-height: 1; transition: opacity 200ms var(--ease); flex-shrink: 0; }
.service-tab.active .tab__number { opacity: 0.9; }
.tab__title { flex: 1; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 0.07em; text-transform: uppercase; transition: color 200ms var(--ease); }
.service-tab.active .tab__title { color: #fff; }
.tab__arrow { color: rgba(239,79,0,0.35); display: none; transition: color 200ms var(--ease); }
@media (min-width: 1024px) { .tab__arrow { display: flex; } }
.service-tab.active .tab__arrow { color: var(--c-yellow); }

.services__panel-wrap { position: relative; border-radius: var(--radius-large); overflow: hidden; min-height: 300px; }

.services__edge-fade {
  display: none;
  position: absolute; top: 0; right: 0; bottom: 2px; width: 56px;
  background: linear-gradient(to right, transparent, rgba(8,10,12,0.82));
  z-index: 10; pointer-events: none;
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
}
@media (max-width: 1023px) { .services__edge-fade { display: block; } }

.services__slider { display: flex; width: 100%; transition: transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; user-select: none; -webkit-user-select: none; }

.service-detail {
  flex: 0 0 100%; width: 100%; position: relative;
  background: linear-gradient(135deg, var(--c-bg-3) 0%, var(--c-bg-1) 100%);
  border: 1px solid var(--c-line); border-radius: var(--radius-large);
  min-height: 300px; box-shadow: var(--shadow-inset), var(--shadow-lift);
  overflow: hidden; pointer-events: none;
}
.service-detail.active { pointer-events: auto; }
.service-detail::before {
  content: ''; position: absolute; top: 0; left: var(--space-5); right: var(--space-5); height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.10), transparent); z-index: 3;
}

.service-detail__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 700ms ease;
  pointer-events: none; z-index: 0; filter: brightness(1.10);
}
.service-detail.active .service-detail__video { opacity: 0.60; }
.service-detail.video-playing .service-detail__video { opacity: 0.72; }

/* Static image / video fallback for services */
.service-detail__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right 15%; /* Gesicht oben-rechts, leicht nach unten versetzt */
  opacity: 0; transition: opacity 700ms ease;
  pointer-events: none; z-index: 0;
  filter: brightness(1.10) contrast(1.02);
  display: block;
}
.service-detail.active .service-detail__image { opacity: 1; }

.service-detail__overlay {
  position: absolute; inset: 0;
  background: rgba(8,10,12,0.18); /* viel weniger dunkel als vorher (war 0.40) */
  z-index: 1; opacity: 0; transition: opacity 700ms ease; pointer-events: none;
}
.service-detail.active .service-detail__overlay { opacity: 1; }

.service-detail__content { position: relative; z-index: 2; padding: var(--space-5); display: flex; flex-direction: column; min-height: inherit; }
.service-detail__content h3 { font-size: clamp(22px, 4vw, 30px); margin-bottom: var(--space-2); color: var(--c-text); }
.service-detail__content p { color: var(--c-muted); font-size: 15px; line-height: 1.7; margin-bottom: 0; padding-bottom: var(--space-5); flex: 1; }

.service-datastrip { display: flex; align-items: stretch; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); }
.datastrip__item { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.datastrip__divider { width: 1px; background: rgba(239,79,0,0.15); margin: 0 20px; flex-shrink: 0; }
.datastrip__label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-muted-2); text-transform: uppercase; }
.datastrip__value { font-family: var(--font-head); font-size: clamp(24px, 4.5vw, 34px); color: var(--c-yellow); letter-spacing: 0.03em; line-height: 1; }

.services__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.05); z-index: 10; border-radius: 0 0 var(--radius-large) var(--radius-large); }
.services__progress-fill { height: 100%; width: 25%; background: linear-gradient(to right, rgba(239,79,0,0.45), var(--c-yellow)); border-radius: 0 1px 1px 0; transition: width 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@media (min-width: 1024px) { .services__progress { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════════ */
.process { padding: var(--m-block) 0; background: linear-gradient(to bottom, var(--c-bg-1) 0%, var(--c-bg-2) 100%); position: relative; }
.process::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold-line), transparent); }

.process__header { text-align: center; margin-bottom: var(--space-6); }

.process__timeline { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 768px) { .process__timeline { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }

.process__step {
  display: flex; flex-direction: column; padding: 0;
  background: var(--c-bg-3); border: 1px solid var(--c-line);
  border-radius: var(--radius-large); overflow: hidden;
  transition: all var(--duration-fast) var(--ease);
  box-shadow: var(--shadow-inset);
}
.process__step:hover { border-color: rgba(239,79,0,0.22); box-shadow: var(--shadow-glow); transform: translateY(-3px); }

.step__image-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%); border-bottom: 1px solid rgba(239,79,0,0.08); flex-shrink: 0; }
.step__image { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform 400ms var(--ease); filter: brightness(0.85) contrast(1.05); }
.process__step:hover .step__image { transform: scale(1.03); filter: brightness(0.95) contrast(1.05); }
.step__image-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(8,10,12,0.55), transparent); pointer-events: none; }

.step__image-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: clamp(60px, 12vw, 100px);
  color: rgba(239,79,0,0.10); letter-spacing: 0.05em; pointer-events: none; z-index: 0; user-select: none;
}

.step__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.step__body .step__number { position: static; font-family: var(--font-head); font-size: 32px; color: var(--c-yellow); opacity: 0.18; line-height: 1; margin: 0 0 2px 0; letter-spacing: 0.05em; }
.step__body h3 { font-size: clamp(17px, 4vw, 22px); color: var(--c-text); margin: 0; }
.step__body p { color: var(--c-muted); line-height: 1.65; font-size: 14px; margin: 0; }

@media (min-width: 768px) { .step__image-wrap { aspect-ratio: 4 / 3; } }
@media (max-width: 767px) { .process__step { border-radius: var(--radius-md); } .step__body { padding: var(--space-3); } }

/* ═══════════════════════════════════════════════════════════════
   TEAM / PERSON
   ═══════════════════════════════════════════════════════════════ */
.team { padding: var(--m-block) 0; background: var(--c-bg-0); position: relative; }
.team::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold-line), transparent); }

.team__container { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center; }
@media (min-width: 768px) { .team__container { grid-template-columns: 280px 1fr; } }

.team__photo-wrap {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lift);
}
.team__photo-wrap::before { content: ''; position: absolute; top: 0; left: 16px; right: 16px; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.10), transparent); z-index: 2; }
.team__photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; filter: brightness(0.92) contrast(1.05); }
.team__photo-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-3) var(--space-4);
  background: linear-gradient(to top, rgba(8,10,12,0.92), transparent);
  z-index: 2;
}
.team__photo-label p { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-yellow); margin: 0; }

.team__info { display: flex; flex-direction: column; gap: var(--space-4); }
.team__info h2 { margin-bottom: var(--space-1); }
.team__role { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-yellow); margin-bottom: var(--space-3); }
.team__bio { color: var(--c-muted); line-height: 1.7; font-size: 15px; }

.team__contact {
  display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center;
  padding-top: var(--space-4); border-top: 1px solid var(--c-line);
}
.team__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(239,79,0,0.35);
  border-radius: var(--radius-pill);
  color: var(--c-yellow); font-size: 16px; font-weight: 700;
  background: rgba(239,79,0,0.06);
  transition: all 220ms var(--ease);
}
.team__phone:hover { background: rgba(239,79,0,0.14); border-color: rgba(239,79,0,0.60); }
.team__phone svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   TRUST / BADGES
   ═══════════════════════════════════════════════════════════════ */
.trust { padding: var(--m-block) 0; background: linear-gradient(to bottom, var(--c-bg-1) 0%, var(--c-bg-2) 100%); position: relative; }
.trust::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold-line), transparent); }

.trust__container { display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: start; }
@media (min-width: 768px) { .trust__container { grid-template-columns: 1fr 2fr; } }

.trust__badges { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 768px) { .trust__badges { grid-template-columns: repeat(3, 1fr); } }

.badge__item {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  padding: var(--space-3); background: var(--c-bg-3);
  border: 1px solid var(--c-line); border-radius: var(--radius-md);
  text-align: left; box-shadow: var(--shadow-inset);
  transition: all var(--duration-fast) var(--ease);
}
.badge__item:hover { border-color: rgba(239,79,0,0.20); box-shadow: var(--shadow-glow); }
.badge__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(239,79,0,0.07); border: 1px solid rgba(239,79,0,0.15);
  color: var(--c-yellow); flex-shrink: 0;
}
.badge__text { font-size: 11px; color: var(--c-muted); line-height: 1.5; font-weight: 500; letter-spacing: 0.02em; }

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq { padding: var(--m-block) 0; background: var(--c-bg-0); position: relative; }
.faq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold-line), transparent); }

.faq__header { text-align: center; margin-bottom: var(--space-5); }

.faq__list { display: flex; flex-direction: column; gap: 2px; max-width: 720px; margin: 0 auto; }

.faq__item {
  background: var(--c-bg-3); border: 1px solid var(--c-line); border-radius: var(--radius-md);
  transition: border-color 200ms var(--ease);
}
.faq__item:hover { border-color: rgba(239,79,0,0.20); }
.faq__item.is-open { border-color: rgba(239,79,0,0.30); }

.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); padding: var(--space-3) var(--space-4); text-align: left;
  color: var(--c-text); cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: color 200ms var(--ease);
}
.faq__question span:first-child { font-size: 14px; font-weight: 600; line-height: 1.4; flex: 1; }
.faq__item.is-open .faq__question { color: var(--c-yellow); }

.faq__icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  position: relative; transition: all 280ms var(--ease);
}
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: rgba(255,255,255,0.70); transition: all 280ms var(--ease); border-radius: 2px; }
.faq__icon::before { width: 8px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 8px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon { background: rgba(239,79,0,0.12); border-color: rgba(239,79,0,0.35); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item.is-open .faq__icon::before { background: var(--c-yellow); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 380ms cubic-bezier(0.16, 1, 0.3, 1), padding 280ms var(--ease); padding: 0 var(--space-4); }
.faq__item.is-open .faq__answer { max-height: 400px; padding-bottom: var(--space-3); }
.faq__answer p { color: var(--c-muted); font-size: 14px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-0) 100%);
  position: relative; overflow: hidden;
}
.final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold-line), transparent); }

.cta__shape {
  position: absolute; top: -40%; right: -15%; width: 60vw; height: 60vw; max-width: 600px; max-height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(239,79,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta__container { text-align: center; position: relative; z-index: 1; }
.cta__title { font-size: clamp(30px, 7vw, 64px); margin-bottom: var(--space-3); }
.cta__text { font-size: 14px; color: var(--c-muted); margin-bottom: var(--space-5); letter-spacing: 0.02em; }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-bottom: var(--space-4); }
.cta__contact { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--c-muted-2); }
.cta__contact a { color: var(--c-yellow); font-weight: 600; }
.cta__contact a:hover { color: var(--c-yellow-light); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Muted dark, orange accent, compact
   ═══════════════════════════════════════════════════════════════ */
.footer { background: #1C0D06; position: relative; }
.footer__topline { height: 1px; background: linear-gradient(to right, transparent, rgba(239,79,0,0.45), transparent); }

.footer__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
  padding: var(--space-5) var(--m-pad) var(--space-4);
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    padding: var(--space-5) var(--space-6) var(--space-4);
    align-items: start;
    gap: 0;
  }
}

.footer__logo img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.90;
  transition: opacity 220ms var(--ease);
  margin-bottom: var(--space-2);
}
.footer__logo img:hover { opacity: 1; }
.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.55; max-width: 200px; }
.footer__since { display: flex; align-items: center; gap: var(--space-2); font-size: 11px; color: rgba(255,255,255,0.30); margin-top: var(--space-2); }
.footer__since-line { flex: 1; max-width: 16px; height: 1px; background: rgba(239,79,0,0.50); }

.footer__vdivider { display: none; }
@media (min-width: 768px) {
  .footer__vdivider {
    display: block; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
    margin: 0 var(--space-5);
  }
}

.footer__col-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(239,79,0,0.65); margin-bottom: var(--space-2); }
.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__contact-list li { display: flex; align-items: center; gap: var(--space-2); font-size: 13px; color: rgba(255,255,255,0.62); }
.footer__contact-list svg { flex-shrink: 0; color: rgba(255,255,255,0.28); }
.footer__contact-list a { color: rgba(255,255,255,0.62); transition: color 200ms var(--ease); }
.footer__contact-list a:hover { color: rgba(255,255,255,0.90); }

.footer__nav { display: flex; flex-direction: column; gap: 4px; }
.footer__nav-link { font-size: 13px; color: rgba(255,255,255,0.50); transition: color 200ms var(--ease); padding: 2px 0; }
.footer__nav-link:hover { color: rgba(255,255,255,0.85); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: var(--space-2) var(--m-pad); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: center; gap: var(--space-3); flex-wrap: wrap; max-width: 1280px; margin: 0 auto; }
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer__bottom-dot { width: 2px; height: 2px; border-radius: 50%; background: rgba(255,255,255,0.20); }
.footer__legal-link { font-size: 11px; color: rgba(255,255,255,0.28); transition: color 200ms var(--ease); }
.footer__legal-link:hover { color: rgba(255,255,255,0.60); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════════════════════════════ */
.mobile-cta {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--c-glass-bar);
  backdrop-filter: blur(20px) saturate(180%) brightness(0.9);
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(0.9);
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04), 0 -8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 768px) { .mobile-cta { display: none; } }
.mobile-cta--hidden { transform: translateY(100%); pointer-events: none; transition: transform 300ms var(--ease); }
.mobile-cta { transition: transform 300ms var(--ease); }

.mobile-cta__btn {
  flex: 1; display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 8px; padding: 13px var(--space-2);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 180ms var(--ease); position: relative;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.mobile-cta__btn--phone { color: rgba(255,255,255,0.82); background: transparent; border: none; }
.mobile-cta__btn--phone:active { background: rgba(255,255,255,0.06); transform: scale(0.96); }
.mobile-cta__btn--phone::after {
  content: ''; position: absolute; right: 0; top: 22%; bottom: 22%;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.07), transparent);
}

.mobile-cta__btn--whatsapp {
  color: #fff;
  background: rgba(239,79,0,0.18);
  border: 1px solid rgba(239,79,0,0.52);
  margin: 7px 12px 7px 4px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 1px rgba(239,79,0,0.10), 0 2px 10px rgba(239,79,0,0.14), inset 0 1px 0 rgba(255,255,255,0.08);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3); font-size: 11px; letter-spacing: 0.1em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.mobile-cta__btn--whatsapp:active { transform: scale(0.96); background: rgba(239,79,0,0.28); }

.mobile-cta__btn--cta {
  color: rgba(255,255,255,0.82); background: transparent; border: none;
}
.mobile-cta__btn--cta:active { background: rgba(255,255,255,0.06); transform: scale(0.96); }
.mobile-cta__btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY & UTILITIES
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 2px solid var(--c-yellow); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--c-yellow); color: var(--c-bg-0); }
section, .container, footer { max-width: 100%; overflow-x: hidden; }
header { max-width: 100%; }


/* ═══════════════════════════════════════════════════════════════
   MOBILE-ONLY ANPASSUNGEN  (max-width: 767px)
   Desktop/Tablet unangetastet — alle Regeln strikt auf Mobile begrenzt
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ──────────────────────────────────────────────────────────
     1. HERO MOBILE: Buttons gleich groß
     ──────────────────────────────────────────────────────────
     Beide Buttons in .hero__mobile-bottom erhalten identische
     Dimensionen. Die bestehende width: 256px Regel wird ergänzt
     durch min-height und box-sizing sicherstellung.
  ────────────────────────────────────────────────────────── */
  .hero__mobile-bottom .btn {
    width: 256px !important;
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    line-height: 1;
    font-size: 12px;
    letter-spacing: 0.10em;
  }

  /* ──────────────────────────────────────────────────────────
     2. FOOTER MOBILE: Brand-Block zentrieren + Logo vergrößern
     ──────────────────────────────────────────────────────────
     .footer__brand: zentriert, Logo als Krone über dem Text.
     Logo-Bild: von 36px auf ~180px Breite (auto height).
  ────────────────────────────────────────────────────────── */
  .footer__brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
  }

  .footer__logo img {
    height: auto !important;
    width: 288px;
    opacity: 1;
  }

  .footer__tagline {
    max-width: 100%;
    text-align: center;
  }

  .footer__since {
    justify-content: center;
  }

  .footer__since-line {
    display: none;
  }

  /* ──────────────────────────────────────────────────────────
     3. FOOTER MOBILE: Kontakt + Navigation nebeneinander
     ──────────────────────────────────────────────────────────
     .footer__inner wird auf Mobile zum Grid mit:
     - erste Zeile: Brand (volle Breite)
     - zweite Zeile: Kontakt + Navigation nebeneinander
     Die footer__vdivider zwischen Contact und Nav wird ausgeblendet.
  ────────────────────────────────────────────────────────── */
  .footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-4) var(--space-3);
    padding: var(--space-5) var(--m-pad) var(--space-4);
  }

  /* Brand nimmt volle Breite (beide Spalten) */
  .footer__brand {
    grid-column: 1 / -1;
  }

  /* Vertikale Divider auf Mobile komplett ausblenden */
  .footer__vdivider {
    display: none !important;
  }

  /* Kontakt: linke Spalte */
  .footer__contact {
    grid-column: 1;
  }

  /* Navigation: rechte Spalte */
  .footer__nav {
    grid-column: 2;
    text-align: right;
  }

  /* ──────────────────────────────────────────────────────────
     4. LEISTUNGEN MOBILE: Text unter Video, orange im Video
     ──────────────────────────────────────────────────────────
     Strategie (rein CSS, kein HTML/JS nötig):

     .service-detail auf Mobile:
     - wird display: flex, flex-direction: column
     - erhält eine feste Mindesthöhe (kein overflow: hidden Problem)

     .service-detail__image (video):
     - aus position: absolute heraus → position: relative
     - feste Höhe für das Video-Feld
     - object-fit: cover bleibt

     .service-detail__overlay:
     - position: absolute, aber nur über das Video-Feld
     - height auf Video-Höhe begrenzen

     .service-detail__content:
     - position: relative (bleibt), z-index: 2 (bleibt)
     - kommt nach dem Video im normalen Fluss
     - background damit Text lesbar ist

     .service-datastrip (orange):
     - bleibt im __content → erscheint UNTER dem Video
     - optisch klar vom Video abgesetzt

     WICHTIG für JS-Stabilität:
     - JS steuert nur: .active Klasse, translateX, opacity via active
     - Alle JS-relevanten Klassen (.active, .video-playing) bleiben unberührt
     - Der Slider-Mechanismus (translateX auf .services__slider) funktioniert
       weiterhin, weil .service-detail immer noch flex: 0 0 100% ist
     - opacity-Transition auf .service-detail__image bleibt intakt
  ────────────────────────────────────────────────────────── */

  /* Container: vom gestapelten absoluten Layout zu flex-column */
  .service-detail {
    display: flex;
    flex-direction: column;
    min-height: 0;
    /* overflow: hidden bleibt implizit durch border-radius */
  }

  /* Video: aus absoluter Positionierung heraus in den normalen Fluss */
  .service-detail__image {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 220px !important;
    flex-shrink: 0;
    object-fit: cover;
    object-position: right 15%; /* Gesicht sichtbar */
    opacity: 0;
    transition: opacity 700ms ease;
    order: 1;
    display: block;
    z-index: auto;
    filter: brightness(1.10) contrast(1.02);
  }

  .service-detail.active .service-detail__image {
    opacity: 1;
  }

  /* Overlay auf Mobile ebenfalls reduzieren */
  .service-detail__overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: rgba(8,10,12,0.18) !important;
    z-index: 1;
  }

  /* Content: kommt nach Video, normaler Hintergrund für Lesbarkeit */
  .service-detail__content {
    position: relative;
    z-index: 2;
    order: 2;
    background: linear-gradient(to bottom, var(--c-bg-3) 0%, var(--c-bg-1) 100%);
    min-height: 0;
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
  }

  .service-detail__content p {
    padding-bottom: var(--space-3);
  }

  .service-detail::before {
    z-index: 3;
  }

  .services__panel-wrap {
    overflow: hidden;
    min-height: 0;
    border-radius: var(--radius-md);
  }

} /* end @media (max-width: 767px) */


/* ── MOBILE: angebot.png object-position fix (Gesicht sichtbar) ── */
@media (max-width: 1023px) {
  .process__step:nth-child(2) .step__image {
    object-position: center top;
  }
}

/* ── CTA BUTTONS GLEICH GROSS (Mobile + Desktop) ────────────────
   .cta__actions (Final-CTA Sektion) und .team__contact:
   Beide Buttons bekommen identisches min-width damit sie
   visuell gleich groß wirken, unabhängig vom Icon.
──────────────────────────────────────────────────────────────── */
.cta__actions .btn {
  min-width: 200px;
}

.team__contact .btn,
.team__phone {
  min-width: 180px;
  justify-content: center;
}

@media (max-width: 767px) {
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta__actions .btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .team__contact {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
  }
  .team__contact .btn,
  .team__phone {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    min-height: 50px;
    justify-content: center;
    font-size: 13px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE: Header + Burger Menü Fix
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 899px) {

  /* Header bekommt auf Mobile immer einen Hintergrund —
     damit der Burger überall auf der Seite sichtbar und klickbar ist */
  .header {
    background: rgba(8,10,12,0.88);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(239,79,0,0.12);
  }

  /* Burger z-index sicherstellen */
  .burger {
    z-index: 1002;
    position: absolute;
  }

  /* ── Mobiles Nav-Menü — Design passend zur Seite ── */
  .header__nav.active {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    z-index: 1001;

    /* Hintergrund: passendes Dunkel mit Orange-Akzent */
    background: rgba(11,13,16,0.97);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);

    /* Rahmen oben: Orange-Linie als Marken-Akzent */
    border-top: 1px solid rgba(239,79,0,0.35);
    border-bottom: 1px solid rgba(239,79,0,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(239,79,0,0.06);

    /* Layout */
    display: flex;
    flex-direction: column;
    padding: 8px var(--m-pad) 20px;
    gap: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  /* Nav-Links im offenen Menü */
  .header__nav.active .nav-link {
    padding: 15px var(--space-2);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.70);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 180ms var(--ease), background 180ms var(--ease);
  }

  /* Orange Punkt vor jedem Link */
  .header__nav.active .nav-link::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(239,79,0,0.35);
    flex-shrink: 0;
    transition: background 180ms var(--ease);
  }

  .header__nav.active .nav-link:hover {
    color: #fff;
    background: rgba(239,79,0,0.07);
  }

  .header__nav.active .nav-link:hover::before {
    background: #EF4F00;
  }

  /* Aktiver Link = Orange */
  .header__nav.active .nav-link.active {
    color: #EF4F00;
    background: rgba(239,79,0,0.07);
  }

  .header__nav.active .nav-link.active::before {
    background: #EF4F00;
  }

  .header__nav.active .nav-link:last-child {
    border-bottom: none;
  }

  .header__nav.active .nav-separator {
    display: none;
  }

} /* end mobile header fix */

/* ═══════════════════════════════════════════════════════════════
   AUCH BUCHBAR — Sektion
   ═══════════════════════════════════════════════════════════════ */
.also {
  padding: var(--space-8) 0;
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.also__video-wrap {
  position: absolute; top: 0; right: 0; width: 40%; height: 520px; z-index: 0; pointer-events: none;
}
.also__video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(8,10,12,0.10) 0%, rgba(8,10,12,0.55) 70%, var(--c-bg-1) 100%),
              linear-gradient(to top, var(--c-bg-1) 0%, transparent 30%);
}
.also__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  opacity: 0.40; filter: brightness(0.85); display: block;
}
@media (max-width: 767px) { .also__video-wrap { display: none; } }
.also::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-line), transparent);
}

.also__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.also__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 680px;
}

.also__intro {
  font-size: var(--text-body);
  color: var(--c-muted);
  line-height: 1.7;
  margin-top: var(--space-1);
}

.also__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.also__item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: border-color var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease);
}
.also__item:hover {
  background: var(--c-surface-mid);
  border-color: var(--c-gold-line);
}

.also__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold-subtle);
  border: 1px solid var(--c-gold-line);
  border-radius: var(--radius-sm);
  color: var(--c-yellow-light);
}

.also__body h3 {
  font-family: var(--font-body);
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--space-1);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.also__body p {
  font-size: var(--text-small);
  color: var(--c-muted);
  line-height: 1.65;
}

.also__cta {
  display: flex;
  justify-content: flex-start;
}

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

@media (max-width: 639px) {
  .also__grid {
    grid-template-columns: 1fr;
  }
  .also__item {
    padding: var(--space-3);
  }
  .also__cta {
    justify-content: center;
  }
  .also__cta .btn {
    width: 100%;
    max-width: 280px;
    min-height: 50px;
    justify-content: center;
  }
}

/* ── Divider zwischen Grid und Accordion ── */
.also__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-line) 40%, var(--c-gold-line) 60%, transparent);
  opacity: 0.7;
  margin: calc(var(--space-3) * -1) 0 0;
}

/* ── Expand-Header (vor den Accordion-Cards) ── */
.also__expand-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 700px;
}

.also__expand-title {
  font-size: clamp(26px, 5.5vw, 44px);
  line-height: 1.0;
  margin: var(--space-1) 0 var(--space-2);
}

/* ═══════════════════════════════════════════════════════════════
   XCARD — Aufklappbare Leistungskarten
   ═══════════════════════════════════════════════════════════════ */
.xcard__list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.xcard {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-surface);
  position: relative;
  transition: background var(--duration-fast) var(--ease);
}
.xcard:last-child {
  border-bottom: none;
}

/* Orange Akzentlinie links — sichtbar wenn offen */
.xcard::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-yellow);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease);
  z-index: 1;
}
.xcard.is-open::before { opacity: 1; }
.xcard.is-open { background: var(--c-surface-mid); }

/* ── Kopfzeile (Button) ── */
.xcard__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 2;
  transition: background var(--duration-fast) var(--ease);
}
@media (hover: hover) {
  .xcard__head:hover { background: var(--c-surface-high); }
}
.xcard__head:active { background: rgba(239,79,0,0.05); }

/* Linke Seite: Icon + Texte */
.xcard__head-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 0;
}

/* Icon-Box */
.xcard__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold-subtle);
  border: 1px solid var(--c-gold-line);
  border-radius: var(--radius-sm);
  color: var(--c-yellow-light);
  transition: background var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
}
.xcard.is-open .xcard__icon {
  background: var(--c-gold-light);
  border-color: rgba(239,79,0,0.5);
}

/* Titel-Stack */
.xcard__titles {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.xcard__name {
  font-family: var(--font-body);
  font-size: clamp(14px, 3.8vw, 15px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.xcard__teaser {
  display: block;
  font-size: clamp(12px, 3vw, 13px);
  color: var(--c-muted);
  line-height: 1.45;
  /* Kein max-height, kein overflow:hidden — Text darf vollständig umbrechen */
  transition: opacity var(--duration-fast) var(--ease),
              max-height 300ms var(--ease);
  max-height: 200px; /* gross genug für beliebigen Text */
}
.xcard.is-open .xcard__teaser {
  opacity: 0;
  max-height: 0;
  overflow: hidden; /* nur im offenen Zustand verstecken */
}

/* Plus / Minus Toggle */
.xcard__toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-surface-mid);
  border: 1px solid var(--c-line);
  color: var(--c-muted);
  transition: all var(--duration-fast) var(--ease);
}
.xcard__toggle svg {
  transition: transform var(--duration-fast) var(--ease);
}
.xcard.is-open .xcard__toggle {
  background: var(--c-gold-subtle);
  border-color: var(--c-gold-line);
  color: var(--c-yellow);
}
.xcard.is-open .xcard__toggle svg {
  transform: rotate(45deg);
}

/* ── Body (aufklappbar via grid-template-rows) ── */
.xcard__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-out);
}
.xcard.is-open .xcard__body {
  grid-template-rows: 1fr;
}

.xcard__body-inner {
  overflow: hidden;
  /* links bündig mit Text (Icon 40px + gap 20px + padding 28px) */
  padding: 0 var(--space-4) 0 calc(var(--space-4) + 40px + var(--space-3));
}
.xcard.is-open .xcard__body-inner {
  padding-bottom: var(--space-4);
}

.xcard__desc {
  font-size: var(--text-small);
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  padding-top: var(--space-1);
}

/* Leistungs-Liste */
.xcard__services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.xcard__services li {
  font-size: clamp(12px, 3vw, 13px);
  color: var(--c-muted-2);
  line-height: 1.5;
  padding-left: var(--space-3);
  position: relative;
}
.xcard__services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-yellow);
  opacity: 0.55;
}

/* CTA-Button innerhalb der Card */
.xcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-yellow);
  background: var(--c-gold-subtle);
  border: 1px solid var(--c-gold-line);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  transition: background var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.xcard__cta::after { content: '→'; font-size: 13px; }
@media (hover: hover) {
  .xcard__cta:hover {
    background: var(--c-gold-light);
    border-color: rgba(239,79,0,0.45);
  }
}
.xcard__cta:active { transform: scale(0.97); }

/* ── Mobile Overrides ── */
@media (max-width: 639px) {
  .xcard__head {
    padding: var(--space-3);
    gap: var(--space-2);
    align-items: flex-start; /* Toggle bleibt oben bei mehrzeiligem Titel */
  }
  .xcard__head-left { gap: var(--space-2); align-items: flex-start; }
  .xcard__icon { width: 36px; height: 36px; margin-top: 2px; /* bündig mit erster Textzeile */ }
  .xcard__toggle { margin-top: 3px; /* bündig mit erster Textzeile */ }
  .xcard__body-inner { padding: 0 var(--space-3); }
  .xcard.is-open .xcard__body-inner { padding-bottom: var(--space-3); }
  .xcard__toggle { width: 28px; height: 28px; }
  .xcard__cta { width: 100%; justify-content: center; }
  .also__expand-header { padding-top: 0; }
  /* Auf Mobile: Body-Innenabstand ohne Icon-Offset (simpler) */
  .xcard__body-inner {
    padding-left: var(--space-3);
  }
  .xcard.is-open .xcard__body-inner {
    padding-left: var(--space-3);
  }
}

/* ── Entrance Animation — nur Desktop/Tablet, kein Conflict mit Mobile-Reveal ── */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  @keyframes xcardIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .xcard__list {
    animation: xcardIn 400ms var(--ease-out) both;
  }
}

/* ═══════════════════════════════════════════════════════════════
   XCARD — MOBILE SCROLL-REVEAL + ACCENT LINE
   Cards schieben von links herein wenn sie in den Viewport scrollen.
   Der Accent-Strich zieht gleichzeitig von oben nach unten durch.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {

  /* Startzustand: unsichtbar, leicht nach links verschoben */
  .xcard:not(.xcard--visible) {
    opacity: 0;
    transform: translateX(-12px);
  }

  /* Transition für den Reveal-Effekt */
  .xcard {
    transition: opacity 440ms var(--ease-out),
                transform 440ms var(--ease-out),
                background var(--duration-fast) var(--ease);
  }

  /* Sichtbar-Zustand — gesetzt per IntersectionObserver */
  .xcard.xcard--visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered Delay: jede Card kommt leicht später */
  .xcard:nth-child(1)  { transition-delay: 0ms; }
  .xcard:nth-child(2)  { transition-delay: 55ms; }
  .xcard:nth-child(3)  { transition-delay: 110ms; }
  .xcard:nth-child(4)  { transition-delay: 165ms; }
  .xcard:nth-child(5)  { transition-delay: 220ms; }
  .xcard:nth-child(6)  { transition-delay: 270ms; }
  .xcard:nth-child(7)  { transition-delay: 320ms; }
  .xcard:nth-child(8)  { transition-delay: 370ms; }
  .xcard:nth-child(9)  { transition-delay: 420ms; }
  .xcard:nth-child(10) { transition-delay: 470ms; }

  /* Accent-Bar: startet bei height:0, wächst auf 100% beim Reveal */
  .xcard::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--c-yellow) 25%,
      var(--c-yellow) 75%,
      transparent 100%
    );
    transition: height 600ms var(--ease-out),
                opacity 600ms var(--ease-out);
    opacity: 0;
    z-index: 2;
  }

  /* Delay der ::after-Linie = Delay der Card + 80ms (nach der Card erscheinen) */
  .xcard:nth-child(1)::after  { transition-delay: 80ms; }
  .xcard:nth-child(2)::after  { transition-delay: 135ms; }
  .xcard:nth-child(3)::after  { transition-delay: 190ms; }
  .xcard:nth-child(4)::after  { transition-delay: 245ms; }
  .xcard:nth-child(5)::after  { transition-delay: 300ms; }
  .xcard:nth-child(6)::after  { transition-delay: 350ms; }
  .xcard:nth-child(7)::after  { transition-delay: 400ms; }
  .xcard:nth-child(8)::after  { transition-delay: 450ms; }
  .xcard:nth-child(9)::after  { transition-delay: 500ms; }
  .xcard:nth-child(10)::after { transition-delay: 550ms; }

  .xcard.xcard--visible::after {
    height: 100%;
    opacity: 1;
  }

  /* Wenn Card offen ist: ::before (oranger permanenter Strich) bleibt, ::after weg */
  .xcard.is-open::after {
    opacity: 0;
  }

  /* Icon-Aufleuchten beim Reveal */
  @keyframes iconReveal {
    0%   { background: var(--c-gold-subtle); border-color: var(--c-gold-line); }
    45%  { background: rgba(239,79,0,0.22); border-color: rgba(239,79,0,0.60); }
    100% { background: var(--c-gold-subtle); border-color: var(--c-gold-line); }
  }
  .xcard.xcard--visible .xcard__icon {
    animation: iconReveal 800ms var(--ease-out) both;
  }

}

/* ── Mobile: hellere Card-Hintergründe (Ghost-Grau wie Hero-Button) ── */
@media (max-width: 767px) {
  /* Zusatzangebot Info-Cards */
  .also__item {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.10);
  }
  .also__item:hover {
    background: rgba(255,255,255,0.09);
  }
  /* Weitere Leistungen Accordion-Cards */
  .xcard {
    background: rgba(255,255,255,0.06);
  }
  .xcard.is-open {
    background: rgba(255,255,255,0.09);
  }
  /* Qualität Badges */
  .badge__item {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.10);
  }
}

/* ═══════════════════════════════════════════════════════════════
   ALSO__ITEM — ELEKTRISCHER IMPULS (nur Mobile, bei Tap/Click)
   SVG-Rahmen läuft per stroke-dashoffset einmal um die Card.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Card braucht position:relative damit der SVG-Overlay passt */
  .also__item {
    position: relative;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  /* Gleiches für Badge-Cards (Qualität) */
  .badge__item {
    position: relative;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  /* SVG-Overlay: absolut, füllt die Card exakt aus */
  .also__item .pulse-border,
  .badge__item .pulse-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: var(--radius-md);
    overflow: visible;
    z-index: 10;
  }

  .also__item .pulse-border rect,
  .badge__item .pulse-border rect {
    fill: none;
    stroke: #EF4F00;
    stroke-width: 2;
    rx: 16;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(239,79,0,0.8));
  }

  /* Keyframe: Impuls läuft einmal um den Rahmen herum */
  @keyframes pulseRun {
    0%   { stroke-dashoffset: 0;    opacity: 0;   }
    5%   { opacity: 1; }
    80%  { stroke-dashoffset: -var(--perimeter); opacity: 0.9; }
    100% { stroke-dashoffset: calc(-1 * var(--perimeter)); opacity: 0; }
  }

  .also__item.pulse-active .pulse-border rect,
  .badge__item.pulse-active .pulse-border rect {
    animation: pulseRun 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }

  /* Icon-Aufleuchten beim Tap — also__item */
  @keyframes iconTap {
    0%   { background: var(--c-gold-subtle);  border-color: var(--c-gold-line); }
    40%  { background: rgba(239,79,0,0.28);   border-color: rgba(239,79,0,0.70); box-shadow: 0 0 10px rgba(239,79,0,0.4); }
    100% { background: var(--c-gold-subtle);  border-color: var(--c-gold-line); box-shadow: none; }
  }
  .also__item.pulse-active .also__icon {
    animation: iconTap 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }

  /* Icon-Aufleuchten beim Tap — badge__item */
  .badge__item.pulse-active .badge__icon {
    animation: iconTap 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }

}

@media (prefers-reduced-motion: reduce) {
  .also__item .pulse-border rect,
  .badge__item .pulse-border rect { animation: none !important; }
  .also__item.pulse-active .also__icon,
  .badge__item.pulse-active .badge__icon { animation: none !important; }
}

/* ── Mobile: Sektions-Abstände reduzieren ── */
@media (max-width: 767px) {
  .also {
    padding: var(--space-6) 0; /* 56px statt 112px */
  }
  .also__container {
    gap: var(--space-4); /* 28px statt 56px */
  }
  .trust {
    padding: var(--space-6) 0;
  }
}
