/* ═══════════════════════════════════════════════════════════════
   MESEN GmbH — Premium Light CSS
   Design direction: Precision, trust, German Mittelstand authority
   Accent: Mesen Edelblau #16324F | Silver #C4C9CF
   ═══════════════════════════════════════════════════════════════ */

/* ── 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: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c-blue);
}
h1 { font-size: var(--text-h1); line-height: 0.94; }
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: 1200px; 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-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  opacity: 0.75;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--c-silver);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 380ms var(--ease);
}

.header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(22,50,79,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
.header__logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop nav */
.header__nav {
  display: none;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(22,50,79,0.10);
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
@media (min-width: 900px) { .header__nav { display: flex; } }

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(22,50,79,0.70);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 200ms var(--ease);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--c-blue);
  background: rgba(22,50,79,0.06);
}
.nav-link.active {
  color: var(--c-bg-0);
  background: var(--c-blue);
}

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

/* Header CTA button */
.header__cta-btn {
  display: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-blue);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.header__cta-btn:hover { background: var(--c-blue-mid); transform: translateY(-1px); }
@media (min-width: 900px) { .header__cta-btn { display: flex; align-items: center; gap: 8px; } }

/* Mobile header — always has bg */
@media (max-width: 899px) {
  .header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(22,50,79,0.08);
  }
  .header__container { height: 88px; }
  .header__logo img { height: 71px; }
}

/* ── BURGER ─────────────────────────────────────────────────── */
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px; border-radius: var(--radius-sm);
  transition: background 200ms var(--ease);
}
.burger:hover { background: var(--c-blue-subtle); }
.burger span { display: block; height: 1.5px; background: var(--c-blue); transition: all 260ms var(--ease); transform-origin: center; }
.burger span:first-child { width: 100%; }
.burger span:nth-child(2) { width: 72%; }
.burger span:last-child { width: 88%; }
.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; } }

/* Mobile nav dropdown */
.header__nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(22,50,79,0.10);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 8px var(--m-pad) 20px;
  gap: 0;
  z-index: 1001;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-top: 2px solid var(--c-blue);
}
.header__nav.active .nav-link {
  padding: 14px var(--space-2);
  font-size: 14px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--c-text);
  border-bottom: 1px solid rgba(22,50,79,0.06);
  letter-spacing: 0.10em;
}
.header__nav.active .nav-link::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-silver);
  margin-right: 10px;
  vertical-align: middle;
  transition: background 180ms var(--ease);
}
.header__nav.active .nav-link:hover { color: var(--c-blue); background: var(--c-blue-subtle); }
.header__nav.active .nav-link:hover::before { background: var(--c-blue); }
.header__nav.active .nav-link.active { color: var(--c-blue); }
.header__nav.active .nav-link.active::before { background: var(--c-blue); }
.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: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  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: 1.5px solid transparent;
}
.btn:active { transform: scale(0.97); }
.btn--large { padding: 16px 32px; font-size: 13px; }

.btn--primary {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  box-shadow: 0 4px 20px rgba(22,50,79,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn--primary:hover {
  background: var(--c-blue-mid);
  border-color: var(--c-blue-mid);
  box-shadow: 0 8px 28px rgba(22,50,79,0.30);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--c-blue);
  border-color: rgba(22,50,79,0.30);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.btn--secondary:hover {
  background: var(--c-blue-subtle);
  border-color: rgba(22,50,79,0.55);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-blue-deep);
}

.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: brightness(0.75) contrast(1.08);
  display: block;
}

/* Placeholder bg wenn kein Bild */
.hero__bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, #0E2236 0%, #16324F 40%, #1E4570 100%);
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.6) 60px, rgba(255,255,255,0.6) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.6) 60px, rgba(255,255,255,0.6) 61px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(14,34,54,0.72) 0%,
    rgba(14,34,54,0.50) 50%,
    rgba(14,34,54,0.22) 100%
  );
}
@media (max-width: 767px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(14,34,54,0.50) 0%,
      rgba(14,34,54,0.40) 40%,
      rgba(14,34,54,0.72) 80%,
      rgba(14,34,54,0.92) 100%
    );
  }
}

