/* ======================================================================
   leistungen.css — NUR Leistungen.html (Premium Animationen)
   ====================================================================== */

/* ── GLOBAL LOOK: wie Pakete/Kontakt/Über uns — nur body + Sternschnuppen ─ */
body[data-page="services"] .main--services {
  position: relative;
  z-index: 0;
}
body[data-page="services"] {
  background: var(--bg-base);
  color: rgba(255,255,255,.92);
}
body[data-page="services"] .section,
body[data-page="services"] section {
  background: transparent;
}

/* ── HERO (einheitlicher Hintergrund; kein zweiter Canvas/Orb-Layer) ─ */
body[data-page="services"] .srvPageHero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  background: transparent;
}

body[data-page="services"] .srvPageHero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvPageHero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

body[data-page="services"] .srvPageHero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}
body[data-page="services"] .srvPageHero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(52,211,255,.9);
  background: linear-gradient(135deg, rgba(124,92,255,.14), rgba(52,211,255,.10));
  border: 1px solid rgba(52,211,255,.26);
  border-radius: 999px;
  padding: .48rem 1.2rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
body[data-page="services"] .srvPageHero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(52,211,255,.95);
  box-shadow: 0 0 10px rgba(52,211,255,.8);
  animation: heroDotPulse 2.2s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.65); }
}

body[data-page="services"] .srvPageHero__headline {
  margin: 0;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.14;
  color: rgba(255,255,255,.97);
  text-shadow: 0 4px 40px rgba(124,92,255,.22), 0 0 60px rgba(52,211,255,.12);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms ease, transform 800ms ease;
}
body[data-page="services"] .srvPageHero__grad {
  display: block;
  margin-top: 0.02em;
  padding-bottom: 0.1em;
  line-height: 1.2;
  background: linear-gradient(
    110deg,
    rgba(124,92,255,.96) 0%,
    rgba(52,211,255,.96) 35%,
    rgba(124,92,255,.96) 70%,
    rgba(52,211,255,.92) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  animation: pkgGradShimmer 4s ease-in-out infinite;
}
@keyframes pkgGradShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

body[data-page="services"] .srvPageHero__sub {
  font-size: clamp(16px, 1.65vw, 19px);
  color: rgba(255,255,255,.52);
  line-height: 1.70;
  margin: 0;
  max-width: 50ch;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 750ms ease, transform 750ms ease;
}
body[data-page="services"] .srvPageHero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
body[data-page="services"] .srvPageHero [data-hero-item] {
  /* JS setzt --i nach DOM-Reihenfolge -> sanfter Stagger ohne JS-Animation */
  --i: 0;
  transition-delay: calc(var(--i, 0) * 90ms);
}
body[data-page="services"] .srvPageHero__eyebrow.is-visible,
body[data-page="services"] .srvPageHero__headline.is-visible,
body[data-page="services"] .srvPageHero__sub.is-visible,
body[data-page="services"] .srvPageHero__actions.is-visible,
body[data-page="services"] .srvPageHero__trust.is-visible,
body[data-page="services"] .srvPageHero__visual.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Wenn der Hero noch nicht is-visible ist, fade-in über Stagger nach Render-Tick */
body[data-page="services"] .srvPageHero [data-hero-item].is-visible {
  /* delay greift via --i */
}
body[data-page="services"] .srvPageHero__visual.is-visible {
  transform: translateX(0);
}

body[data-page="services"] .srvPageHero__trust {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 16px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
body[data-page="services"] .srvPageHero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
body[data-page="services"] .srvPageHero__trust-num {
  display: block;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.96);
}
body[data-page="services"] .srvPageHero__trust-label {
  font-size: 11px;
  color: rgba(255,255,255,.38);
  letter-spacing: .05em;
  margin-top: 2px;
}
body[data-page="services"] .srvPageHero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}

body[data-page="services"] .srvPageHero__visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 900ms ease, transform 900ms ease;
}
body[data-page="services"] .srvPageHero__visual-glow {
  position: absolute;
  inset: -18% -22% -28% -22%;
  background:
    radial-gradient(ellipse 85% 70% at 18% 12%, rgba(124, 92, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 80% 65% at 88% 88%, rgba(52, 211, 255, 0.1), transparent 58%);
  opacity: 0.34;
  filter: blur(28px);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 48%, #000 0%, #000 42%, transparent 76%);
  mask-image: radial-gradient(ellipse 92% 88% at 50% 48%, #000 0%, #000 42%, transparent 76%);
}
body[data-page="services"] .srvPageHero__visual-stack {
  position: relative;
  display: grid;
  gap: 12px;
}
.srvMiniCard {
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(26,28,44,.88);
  backdrop-filter: blur(22px);
  box-shadow:
    0 22px 56px rgba(0,0,0,.48),
    0 0 0 1px rgba(124,92,255,.08),
    inset 0 1px 0 rgba(255,255,255,.08);
  display: grid;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transform-origin: center;
}
.srvMiniCard__bar {
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(124,92,255,.92), rgba(52,211,255,.75));
  opacity: .9;
}
.srvMiniCard strong {
  color: rgba(255,255,255,.95);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.srvMiniCard span {
  color: rgba(148,163,184,1);
  font-size: 12px;
}
.srvMiniCard--a { transform: translateY(0); }
.srvMiniCard--b { transform: translateY(0); opacity: .92; }
.srvMiniCard--c { transform: translateY(0); opacity: .88; }

/* Subtle float */
@media (prefers-reduced-motion: no-preference) {
  .srvMiniCard--a { animation: srvFloatA 7s ease-in-out infinite; }
  .srvMiniCard--b { animation: srvFloatB 8s ease-in-out infinite; }
  .srvMiniCard--c { animation: srvFloatC 9s ease-in-out infinite; }
  @keyframes srvFloatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
  @keyframes srvFloatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
  @keyframes srvFloatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
}

/* ── HERO: 3 Demos — Showcase (Orbit, Reinflug, leichtes Schweben) ── */
body[data-page="services"] .srvHeroBrowsers--showcase {
  position: relative;
  width: 100%;
  height: clamp(432px, 72vw, 540px);
  margin-top: 6px;
}
body[data-page="services"] .srvHeroBrowsers__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
/* Orbit-Ringe + Bodenlicht */
body[data-page="services"] .srvHeroBrowsers--showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 118%;
  max-width: 520px;
  height: 52%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 100% 95% at 50% 0%, rgba(124, 92, 255, 0.1), transparent 70%),
    radial-gradient(ellipse 95% 88% at 50% 28%, rgba(52, 211, 255, 0.05), transparent 74%);
  filter: blur(42px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at 50% 22%, #000 0%, #000 28%, transparent 72%);
  mask-image: radial-gradient(ellipse 78% 70% at 50% 22%, #000 0%, #000 28%, transparent 72%);
}
body[data-page="services"] .srvHeroBrowsers--showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 88%;
  max-width: 380px;
  height: 22%;
  transform: translateX(-50%) scaleY(0.55);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(52, 211, 255, 0.035) 38%, transparent 92%);
  filter: blur(22px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, #000 0%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, #000 0%, #000 35%, transparent 78%);
}
body[data-page="services"] .srvHeroBrowsers__rings {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(108%, 400px);
  height: 0;
  padding-bottom: min(108%, 400px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
body[data-page="services"] .srvHeroBrowsers__rings::before,
body[data-page="services"] .srvHeroBrowsers__rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  /* Nur Ringlinie — keine volle Scheibe (sonst harter Kasten/Übergang zum Sternhimmel) */
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      from 140deg,
      rgba(124, 92, 255, 0.28),
      rgba(52, 211, 255, 0.22),
      rgba(124, 92, 255, 0.14),
      rgba(52, 211, 255, 0.24),
      rgba(124, 92, 255, 0.28)
    )
    border-box;
  opacity: 0.26;
  inset: 0;
}
body[data-page="services"] .srvHeroBrowsers__rings::after {
  inset: 11%;
  opacity: 0.18;
  animation: srvHeroRingTurn 42s linear infinite;
}
@keyframes srvHeroRingTurn {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .srvHeroBrowsers__rings::after {
    animation: none;
  }
}

body[data-page="services"] .srvHeroBrowser {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  background: #0e0f16;
  will-change: transform, opacity, filter;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.11),
    0 0 40px rgba(124, 92, 255, 0.2),
    0 0 72px rgba(52, 211, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
body[data-page="services"] .srvHeroBrowser__bob {
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  transform: translateZ(0);
}
body[data-page="services"] .srvHeroBrowser::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 32%;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 42%, transparent 100%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 4;
}
body[data-page="services"] .srvHeroBrowser::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(124, 92, 255, 0.18);
  pointer-events: none;
  z-index: 4;
}
body[data-page="services"] .srvHeroBrowser--back {
  left: 0;
  top: 16%;
  width: min(74%, 300px);
  transform: translate3d(0, 0, 0) rotate(-7.5deg) scale(0.9);
  transform-origin: 28% 88%;
  z-index: 1;
  filter: saturate(0.93) brightness(0.91);
}
body[data-page="services"] .srvHeroBrowser--mid {
  right: -3%;
  top: 2%;
  width: min(71%, 286px);
  transform: translate3d(0, 0, 0) rotate(10deg) scale(0.86);
  transform-origin: 82% 78%;
  z-index: 2;
  filter: saturate(0.96) brightness(0.93);
}
body[data-page="services"] .srvHeroBrowser--front {
  left: 50%;
  bottom: 0;
  width: min(100%, 360px);
  transform: translate3d(-50%, 0, 0) rotate(-2.5deg) scale(1);
  transform-origin: 50% 100%;
  z-index: 3;
  filter: saturate(1.03) brightness(1.03);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 50px rgba(124, 92, 255, 0.28),
    0 0 90px rgba(52, 211, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}
body[data-page="services"] .srvHeroBrowser--front::before {
  opacity: 0.22;
}

@media (prefers-reduced-motion: no-preference) {
  /* Versteckt bis Hero-Sichtbarkeit; Startpose für Reinflug */
  body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser--back {
    opacity: 0;
    transform: translate3d(-105%, 52%, 0) rotate(-26deg) scale(0.66);
    filter: saturate(0.93) brightness(0.91) blur(14px);
  }
  body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser--mid {
    opacity: 0;
    transform: translate3d(108%, -62%, 0) rotate(28deg) scale(0.64);
    filter: saturate(0.96) brightness(0.93) blur(12px);
  }
  body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser--front {
    opacity: 0;
    transform: translate3d(-50%, 108%, 0) rotate(12deg) scale(0.78);
    filter: saturate(1.03) brightness(1.03) blur(10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--back {
    animation: srvShowcaseInBack 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
  }
  body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--mid {
    animation: srvShowcaseInMid 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
  }
  body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--front {
    animation: srvShowcaseInFront 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
  }
  @keyframes srvShowcaseInBack {
    from {
      opacity: 0;
      transform: translate3d(-105%, 52%, 0) rotate(-26deg) scale(0.66);
      filter: saturate(0.93) brightness(0.91) blur(14px);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(-7.5deg) scale(0.9);
      filter: saturate(0.93) brightness(0.91) blur(0);
    }
  }
  @keyframes srvShowcaseInMid {
    from {
      opacity: 0;
      transform: translate3d(108%, -62%, 0) rotate(28deg) scale(0.64);
      filter: saturate(0.96) brightness(0.93) blur(12px);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(10deg) scale(0.86);
      filter: saturate(0.96) brightness(0.93) blur(0);
    }
  }
  @keyframes srvShowcaseInFront {
    from {
      opacity: 0;
      transform: translate3d(-50%, 108%, 0) rotate(12deg) scale(0.78);
      filter: saturate(1.03) brightness(1.03) blur(10px);
    }
    to {
      opacity: 1;
      transform: translate3d(-50%, 0, 0) rotate(-2.5deg) scale(1);
      filter: saturate(1.03) brightness(1.03) blur(0);
    }
  }
  body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--back .srvHeroBrowser__bob {
    animation: srvHeroBobA 5.8s ease-in-out 1.2s infinite;
  }
  body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--mid .srvHeroBrowser__bob {
    animation: srvHeroBobB 6.4s ease-in-out 1.35s infinite;
  }
  body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--front .srvHeroBrowser__bob {
    animation: srvHeroBobC 5.2s ease-in-out 1.5s infinite;
  }
  @keyframes srvHeroBobA {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  @keyframes srvHeroBobB {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  @keyframes srvHeroBobC {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
}

@media (max-width: 768px) {
  body[data-page="services"] .srvHeroBrowsers--showcase {
    height: clamp(400px, 118vw, 480px);
  }
  body[data-page="services"] .srvHeroBrowser--back {
    top: 20%;
    width: min(78%, 260px);
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(0.84);
  }
  body[data-page="services"] .srvHeroBrowser--mid {
    width: min(74%, 248px);
    right: -5%;
    transform: translate3d(0, 0, 0) rotate(8deg) scale(0.8);
  }
  body[data-page="services"] .srvHeroBrowser--front {
    width: min(100%, 300px);
    transform: translate3d(-50%, 0, 0) rotate(-2deg) scale(0.94);
  }
  @media (prefers-reduced-motion: no-preference) {
    body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser--back {
      opacity: 0;
      transform: translate3d(-95%, 40%, 0) rotate(-22deg) scale(0.7);
      filter: saturate(0.93) brightness(0.91) blur(12px);
    }
    body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser--mid {
      opacity: 0;
      transform: translate3d(95%, -55%, 0) rotate(24deg) scale(0.68);
      filter: saturate(0.96) brightness(0.93) blur(10px);
    }
    body[data-page="services"] .srvPageHero__visual:not(.is-visible) .srvHeroBrowser--front {
      opacity: 0;
      transform: translate3d(-50%, 100%, 0) rotate(10deg) scale(0.82);
      filter: saturate(1.03) brightness(1.03) blur(8px);
    }
    body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--back {
      animation: srvShowcaseInBackMob 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
    }
    body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--mid {
      animation: srvShowcaseInMidMob 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
    }
    body[data-page="services"] .srvPageHero__visual.is-visible .srvHeroBrowser--front {
      animation: srvShowcaseInFrontMob 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
    }
    @keyframes srvShowcaseInBackMob {
      from {
        opacity: 0;
        transform: translate3d(-95%, 40%, 0) rotate(-22deg) scale(0.7);
        filter: saturate(0.93) brightness(0.91) blur(12px);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(-6deg) scale(0.84);
        filter: saturate(0.93) brightness(0.91) blur(0);
      }
    }
    @keyframes srvShowcaseInMidMob {
      from {
        opacity: 0;
        transform: translate3d(95%, -55%, 0) rotate(24deg) scale(0.68);
        filter: saturate(0.96) brightness(0.93) blur(10px);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(8deg) scale(0.8);
        filter: saturate(0.96) brightness(0.93) blur(0);
      }
    }
    @keyframes srvShowcaseInFrontMob {
      from {
        opacity: 0;
        transform: translate3d(-50%, 100%, 0) rotate(10deg) scale(0.82);
        filter: saturate(1.03) brightness(1.03) blur(8px);
      }
      to {
        opacity: 1;
        transform: translate3d(-50%, 0, 0) rotate(-2deg) scale(0.94);
        filter: saturate(1.03) brightness(1.03) blur(0);
      }
    }
  }
}
/* Scroll-Hinweis: wie Pakete-Seite (.pkgHero .pkgHero__scroll) — gleiche Höhe */
body[data-page="services"] .srvPageHero__scroll {
  bottom: clamp(104px, 18vmin, 172px);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .srvHeroBrowsers__rings::after {
    animation: none;
  }
  body[data-page="services"] .srvHeroBrowser__bob {
    animation: none !important;
  }
  body[data-page="services"] .srvPageHero__visual .srvHeroBrowser {
    animation: none !important;
  }
  body[data-page="services"] .srvHeroBrowser--back,
  body[data-page="services"] .srvHeroBrowser--mid,
  body[data-page="services"] .srvHeroBrowser--front {
    filter: none !important;
  }
}

/* ── Demo-Browser (Slider + Hero mini) — LUKON Chrome: Violett/Cyan wie Site-Header ── */
body[data-page="services"] .srvDemoBrowser {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 340px;
  border-radius: inherit;
  overflow: hidden;
  background:
    radial-gradient(900px 180px at 15% 0%, rgba(124, 92, 255, 0.16), transparent 58%),
    radial-gradient(700px 160px at 92% 8%, rgba(52, 211, 255, 0.12), transparent 55%),
    linear-gradient(168deg, rgba(30, 32, 50, 0.99) 0%, rgba(18, 20, 32, 0.99) 52%, rgba(10, 11, 18, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(124, 92, 255, 0.14),
    0 0 0 2px rgba(0, 0, 0, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(124, 92, 255, 0.12);
}
body[data-page="services"] .srvDemoBrowser--mini {
  min-height: 0;
  height: 100%;
}
body[data-page="services"] .srvDemoBrowser__chrome {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background:
    radial-gradient(520px 80px at 8% 0%, rgba(124, 92, 255, 0.28), transparent 62%),
    radial-gradient(420px 70px at 95% 0%, rgba(52, 211, 255, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(36, 38, 58, 0.99) 0%, rgba(22, 24, 40, 0.98) 42%, rgba(16, 18, 30, 0.99) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.22) inset;
  position: relative;
}
body[data-page="services"] .srvDemoBrowser__chrome::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 92, 255, 0.45),
    rgba(52, 211, 255, 0.4),
    transparent
  );
  opacity: 0.55;
  pointer-events: none;
}
body[data-page="services"] .srvDemoBrowser__dots {
  position: relative;
  width: 52px;
  height: 12px;
  flex-shrink: 0;
}
body[data-page="services"] .srvDemoBrowser__dots::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow:
    14px 0 0 #febc2e,
    28px 0 0 #28c840;
}
body[data-page="services"] .srvDemoBrowser__url {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.03em;
  color: rgba(224, 242, 254, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 14, 24, 0.88) 0%, rgba(16, 18, 32, 0.72) 100%);
  border: 1px solid rgba(124, 92, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(52, 211, 255, 0.08);
}

/* Schloss — Akzentfarbe wie LUKON */
body[data-page="services"] .srvDemoBrowser__url::before {
  content: "";
  width: 10px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.78;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%2334d3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M7 11V8a5 5 0 0 1 10 0v3'/%3E%3Crect x='4' y='11' width='16' height='11' rx='2' stroke='%237c5cff' stroke-width='2'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
body[data-page="services"] .srvDemoBrowser__frame {
  flex: 1 1 auto;
  width: 100%;
  border: 0;
  min-height: 320px;
  background: #f8fafc;
  display: block;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.65),
    inset 0 0 0 3px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
body[data-page="services"] .srvDemoBrowser--mini .srvDemoBrowser__frame {
  min-height: 198px;
  height: 198px;
  pointer-events: none;
}
body[data-page="services"] .srvHeroBrowsers .srvDemoBrowser--mini .srvDemoBrowser__frame {
  border-radius: 0 0 16px 16px;
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvSlide__media--demo {
    min-height: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  body[data-page="services"] .srvSlide__media--demo .srvDemoBrowser {
    flex: 1;
    min-height: 500px;
  }
  body[data-page="services"] .srvDemoBrowser__frame {
    min-height: 480px;
  }
}
/* Demo-Inhalt lesbar halten: nur leichte Kanten, kein Wash über dem iframe */
body[data-page="services"] .srvSlide__media--demo::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 16%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.07) 0%, transparent 12%);
  pointer-events: none;
}

/* ── SLIDER: Stage-Demos (High-End Geräterahmen, wie Premium-Prototyp) ── */
body[data-page="services"] .srvDemoBrowser--stage {
  border-radius: 22px;
  position: relative;
  background:
    linear-gradient(125deg, rgba(124, 92, 255, 0.11) 0%, transparent 45%),
    radial-gradient(100% 90% at 50% -30%, rgba(52, 211, 255, 0.14), transparent 58%),
    linear-gradient(172deg, rgba(24, 26, 42, 1) 0%, rgba(10, 11, 20, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(124, 92, 255, 0.22),
    0 0 0 2px rgba(0, 0, 0, 0.5),
    0 36px 90px rgba(0, 0, 0, 0.58),
    0 0 100px rgba(124, 92, 255, 0.12),
    0 0 60px rgba(52, 211, 255, 0.06);
}
body[data-page="services"] .srvDemoBrowser--stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.65;
  pointer-events: none;
  z-index: 6;
  border-radius: 999px;
}
body[data-page="services"] .srvSlide.is-active .srvDemoBrowser--stage {
  border-color: rgba(52, 211, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(124, 92, 255, 0.35),
    0 0 0 2px rgba(0, 0, 0, 0.45),
    0 42px 100px rgba(0, 0, 0, 0.62),
    0 0 120px rgba(124, 92, 255, 0.2),
    0 0 80px rgba(52, 211, 255, 0.1);
}
body[data-page="services"] .srvDemoBrowser--stage .srvDemoBrowser__chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px 13px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%),
    radial-gradient(520px 88px at 10% 0%, rgba(124, 92, 255, 0.38), transparent 62%),
    radial-gradient(480px 80px at 96% 0%, rgba(52, 211, 255, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(40, 42, 64, 0.99) 0%, rgba(18, 20, 34, 0.99) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -12px 28px rgba(0, 0, 0, 0.2);
}
body[data-page="services"] .srvDemoBrowser--stage .srvDemoBrowser__url {
  flex: unset;
  min-width: 0;
  font-size: clamp(11px, 1.2vw, 12.5px);
  letter-spacing: 0.025em;
  padding: 8px 14px;
  border: 1px solid rgba(124, 92, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 32px rgba(52, 211, 255, 0.1);
}
body[data-page="services"] .srvDemoBrowser__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 253, 255, 0.95);
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 255, 0.4);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(52, 211, 255, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(52, 211, 255, 0.15);
}
body[data-page="services"] .srvDemoBrowser__pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.9);
}
@media (prefers-reduced-motion: no-preference) {
  body[data-page="services"] .srvDemoBrowser__pill::before {
    animation: srvStageLivePulse 2.4s ease-in-out infinite;
  }
  body[data-page="services"] .srvSlide.is-active .srvSlide__media--demo::after {
    animation: srvStageAmbient 5s ease-in-out infinite;
  }
  @keyframes srvStageLivePulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.65;
      transform: scale(0.92);
    }
  }
  @keyframes srvStageAmbient {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.82;
    }
  }
}
body[data-page="services"] .srvDemoBrowser--stage .srvDemoBrowser__frame {
  border-radius: 0 0 18px 18px;
  background: #f1f5f9;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 0 0 0 2px rgba(15, 23, 42, 0.05),
    inset 0 28px 56px rgba(15, 23, 42, 0.035);
}

body[data-page="services"] .srvDemoBrowser__openLink {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(135deg, rgba(9, 11, 21, 0.88), rgba(36, 42, 68, 0.86));
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(52, 211, 255, 0.2),
    0 0 34px rgba(124, 92, 255, 0.18);
  color: rgba(240, 249, 255, 0.98);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  animation: srvOpenLinkGlow 2.8s ease-in-out infinite;
}

body[data-page="services"] .srvDemoBrowser__openLink:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 211, 255, 0.62);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(52, 211, 255, 0.3),
    0 0 48px rgba(124, 92, 255, 0.26);
  filter: saturate(1.08);
}