.hero__gradient {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(14,34,54,0.85) 0%, transparent 50%);
  pointer-events: none;
}

/* SVG hill shape */
.hero__scene { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
@media (max-width: 767px) { .hero__scene { display: none; } }

/* Desktop layout */
.hero__container { position: relative; z-index: 10; width: 100%; }
.hero__content {
  position: relative; z-index: 11;
  max-width: 600px;
  padding: 0 0 96px;
}
.hero__container--desktop { display: flex; }
.hero__mobile-top, .hero__mobile-bottom { display: none; }

@media (max-width: 767px) {
  .hero__container--desktop { display: none; }
  .hero { align-items: stretch; }
  .hero__mobile-top {
    display: block;
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 10; padding: 88px 20px 0;
  }
  .hero__mobile-top .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-size: 9px; font-weight: 700;
    letter-spacing: 0.22em; color: var(--c-silver); text-transform: uppercase;
    margin-bottom: 12px; opacity: 0.90;
  }
  .hero__mobile-top .hero__eyebrow::before {
    content: ''; display: inline-block; width: 18px; height: 1.5px; background: var(--c-silver);
  }
  .hero__mobile-top .hero__title {
    font-size: clamp(36px, 9.5vw, 50px); line-height: 0.94;
    margin-bottom: 14px; color: #fff;
  }
  .hero__mobile-top .hero__subtitle {
    font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.70); margin: 0;
  }
  .hero__mobile-bottom {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    position: absolute; bottom: 110px; left: 0; right: 0;
    z-index: 10; padding: 0 20px;
  }
  .hero__mobile-bottom .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__trust-mobile {
    font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; margin-top: 4px;
  }
}

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

.hero__title { color: #fff; margin-bottom: var(--space-3); }
.hero__subtitle {
  font-size: var(--text-body); color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-4); line-height: 1.65; max-width: 460px;
}

.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 20px;
  font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO / VERSPRECHEN
   ═══════════════════════════════════════════════════════════════ */
.intro {
  padding: var(--m-block) 0;
  background: var(--c-bg-0);
  position: relative;
}
.intro::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--divider-subtle);
}

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

.intro__statement h2 {
  font-size: clamp(32px, 7vw, 58px);
  line-height: 1;
  color: var(--c-blue);
}
.intro__statement h2 em {
  font-style: normal;
  color: var(--c-silver-deep);
}

/* ── Intro Video Card ───────────────────────────────────────── */
.intro__video-card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-deep);
}
@media (max-width: 767px) {
  .intro__video-card { aspect-ratio: 16 / 9; border-radius: var(--radius-md); }
}
.intro__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block; pointer-events: none;
  filter: brightness(0.70) contrast(1.05) saturate(0.80);
}
.intro__video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(10,24,40,0.72) 0%,
    rgba(14,34,54,0.50) 50%,
    rgba(22,50,79,0.20) 100%
  );
  pointer-events: none;
}
.intro__video-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-5); z-index: 2;
}
.intro__video-text .label { color: rgba(196,201,207,0.80); margin-bottom: var(--space-2); }
.intro__video-text h2 {
  font-size: clamp(28px, 5vw, 48px); line-height: 1.0;
  color: #fff; margin: 0;
}
.intro__video-text h2 em {
  font-style: normal; color: rgba(196,201,207,0.65);
}

.intro__list { display: flex; flex-direction: column; gap: 0; }
.intro__item {
  position: relative;
  padding: var(--space-4) 0 var(--space-4) 56px;
  border-bottom: 1px solid var(--c-grey-2);
}
.intro__item:last-child { border-bottom: none; }
.intro__item:hover .intro__number { opacity: 0.4; }