body[data-page="services"] .srvDemoBrowser__openLink:focus-visible {
  outline: 2px solid rgba(52, 211, 255, 0.95);
  outline-offset: 2px;
}

@keyframes srvOpenLinkGlow {
  0%,
  100% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.38),
      0 0 18px rgba(52, 211, 255, 0.2),
      0 0 34px rgba(124, 92, 255, 0.18);
  }
  50% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.4),
      0 0 24px rgba(52, 211, 255, 0.3),
      0 0 42px rgba(124, 92, 255, 0.24);
  }
}

@media (min-width: 1024px) {
  body[data-page="services"] .srvSlider .srvSlide__media--demo {
    padding: 10px 12px 12px;
    box-sizing: border-box;
  }
  body[data-page="services"] .srvDemoBrowser--stage .srvDemoBrowser__frame {
    min-height: 500px;
  }
}
@media (max-width: 1024px) {
  body[data-page="services"] .srvDemoBrowser__openLink {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}
@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .srvDemoBrowser__pill::before {
    animation: none !important;
  }
  body[data-page="services"] .srvDemoBrowser__openLink {
    animation: none !important;
  }
  body[data-page="services"] .srvSlide.is-active .srvSlide__media--demo::after {
    animation: none !important;
  }
}

/* ── SECTION REVEAL ────────────────────────────────────────────────── */
body[data-page="services"] [data-animate-section] {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 900ms cubic-bezier(.16,1,.3,1), transform 900ms cubic-bezier(.16,1,.3,1), filter 900ms cubic-bezier(.16,1,.3,1);
}
body[data-page="services"] [data-animate-section].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body[data-page="services"] [data-magnetic] {
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}