.intro__number {
  position: absolute; left: 0; top: var(--space-4);
  font-family: var(--font-head); font-size: 38px; line-height: 1;
  color: var(--c-blue); opacity: 0.12; letter-spacing: 0.04em;
  transition: opacity 280ms var(--ease);
}
.intro__item h3 {
  font-size: clamp(15px, 3.5vw, 18px); margin-bottom: 5px;
  color: var(--c-blue); letter-spacing: 0.04em;
}
.intro__item p { color: var(--c-muted); line-height: 1.6; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   LEISTUNGEN — Tab Slider
   ═══════════════════════════════════════════════════════════════ */
.services {
  padding: var(--m-block) 0;
  background: var(--c-bg-1);
  position: relative;
}
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--divider-subtle);
}

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

.services__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto 1fr;
    gap: var(--space-5);
    align-items: start;
  }
}

.services__rail {
  display: flex; flex-direction: column; gap: 3px;
  position: relative; z-index: 2;
  background: var(--c-bg-1);
}
@media (min-width: 1024px) {
  .services__rail {
    grid-column: 1;
    grid-row: 1 / 3;
    flex-direction: column;
    align-self: start;
  }
}
@media (max-width: 1023px) {
  .services__rail {
    flex-direction: row; overflow-x: auto; gap: 6px;
    padding-bottom: 0; scrollbar-width: none; -ms-overflow-style: none;
    margin-bottom: var(--space-3);
  }
  .services__rail::-webkit-scrollbar { display: none; }
}

.service-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--c-bg-0);
  border: 1px solid var(--c-grey-2);
  border-radius: var(--radius-pill);
  text-align: left;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  cursor: pointer; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-tab:hover:not(.active) { background: var(--c-bg-2); border-color: var(--c-silver); }
.service-tab:active { transform: scale(0.97); }

@media (max-width: 1023px) { .service-tab { flex-shrink: 0; padding: 10px 18px; white-space: nowrap; } }

.service-tab.active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  box-shadow: 0 4px 20px rgba(22,50,79,0.22);
}
.service-tab.active .tab__number { color: rgba(255,255,255,0.35); opacity: 1; }
.service-tab.active .tab__title { color: #fff; }
.service-tab.active .tab__arrow { color: rgba(255,255,255,0.55); }

.tab__number {
  font-family: var(--font-head); font-size: 16px;
  color: var(--c-silver); opacity: 0.8; line-height: 1;
  transition: all 200ms var(--ease); flex-shrink: 0;
}
.tab__title {
  flex: 1; font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  color: var(--c-blue); letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 200ms var(--ease);
}
.tab__arrow { color: var(--c-silver); display: none; }
@media (min-width: 1024px) { .tab__arrow { display: flex; } }

.services__panel-wrap {
  position: relative; border-radius: var(--radius-large);
  overflow: hidden; min-height: 320px;
  box-shadow: var(--shadow-deep);
}
@media (min-width: 1024px) {
  .services__panel-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 480px;
  }
}

.services__edge-fade {
  display: none;
}

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

/* ── SERVICE CARD: Video 100%, Text absolut unten ──────────── */
.service-detail {
  flex: 0 0 100%; width: 100%;
  position: relative;
  height: 420px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  pointer-events: none;
  background: var(--c-blue-deep);
}
@media (min-width: 1024px) {
  .service-detail {
    height: 480px;
  }
}
.service-detail.active { pointer-events: auto; }

.service-detail__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block; pointer-events: none;
  filter: brightness(0.78) contrast(1.05) saturate(0.82);
  z-index: 0;
}

.service-detail__video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(10,22,40,0.08)  0%,
    rgba(10,22,40,0.12) 35%,
    rgba(10,22,40,0.55) 58%,
    rgba(8,18,34,0.88)  78%,
    rgba(6,14,28,0.97)  100%
  );
}

.service-detail__top {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex; flex-direction: column; gap: 10px;
}
.service-detail__top h3 {
  font-size: clamp(20px, 2.8vw, 26px);
  color: #fff; margin: 0; line-height: 1.05;
  text-shadow: 0 1px 12px rgba(0,0,0,0.40);
}
.service-detail__top p {
  color: rgba(255,255,255,0.70);
  font-size: 13.5px; line-height: 1.65; margin: 0;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.service-tag {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill); padding: 3px 10px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

.service-datastrip {
  display: flex; align-items: flex-end;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.datastrip__item { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.datastrip__divider {
  width: 1px; align-self: stretch;
  background: rgba(255,255,255,0.18);
  margin: 0 var(--space-4); flex-shrink: 0;
}
.datastrip__label {
  font-family: var(--font-body); font-size: 9px; font-weight: 700;
  letter-spacing: 0.20em; color: rgba(255,255,255,0.48); text-transform: uppercase;
}
.datastrip__value {
  font-family: var(--font-head); font-size: clamp(22px, 3vw, 28px);
  color: #fff; letter-spacing: 0.02em; line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

.services__progress {
  position: relative; height: 2px;
  background: var(--c-grey-2); z-index: 1;
  border-radius: var(--radius-pill);
  margin: 10px 0 0;
  overflow: hidden;
}
.services__progress-fill {
  height: 100%; width: 14.28%;
  background: linear-gradient(to right, var(--c-silver), var(--c-blue-light));
  border-radius: var(--radius-pill);
  transition: width 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1024px) { .services__progress { display: none; } }

/* Mobile */
@media (max-width: 767px) {
  /* Letzter Tab angeschnitten = Swipe-Hint */
  .services__rail {
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 36px), transparent 100%);
    mask-image: linear-gradient(to right, black calc(100% - 36px), transparent 100%);
  }
  /* Pills auf Mobile ausblenden — nur Desktop zeigt sie */
  .service-tags { display: none; }
  .services__panel-wrap {
    overflow: hidden;
    min-height: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 28px rgba(0,0,0,0.13);
  }
  .service-detail {
    height: 440px;
    border-radius: var(--radius-md);
  }
  .service-detail__video-overlay {
    background: linear-gradient(to bottom,
      rgba(6,12,26,0.02)  0%,
      rgba(6,12,26,0.08) 28%,
      rgba(6,12,26,0.65) 54%,
      rgba(4,10,22,0.94) 74%,
      rgba(2,6,16,1.00)  100%
    );
  }
  .service-detail__top {
    padding: 0 20px 24px;
    gap: 10px;
  }
  .service-detail__top h3 {
    font-size: 20px;
    line-height: 1.08;
  }
  .service-detail__top p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.55;
  }
  .service-datastrip { padding-top: 12px; }
  .datastrip__value { font-size: 21px; }
  .datastrip__divider { margin: 0 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS — Ablauf
   ═══════════════════════════════════════════════════════════════ */
.process {
  padding: var(--m-block) 0;
  background: var(--c-bg-0);
  position: relative;
}
.process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--divider-subtle);
}

.process__header { text-align: center; margin-bottom: var(--space-6); }
.process__header p { color: var(--c-muted); max-width: 560px; margin: var(--space-2) auto 0; font-size: 15px; }

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

.process__step {
  display: flex; flex-direction: column;
  background: var(--c-bg-0);
  border: 1px solid var(--c-grey-2);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease);
  box-shadow: var(--shadow-card);
  position: relative;
}
.process__step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--c-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 300ms var(--ease);
}
.process__step:hover { border-color: rgba(22,50,79,0.20); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.process__step:hover::before { transform: scaleX(1); }

.step__num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-blue); color: #fff;
  font-family: var(--font-head); font-size: 20px; line-height: 1;
  margin: var(--space-4) var(--space-4) 0;
  flex-shrink: 0;
}

.step__body { padding: var(--space-3) var(--space-4) var(--space-4); flex: 1; }
.step__body h3 { font-size: clamp(16px, 3.5vw, 20px); color: var(--c-blue); margin-bottom: 6px; }
.step__body p { color: var(--c-muted); line-height: 1.65; font-size: 14px; }

/* Connector line on desktop */
@media (min-width: 960px) {
  .process__step:not(:last-child)::after {
    content: '';
    position: absolute; top: 44px + 20px; right: -20px;
    width: 20px; height: 1px;
    background: var(--c-silver-line);
    z-index: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TEAM / ÜBER UNS
   ═══════════════════════════════════════════════════════════════ */
.team {
  padding: var(--m-block) 0;
  background: var(--c-bg-1);
  position: relative;
}
.team::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--divider-subtle);
}

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