/* ── HIGH-END SLIDER ──────────────────────────────────────────────── */
body[data-page="services"] .srvSlider {
  padding: clamp(56px, 7vw, 88px) 0;
}
body[data-page="services"] .srvSlider__head {
  text-align: center;
  margin-bottom: 22px;
}
body[data-page="services"] .srvSlider__head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 950;
  letter-spacing: -0.038em;
  color: rgba(255, 255, 255, 0.99);
  text-shadow:
    0 1px 32px rgba(124, 92, 255, 0.14),
    0 0 80px rgba(52, 211, 255, 0.06);
}
body[data-page="services"] .srvSlider__lead {
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  font-size: clamp(15px, 1.5vw, 17px);
}

body[data-page="services"] .srvSlider__shell {
  position: relative;
  margin-top: 26px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Höhe nur vom Slide-Viewport: Vorschau absolut, endet bündig mit Rahmen unten */
body[data-page="services"] .srvSlider__split {
  display: block;
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvSlider__split {
    position: relative;
    /* Platz für Vorschau + Abstand wie früheres grid-gap */
    padding-right: calc(244px + 24px);
  }
}
@media (min-width: 1200px) {
  body[data-page="services"] .srvSlider__split {
    padding-right: calc(268px + 28px);
  }
}

body[data-page="services"] .srvSlider__mainCol {
  min-width: 0;
}

body[data-page="services"] .srvSlider__previewCol {
  display: none;
  min-width: 0;
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvSlider__previewCol {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 244px;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
  }
}
@media (min-width: 1200px) {
  body[data-page="services"] .srvSlider__previewCol {
    width: 268px;
  }
}

body[data-page="services"] .srvSlider__previewMask {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(124, 92, 255, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(30, 32, 50, 0.88), rgba(14, 15, 24, 0.72));
  backdrop-filter: blur(22px) saturate(1.1);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(124, 92, 255, 0.14),
    0 22px 50px rgba(0, 0, 0, 0.42);
}

body[data-page="services"] .srvSlider__previewMask::before,
body[data-page="services"] .srvSlider__previewMask::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}
body[data-page="services"] .srvSlider__previewMask::before {
  top: 0;
  background: linear-gradient(180deg, rgba(14,15,22,.94), transparent);
}
body[data-page="services"] .srvSlider__previewMask::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(14,15,22,.94), transparent);
}