.team__photo-wrap {
  position: relative; border-radius: var(--radius-large);
  overflow: hidden; border: 1px solid var(--c-grey-2);
  box-shadow: var(--shadow-deep);
}
.team__photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(14,34,54,0.30) 0%, transparent 50%);
}
.team__photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: center top; display: block;
  filter: brightness(0.95) contrast(1.04);
}
.team__photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-3) var(--space-4);
  z-index: 2;
}
.team__photo-label p {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.80); margin: 0;
}

.team__info { display: flex; flex-direction: column; gap: var(--space-4); }
.team__info h2 { margin-bottom: var(--space-1); }
.team__role {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-silver-deep);
  margin-bottom: var(--space-3);
}
.team__bio { color: var(--c-muted); line-height: 1.75; 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-grey-2);
}
.team__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border: 1.5px solid rgba(22,50,79,0.25);
  border-radius: var(--radius-pill);
  color: var(--c-blue); font-family: var(--font-body); font-size: 15px; font-weight: 700;
  background: transparent; transition: all 200ms var(--ease);
}
.team__phone:hover { background: var(--c-blue-subtle); border-color: rgba(22,50,79,0.50); }

/* ═══════════════════════════════════════════════════════════════
   TRUST BADGES
   ═══════════════════════════════════════════════════════════════ */
.trust {
  padding: var(--m-block) 0;
  background: var(--c-blue);
  position: relative;
  overflow: hidden;
}
.trust__pattern {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.8) 40px, rgba(255,255,255,0.8) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.8) 40px, rgba(255,255,255,0.8) 41px);
}

.trust__container { position: relative; z-index: 1; }
.trust__header { text-align: center; margin-bottom: var(--space-5); }
.trust__header h2 { color: #fff; }
.trust__header p { color: rgba(255,255,255,0.60); max-width: 500px; margin: var(--space-2) auto 0; font-size: 15px; }

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

.badge__item {
  display: flex; flex-direction: column; gap: 10px;
  padding: var(--space-4);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease);
}
.badge__item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.badge__icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-silver-light);
}
.badge__title {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.90); letter-spacing: 0.04em; line-height: 1.3;
}
.badge__text { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   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: var(--divider-subtle);
}

.faq__header { text-align: center; margin-bottom: var(--space-5); }
.faq__list { display: flex; flex-direction: column; gap: 2px; max-width: 740px; margin: 0 auto; }

.faq__item {
  background: var(--c-bg-0); border: 1px solid var(--c-grey-2);
  border-radius: var(--radius-md);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.faq__item:hover { border-color: rgba(22,50,79,0.20); }
.faq__item.is-open { border-color: rgba(22,50,79,0.30); box-shadow: 0 2px 16px rgba(22,50,79,0.06); }

.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: 14.5px; font-weight: 600; line-height: 1.4; flex: 1; }
.faq__item.is-open .faq__question { color: var(--c-blue); }

.faq__icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-bg-2); border: 1px solid var(--c-grey-3);
  position: relative; transition: all 280ms var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--c-silver-deep); 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: var(--c-blue-subtle); border-color: rgba(22,50,79,0.30); }
.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-blue); }

.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.75; }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: var(--space-8) 0;
  background: var(--c-bg-1);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--divider-subtle);
}

.cta__shape {
  position: absolute; top: -30%; right: -10%; width: 50vw; height: 50vw;
  max-width: 520px; max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,50,79,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta__shape-2 {
  position: absolute; bottom: -20%; left: -8%; width: 35vw; height: 35vw;
  max-width: 360px; max-height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,201,207,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta__container { text-align: center; position: relative; z-index: 1; }
.cta__title { font-size: clamp(28px, 6.5vw, 58px); margin-bottom: var(--space-3); }
.cta__text {
  font-size: 15px; color: var(--c-muted); margin-bottom: var(--space-5);
  letter-spacing: 0.02em; max-width: 480px; margin-left: auto; margin-right: auto;
}
.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-blue); font-weight: 600; }
.cta__contact a:hover { color: var(--c-blue-mid); }

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

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { background: var(--c-blue-deep); position: relative; }
.footer__topline {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--c-silver-line), transparent);
}

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

.footer__logo img { height: 48px; width: auto; display: block; opacity: 0.85; margin-bottom: var(--space-2); transition: opacity 200ms; filter: brightness(0) invert(1); }
.footer__logo img:hover { opacity: 1; }
.footer__tagline { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.6; max-width: 220px; }
.footer__since { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.28); margin-top: var(--space-2); }
.footer__since-line { flex: 1; max-width: 14px; height: 1px; background: rgba(196,201,207,0.40); }

.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-6);
  }
}

.footer__col-label {
  display: block; font-family: var(--font-body); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(196,201,207,0.55); 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.55); }
.footer__contact-list svg { flex-shrink: 0; color: rgba(255,255,255,0.25); }
.footer__contact-list a { color: rgba(255,255,255,0.55); transition: color 180ms; }
.footer__contact-list a:hover { color: rgba(255,255,255,0.88); }

.footer__nav { display: flex; flex-direction: column; gap: 4px; }
.footer__nav-link { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 180ms; padding: 2px 0; }
.footer__nav-link:hover { color: rgba(255,255,255,0.80); }

.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: 1200px; margin: 0 auto;
}
.footer__copy { font-size: 11.5px; color: rgba(255,255,255,0.25); }
.footer__bottom-dot { width: 2px; height: 2px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.footer__legal-link { font-size: 11.5px; color: rgba(255,255,255,0.25); transition: color 180ms; }
.footer__legal-link:hover { color: rgba(255,255,255,0.55); }

/* Mobile footer */
@media (max-width: 767px) {
  .footer__brand { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .footer__logo { display: flex; justify-content: center; margin-bottom: 4px; }
  .footer__logo img { height: auto; width: 200px; opacity: 0.85; }
  .footer__tagline { max-width: 100%; text-align: center; }
  .footer__since { justify-content: center; }
  .footer__since-line { display: none; }
  .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);
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__vdivider { display: none !important; }
  .footer__contact { grid-column: 1; }
  .footer__nav { grid-column: 2; text-align: right; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════════════════════════════ */
.mobile-cta {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(22,50,79,0.10);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding-bottom: env(safe-area-inset-bottom);
  transition: transform 300ms var(--ease);
}
@media (min-width: 768px) { .mobile-cta { display: none; } }
.mobile-cta--hidden { transform: translateY(100%); pointer-events: none; }

.mobile-cta__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 11px var(--space-2);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  transition: all 160ms var(--ease);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  color: var(--c-blue);
}
.mobile-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta__btn:active { background: var(--c-blue-subtle); 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(22,50,79,0.10), transparent);
}
.mobile-cta__btn--main {
  background: var(--c-blue); color: #fff;
  border-radius: var(--radius-pill);
  margin: 7px 12px;
  box-shadow: 0 2px 12px rgba(22,50,79,0.25);
  font-size: 10px;
}
.mobile-cta__btn--main:active { background: var(--c-blue-mid); }
.mobile-cta__btn--main svg { color: rgba(255,255,255,0.80); }

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



/* ═══════════════════════════════════════════════════════════════
   IMPRESSUM
   ═══════════════════════════════════════════════════════════════ */
.impressum {
  padding: var(--space-8) 0 var(--space-7);
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-line);
}
.impressum__container {
  max-width: 760px;
}
.impressum__header {
  margin-bottom: var(--space-5);
}
.impressum__header h2 {
  font-family: var(--font-head);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: var(--space-2);
}
.impressum__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-6);
}
.impressum__block h3 {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--c-muted);
  margin-bottom: var(--space-1);
}
.impressum__block p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--c-text);
  line-height: 1.65;
}
.impressum__block a {
  color: var(--c-blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--c-blue-line);
  transition: border-color var(--duration-fast) var(--ease);
}
.impressum__block a:hover { border-color: var(--c-blue); }
@media (max-width: 600px) {
  .impressum__body { grid-template-columns: 1fr; gap: var(--space-4); }
  .impressum { padding: var(--space-7) 0 var(--space-6); }
}