body[data-page="services"] .srvSlider__previewStream {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  body[data-page="services"] .srvSlider__previewStream[data-srv-marquee="1"] {
    animation: srvPreviewFlow 42s linear infinite;
  }
}
body[data-page="services"] .srvSlider__previewCol:hover .srvSlider__previewStream[data-srv-marquee="1"] {
  animation-play-state: paused;
}
@keyframes srvPreviewFlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

body[data-page="services"] .srvPreview {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 12px 13px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(32, 34, 52, 0.95), rgba(20, 22, 36, 0.9));
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.22s ease, background 0.28s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.28);
}
body[data-page="services"] .srvPreview:hover {
  border-color: rgba(124, 92, 255, 0.45);
  transform: translateX(-3px);
  background: linear-gradient(145deg, rgba(36, 38, 58, 0.98), rgba(24, 26, 42, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 0 32px rgba(124, 92, 255, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.32);
}
body[data-page="services"] .srvPreview.is-active {
  border-color: rgba(52, 211, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.28),
    0 14px 40px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(52, 211, 255, 0.12);
  background: linear-gradient(155deg, rgba(38, 40, 62, 1), rgba(22, 24, 40, 0.98));
}
body[data-page="services"] .srvPreview__thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,.35);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 2px 10px rgba(0,0,0,.35);
}
body[data-page="services"] .srvPreview__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}
body[data-page="services"] .srvPreview__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}
body[data-page="services"] .srvPreview__kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(52,211,255,.92);
}
body[data-page="services"] .srvPreview__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.98);
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

body[data-page="services"] .srvSlider__rail {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin: 0 auto 14px;
  width: min(620px, 92%);
}
body[data-page="services"] .srvSlider__rail-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,92,255,.9), rgba(52,211,255,.85));
  box-shadow: 0 0 24px rgba(124,92,255,.18);
  transition: width 250ms ease;
  position: relative;
  overflow: hidden;
}
body[data-page="services"] .srvSlider__rail-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%);
  animation: srvRailShimmer 2.8s ease-in-out infinite;
  opacity: .55;
}
@keyframes srvRailShimmer {
  0%, 35% { transform: translateX(-120%); opacity: 0; }
  55% { opacity: .65; }
  100% { transform: translateX(120%); opacity: 0; }
}

body[data-page="services"] .srvSlider__viewport {
  position: relative;
  outline: none;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    radial-gradient(120% 85% at 50% -10%, rgba(124, 92, 255, 0.14), transparent 55%),
    radial-gradient(90% 60% at 100% 100%, rgba(52, 211, 255, 0.08), transparent 50%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(12, 14, 24, 0.35) 100%);
  backdrop-filter: blur(22px) saturate(1.15);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(124, 92, 255, 0.16),
    0 0 80px rgba(124, 92, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
body[data-page="services"] .srvSlider__viewport::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at var(--px, 20%) var(--py, 20%), rgba(124,92,255,.16), transparent 52%),
    radial-gradient(circle at calc(var(--px, 20%) + 30%) calc(var(--py, 20%) + 25%), rgba(52,211,255,.12), transparent 55%);
  pointer-events: none;
  opacity: .85;
  transform: translateZ(0);
}
body[data-page="services"] .srvSlider__viewport::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,255,.5), rgba(52,211,255,.45), transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}
body[data-page="services"] .srvSlider__viewport:focus-visible {
  box-shadow:
    0 20px 56px rgba(0,0,0,.4),
    0 0 0 3px rgba(52,211,255,.35),
    0 0 0 1px rgba(124,92,255,.2);
}

body[data-page="services"] .srvSlider__track--main {
  display: grid;
  grid-template-areas: "srvSlideStack";
  position: relative;
  min-height: 560px;
}
body[data-page="services"] .srvSlider__track--main > .srvSlide {
  grid-area: srvSlideStack;
  width: 100%;
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  z-index: 0;
  transition: opacity 550ms cubic-bezier(.16,1,.3,1), transform 550ms cubic-bezier(.16,1,.3,1), border-color 450ms ease, box-shadow 550ms ease, background 450ms ease;
}
body[data-page="services"] .srvSlider__track--main > .srvSlide.is-active {
  opacity: 1;
  transform: translateY(-2px) scale(1.003);
  pointer-events: auto;
  z-index: 1;
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvSlider__track--main {
    min-height: 600px;
  }
  body[data-page="services"] .srvSlide {
    grid-template-columns: minmax(0, 1.48fr) minmax(0, 0.36fr);
    min-height: 600px;
  }
}

body[data-page="services"] .srvSlide {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(165deg, rgba(28, 30, 48, 0.96) 0%, rgba(16, 18, 30, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  overflow: hidden;
  min-height: 560px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(124, 92, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(0) scale(1);
  transition: transform 650ms cubic-bezier(.16, 1, 0.3, 1), border-color 450ms ease, box-shadow 650ms ease, background 450ms ease;
}
body[data-page="services"] .srvSlide::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 12% 0%, rgba(124,92,255,.28), transparent 58%),
    radial-gradient(circle at 88% 18%, rgba(52,211,255,.14), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms ease;
}
body[data-page="services"] .srvSlide.is-active {
  border-color: rgba(52, 211, 255, 0.42);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(124, 92, 255, 0.28),
    0 0 64px rgba(52, 211, 255, 0.12),
    0 0 100px rgba(124, 92, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.004);
  background: linear-gradient(168deg, rgba(32, 34, 54, 0.98) 0%, rgba(20, 22, 38, 0.99) 100%);
}
body[data-page="services"] .srvSlide.is-active::before {
  opacity: 1;
}

body[data-page="services"] .srvSlide__media {
  position: relative;
  min-height: 190px;
}
@media (max-width: 1024px) {
  /* Mobile: echter Phone-Viewport statt gestreckter Demo-Ansicht */
  body[data-page="services"] .srvSlide__media--demo {
    min-height: 0;
    padding: 0;
  }
  body[data-page="services"] .srvDemoBrowser--stage .srvDemoBrowser__chrome {
    display: none;
  }
  body[data-page="services"] .srvDemoBrowser--stage {
    border-radius: 16px;
    aspect-ratio: 9 / 16;
    min-height: 0;
    height: auto;
  }
  body[data-page="services"] .srvDemoBrowser--stage .srvDemoBrowser__frame {
    min-height: 0;
    height: 100%;
    border-radius: 16px;
  }
}
body[data-page="services"] .srvSlide__media--solid {
  background: var(--srv-solid, #4c1d95);
  min-height: 200px;
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvSlide__media--solid {
    align-self: stretch;
    height: 100%;
    min-height: 100%;
  }
}
body[data-page="services"] .srvSlide__media--solid::after {
  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.12), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(14,15,22,.48) 100%);
  opacity: 1;
}
body[data-page="services"] .srvSlide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.03);
  transition: transform 900ms cubic-bezier(.16,1,.3,1), filter 700ms ease;
}
body[data-page="services"] .srvSlide.is-active .srvSlide__media img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.06);
}
body[data-page="services"] .srvSlide__media:not(.srvSlide__media--demo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(124,92,255,.2), transparent 55%),
    linear-gradient(180deg, rgba(14,15,22,.06) 0%, rgba(14,15,22,.65) 100%);
}

body[data-page="services"] .srvSlide__body {
  padding: 14px 16px 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  transform: translate3d(0, 0, 0);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 100%);
}
@media (min-width: 1024px) {
  body[data-page="services"] .srvSlide__body {
    padding: 16px 18px 18px;
    align-self: end;
  }
}

body[data-page="services"] .srvSlide__title {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.99);
  text-shadow: 0 1px 28px rgba(124, 92, 255, 0.08);
}

body[data-page="services"] .srvSlide__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
}

body[data-page="services"] .srvSlide__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(224, 242, 254, 0.92);
  border: 1px solid rgba(52, 211, 255, 0.28);
  background: linear-gradient(145deg, rgba(124, 92, 255, 0.16), rgba(52, 211, 255, 0.09));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 14px rgba(0, 0, 0, 0.2);
}

body[data-page="services"] .srvSlide__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(52,211,255,.22);
  background: rgba(52,211,255,.08);
  color: rgba(226,232,240,.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Parallax hooks */
@media (prefers-reduced-motion: no-preference) {
  body[data-page="services"] .srvSlide__media img {
    transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) scale(1.03);
  }
  body[data-page="services"] .srvSlide.is-active .srvSlide__media img {
    transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) scale(1.07);
  }
  body[data-page="services"] .srvSlide__media--solid {
    transform: translate3d(calc(var(--mx, 0px) * 0.4), calc(var(--my, 0px) * 0.4), 0);
    transition: transform 900ms cubic-bezier(.16,1,.3,1);
  }
  body[data-page="services"] .srvSlide.is-active .srvSlide__media--solid {
    transform: translate3d(calc(var(--mx, 0px) * 0.55), calc(var(--my, 0px) * 0.55), 0) scale(1.02);
  }
  body[data-page="services"] .srvSlide__body {
    transform: translate3d(calc(var(--mx, 0px) * -0.35), calc(var(--my, 0px) * -0.35), 0);
  }
}
/* Legacy: Slides mit altem Fließtext (falls noch vorhanden) */
body[data-page="services"] .srvSlide h3:not(.srvSlide__title) {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.97);
  line-height: 1.2;
}
body[data-page="services"] .srvSlide p {
  margin: 0;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  font-size: 14px;
  max-width: 38ch;
}

body[data-page="services"] .srvSlider__controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
body[data-page="services"] .srvSlider__btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
body[data-page="services"] .srvSlider__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(124, 92, 255, 0.08));
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 28px rgba(124, 92, 255, 0.12);
}
body[data-page="services"] .srvSlider__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(32, 34, 52, 0.9), rgba(18, 20, 32, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.22);
}
body[data-page="services"] .srvSlider__swipeHint {
  display: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}
body[data-page="services"] .srvDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.18);
  transition: transform .25s ease, background .25s ease, width .25s ease;
}
body[data-page="services"] .srvDot[aria-selected="true"] {
  width: 22px;
  background: linear-gradient(90deg, rgba(124,92,255,.95), rgba(52,211,255,.85));
  border-color: rgba(255,255,255,.22);
}
@media (max-width: 1024px) {
  body[data-page="services"] .srvSlider__controls {
    margin-top: 10px;
    gap: 8px;
    justify-content: center;
  }
  body[data-page="services"] .srvSlider__btn {
    display: none;
  }
  body[data-page="services"] .srvSlider__dots {
    padding: 8px 12px;
  }
  body[data-page="services"] .srvSlider__swipeHint {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}

/* Netflix-artige Demo-Auswahl */
body[data-page="services"] .srvNetflix {
  overflow: hidden;
}

body[data-page="services"] .srvNetflix__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Smoother momentum scroll auf iOS */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  /* Tab-Outline fuer Tastatur-User */
  outline: none;
}
body[data-page="services"] .srvNetflix__viewport:focus-visible {
  outline: 2px solid rgba(52, 211, 255, .55);
  outline-offset: 4px;
  border-radius: 12px;
}
@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .srvNetflix__viewport {
    scroll-behavior: auto;
  }
}

body[data-page="services"] .srvNetflix__viewport::-webkit-scrollbar {
  display: none;
}

body[data-page="services"] .srvNetflix__track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding-inline: max(8px, calc((100% - min(44vw, 560px)) / 2));
}

body[data-page="services"] .srvNetflixCard {
  position: relative;
  width: min(44vw, 560px);
  min-width: min(44vw, 560px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(20, 24, 39, 0.95), rgba(10, 12, 20, 0.98));
  overflow: hidden;
  transform: scale(0.92);
  opacity: 0.55;
  transition:
    transform 380ms cubic-bezier(.22, 1, .36, 1),
    opacity 380ms ease,
    border-color 280ms ease,
    box-shadow 380ms ease;
  scroll-snap-align: center;
  cursor: pointer;
  /* Verhindert iOS-Touch-Highlight-Kasten */
  -webkit-tap-highlight-color: transparent;
}

body[data-page="services"] .srvNetflixCard.is-featured {
  border-color: rgba(52, 211, 255, 0.52);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    0 0 38px rgba(124, 92, 255, 0.2);
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .srvNetflixCard {
    transform: scale(1);
    opacity: 1;
    transition: none;
  }
}

body[data-page="services"] .srvNetflixCard__media {
  position: relative;
  height: clamp(240px, 30vw, 380px);
  background: #0b0f1f;
  overflow: hidden;
}

body[data-page="services"] .srvNetflixCard.is-featured .srvNetflixCard__media {
  height: clamp(240px, 30vw, 380px);
}

body[data-page="services"] .srvNetflixCard__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  transform: none;
  filter: saturate(1.02) contrast(1.01);
}

body[data-page="services"] .srvNetflixCard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0) 50%, rgba(6, 10, 20, 0.84) 100%),
    radial-gradient(circle at 50% 0, rgba(124, 92, 255, 0.16), transparent 60%);
}

body[data-page="services"] .srvNetflixCard__title {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(240, 246, 255, 0.94);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-page="services"] .srvNetflixCard__zoom {
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 0;
  background: linear-gradient(180deg, rgba(7, 9, 17, 0.08), rgba(7, 9, 17, 0.32));
  color: rgba(236, 248, 255, 0.95);
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  cursor: pointer;
}

/* Auf der aktiven Kachel immer sichtbar */
body[data-page="services"] .srvNetflixCard.is-featured .srvNetflixCard__zoom {
  opacity: 1 !important;
  pointer-events: auto;
}

/* Desktop-Hover: Button auch auf nicht-aktiven Kacheln einblenden,
   damit der Vergrößern-Hinweis nicht erst nach Zentrierung auftaucht. */
@media (hover: hover) and (pointer: fine) {
  body[data-page="services"] .srvNetflixCard:hover .srvNetflixCard__zoom {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Touch (kein Hover): kleiner Hinweis-Lupe oben rechts auf JEDER Kachel,
   damit immer klar ist, dass die Kachel "aufmachbar" ist. */
@media (hover: none) and (pointer: coarse) {
  body[data-page="services"] .srvNetflixCard__zoom {
    opacity: 1;
    pointer-events: auto;
    background: transparent;
  }
  body[data-page="services"] .srvNetflixCard:not(.is-featured) .srvNetflixCard__zoomIcon,
  body[data-page="services"] .srvNetflixCard:not(.is-featured) .srvNetflixCard__zoomText {
    display: none;
  }
  body[data-page="services"] .srvNetflixCard:not(.is-featured) .srvNetflixCard__zoom::after {
    content: "🔍";
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 18px;
    color: #ffffff;
    filter: grayscale(1) brightness(4);
    text-shadow: 0 0 8px rgba(124, 92, 255, .55);
    pointer-events: none;
  }
}

body[data-page="services"] .srvNetflixCard__zoomIcon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -74%);
  display: inline-block;
  font-size: 56px;
  line-height: 1;
  color: #ffffff;
  filter: none;
  box-shadow: none;
}

body[data-page="services"] .srvNetflixCard__zoomIcon::after {
  content: none;
}

body[data-page="services"] .srvNetflixCard__zoomText {
  position: absolute;
  left: 50%;
  top: calc(50% + 34px);
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(124, 92, 255, 0.6);
  white-space: nowrap;
  text-align: center;
}

body[data-page="services"] .srvDemoOverlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

body[data-page="services"] .srvDemoOverlay.is-open {
  display: block;
}

body[data-page="services"] .srvDemoOverlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 8, 0.78);
  backdrop-filter: blur(4px);
}

body[data-page="services"] .srvDemoOverlay__panel {
  position: relative;
  width: min(1280px, 94vw);
  height: min(88vh, 920px);
  margin: 4vh auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 10, 18, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

body[data-page="services"] .srvDemoOverlay__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="services"] .srvDemoOverlay__tabLink {
  justify-self: center;
  color: rgba(190, 237, 255, 0.98);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="services"] .srvDemoOverlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(10, 13, 24, 0.9);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

body[data-page="services"] .srvDemoOverlay__frame {
  width: 100%;
  height: calc(100% - 54px);
  border: 0;
  background: #fff;
}

@media (max-width: 980px) {
  body[data-page="services"] .srvNetflix__track {
    padding-inline: max(8px, calc((100% - 300px) / 2));
    gap: 10px;
  }
  body[data-page="services"] .srvNetflixCard {
    width: 300px;
    min-width: 300px;
  }
  body[data-page="services"] .srvNetflixCard.is-featured {
    width: 300px;
    min-width: 300px;
  }
  body[data-page="services"] .srvDemoOverlay__panel {
    width: 96vw;
    height: 90vh;
    margin-top: 3vh;
  }
  body[data-page="services"] .srvNetflixCard__frame {
    top: 0;
  }
}

/* (entfernt: dupliziert weiter oben) */

/* ── LEISTUNGSMODELL (animiertes Modell) ─────────────────────────────── */
body[data-page="services"] .ltsModel {
  padding: clamp(64px, 8vw, 96px) 0 clamp(46px, 6vw, 72px);
}

body[data-page="services"] .ltsModel__inner {
  display: grid;
  gap: var(--s-7);
}
@media (min-width: 1024px) {
  body[data-page="services"] .ltsModel__inner {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
}

body[data-page="services"] .ltsModel__copy {
  max-width: 560px;
}

body[data-page="services"] .ltsModel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: rgba(52,211,255,.92);
  background: linear-gradient(135deg, rgba(124,92,255,.14), rgba(52,211,255,.1));
  border: 1px solid rgba(52,211,255,.24);
  border-radius: 999px;
  padding: .46rem 1rem;
  width: fit-content;
}
body[data-page="services"] .ltsModel__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(52,211,255,.95);
  box-shadow: 0 0 12px rgba(52,211,255,.7);
}

body[data-page="services"] .ltsModel__copy h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
  color: rgba(255,255,255,.97);
  text-shadow: 0 1px 28px rgba(124, 92, 255, 0.1);
}

body[data-page="services"] .ltsModel__lead {
  margin: 0;
  color: rgba(255,255,255,.58);
  line-height: 1.72;
  max-width: 54ch;
}

/* Vier Karten, hochwertig + klar lesbar auf allen Breakpoints */
body[data-page="services"] .ltsModel__visual {
  position: relative;
  z-index: 0;
  min-width: 0;
  padding: clamp(8px, 1.8vw, 14px) 0 clamp(12px, 3vw, 28px);
}

body[data-page="services"] .ltsModel__cards {
  position: relative;
  display: grid;
  gap: clamp(12px, 1.5vw, 16px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: min(100%, 880px);
  margin-left: auto;
  margin-right: 0;
  padding-bottom: clamp(8px, 2vw, 16px);
  padding-left: 0;
  perspective: none;
}
body[data-page="services"] .ltsModel__cards::before {
  display: none;
}
body[data-page="services"] .ltsModel__cards::after {
  display: none;
}

@media (max-width: 1024px) {
  body[data-page="services"] .ltsModel__cards {
    margin-left: 0;
    max-width: none;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  body[data-page="services"] .ltsModel {
    padding: clamp(52px, 12vw, 70px) 0 clamp(36px, 10vw, 56px);
  }
  body[data-page="services"] .ltsModel__inner {
    gap: clamp(24px, 7vw, 34px);
  }
  body[data-page="services"] .ltsModel__copy h2 {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.12;
    margin-bottom: 10px;
  }
  body[data-page="services"] .ltsModel__lead {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.62;
  }

  /* Mobile: klare Karten, kein Überlappen -> kompletter Text jederzeit sichtbar */
  body[data-page="services"] .ltsModel__cards {
    display: grid;
    gap: 12px;
    padding: 0;
    perspective: none;
  }
  body[data-page="services"] .ltsModel__cards::before,
  body[data-page="services"] .ltsModel__cards::after {
    display: none;
  }
  body[data-page="services"] .ltsModel__card {
    margin-top: 0 !important;
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.13);
    background:
      radial-gradient(120% 95% at 0% 0%, rgba(124, 92, 255, 0.18), transparent 56%),
      radial-gradient(90% 75% at 100% 100%, rgba(52, 211, 255, 0.11), transparent 54%),
      linear-gradient(168deg, rgba(24, 26, 40, 0.94), rgba(11, 13, 22, 0.88));
    box-shadow:
      0 16px 42px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(124, 92, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__card__bar {
    transform: scaleX(1);
    opacity: 0.95;
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__card__inner {
    gap: 12px;
    padding: 14px 14px 15px;
  }
  body[data-page="services"] .ltsModel__card__num {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__card__body {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__card__body h3 {
    font-size: clamp(15px, 4.2vw, 17px);
    margin: 0 0 5px;
  }
  body[data-page="services"] .ltsModel__card__body p {
    font-size: clamp(13px, 3.5vw, 14px);
    line-height: 1.58;
    max-width: none;
  }
  body[data-page="services"] .ltsModel__card.is-revealed:hover {
    z-index: auto;
    transform: none;
  }
  body[data-page="services"] .ltsModel__card.is-revealed:hover .ltsModel__card__num,
  body[data-page="services"] .ltsModel__card.is-revealed:hover .ltsModel__card__body {
    transform: none;
  }
}

body[data-page="services"] .ltsModel__card {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 0;
  border-radius: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(115% 90% at 0% 0%, rgba(124, 92, 255, 0.2), transparent 56%),
    radial-gradient(95% 75% at 100% 100%, rgba(52, 211, 255, 0.12), transparent 52%),
    linear-gradient(168deg, rgba(24, 26, 40, 0.94), rgba(11, 13, 22, 0.88));
  backdrop-filter: blur(22px);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(124, 92, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform-origin: center;
  transition: border-color 0.35s ease, box-shadow 0.4s ease, transform 0.35s ease;
}

body[data-page="services"] .ltsModel__card:not(.is-revealed) {
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
}

body[data-page="services"] .ltsModel__card.is-revealed {
  animation: none;
}

body[data-page="services"] .ltsModel__cards--pulse .ltsModel__card.is-revealed {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}

body[data-page="services"] .ltsModel__card__bar {
  height: 2px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(1);
  opacity: 0.9;
  background: linear-gradient(
    90deg,
    rgba(124, 92, 255, 0.9),
    rgba(52, 211, 255, 0.65),
    rgba(124, 92, 255, 0.4)
  );
  background-size: 200% 100%;
}

body[data-page="services"] .ltsModel__card.is-revealed .ltsModel__card__bar {
  animation: ltsBarShimmer 3.2s linear infinite;
}

@keyframes ltsBarShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

body[data-page="services"] .ltsModel__card__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(14px, 2vw, 18px) clamp(14px, 2.2vw, 18px) clamp(16px, 2.4vw, 20px);
}

body[data-page="services"] .ltsModel__card__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(124, 92, 255, 0.38), rgba(52, 211, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 1;
  transform: none;
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

body[data-page="services"] .ltsModel__card.is-revealed .ltsModel__card__num {
  animation: none;
}

body[data-page="services"] .ltsModel__card__body {
  flex: 1;
  min-width: 0;
  opacity: 1;
  transform: none;
}

body[data-page="services"] .ltsModel__card.is-revealed .ltsModel__card__body {
  animation: none;
}

body[data-page="services"] .ltsModel__card__body h3 {
  margin: 0 0 6px;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.97);
}

body[data-page="services"] .ltsModel__card__body p {
  margin: 0;
  font-size: clamp(12px, 1.1vw, 13.5px);
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.62;
  max-width: 48ch;
}

@media (hover: hover) and (pointer: fine) {
  body[data-page="services"] .ltsModel__card:hover {
    border-color: rgba(124, 92, 255, 0.34);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(52, 211, 255, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    z-index: 2;
  }
  body[data-page="services"] .ltsModel__card:hover .ltsModel__card__num {
    border-color: rgba(52, 211, 255, 0.38);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.3),
      0 0 22px rgba(124, 92, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .ltsModel__cards::before,
  body[data-page="services"] .ltsModel__cards::after {
    animation: none !important;
    transition: none !important;
  }
  body[data-page="services"] .ltsModel__cards::before {
    transform: scaleY(1);
    opacity: 0.5;
  }
  body[data-page="services"] .ltsModel__cards::after {
    display: none;
  }
  body[data-page="services"] .ltsModel__card:not(.is-revealed),
  body[data-page="services"] .ltsModel__card.is-revealed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__cards--pulse .ltsModel__card.is-revealed {
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__card__bar {
    transform: scaleX(1);
    opacity: 1;
    animation: none !important;
  }
  body[data-page="services"] .ltsModel__card__num,
  body[data-page="services"] .ltsModel__card__body {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── TOOLBAR & SERVICE GRID ────────────────────────────────────────── */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}

/* Filter-Chips — interaktiv mit Ripple-Effekt */
body[data-page="services"] .chip {
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
body[data-page="services"] .chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124,92,255,.15);
}
body[data-page="services"] .chip:active {
  transform: translateY(0) scale(0.98);
}
body[data-page="services"] .chip--active {
  box-shadow: 0 0 0 2px rgba(124,92,255,.4);
}

.service-grid,
.cards { display: grid; gap: var(--s-4); }

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.service {
  padding: var(--s-6);
  border-radius: var(--r-3);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
}

body[data-page="services"] .service--anim:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(124,92,255,.25);
  box-shadow: 0 20px 50px rgba(124,92,255,.1);
}

body[data-page="services"] .service.is-filtered {
  pointer-events: none;
  filter: grayscale(0.3);
}

.service:hover { transform: translateY(-6px); border-color: rgba(52,211,255,.25); }

.service__head { display: grid; gap: .35rem; }
.service__head p { color: var(--muted); }


