/* Spreadfilms Home v3 — native hero + editorial intro */
:root {
  --sfv3-ink: #1f1f1f;
  --sfv3-white: #f7f7f3;
  --sfv3-cyan: #56c9ff;
  --sfv3-lilac: #a8a4ff;
  --sfv3-salmon: #ff8585;
  --sfv3-acid: #efff6b;
}

.sfv3-hero,
.sfv3-intro {
  box-sizing: border-box;
  font-family: var(--font-heading-family, "Space Grotesk", sans-serif);
}

.sfv3-hero *,
.sfv3-intro * {
  box-sizing: border-box;
}

.sfv3-hero {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --signal-x: 0px;
  --signal-y: 0px;
  --signal-rot: 0deg;
  --signal-scale: .94;
  position: relative;
  width: calc(100% - 1.25rem);
  height: calc(100svh - 1.25rem);
  min-height: 36rem;
  margin: .625rem auto;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1rem;
  background: #080b12;
  color: var(--sfv3-white);
  cursor: crosshair;
}
.sfv3-hero.is-active { cursor: pointer; }


.sfv3-media,
.sfv3-media video,
.sfv3-shade,
.sfv3-grid,
.sfv3-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sfv3-media {
  z-index: 0;
  background: #080b12 url("/media/hero-header-poster.jpg") 50% 50% / cover no-repeat;
}

.sfv3-media video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms cubic-bezier(.22, 1, .36, 1), transform 1.4s cubic-bezier(.22, 1, .36, 1);
  transform: scale(1.025);
}

.sfv3-hero.is-video-ready .sfv3-media video {
  opacity: 1;
}

.sfv3-hero.is-active .sfv3-media video {
  transform: scale(1.055);
}

.sfv3-shade {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.08), transparent 24%),
    linear-gradient(90deg, rgba(4,7,12,.62) 0%, rgba(4,7,12,.17) 43%, rgba(4,7,12,.1) 68%, rgba(4,7,12,.42) 100%),
    linear-gradient(0deg, rgba(4,7,12,.45), transparent 43%);
}

.sfv3-grid {
  z-index: 2;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 25% 25%;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.sfv3-grain {
  position: absolute;
  inset: -40%;
  z-index: 3;
  pointer-events: none;
  opacity: .08;
  background-image: repeating-radial-gradient(circle at 30% 40%, #fff 0 1px, transparent 1px 4px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
  animation: sfv3-grain 700ms steps(2, end) infinite;
}

@keyframes sfv3-grain {
  0% { transform: translate3d(-2%, -1%, 0); }
  25% { transform: translate3d(2%, 3%, 0); }
  50% { transform: translate3d(-3%, 1%, 0); }
  75% { transform: translate3d(3%, -2%, 0); }
  100% { transform: translate3d(-2%, -1%, 0); }
}

.sfv3-trail {
  z-index: 4;
  pointer-events: none;
  opacity: .95;
  mix-blend-mode: screen;
}

.sfv3-lockup {
  position: absolute;
  z-index: 8;
  left: clamp(3rem, 8.7vw, 9rem);
  top: 50%;
  width: min(28rem, 36vw);
  transform: translateY(-16%);
  pointer-events: none;
}

.sfv3-lockup h1 {
  margin: 0;
  color: var(--sfv3-white);
  font: 400 clamp(3rem, 5.2vw, 5.7rem) / .92 var(--font-heading-family, "Space Grotesk", sans-serif);
  letter-spacing: -.075em;
  text-wrap: nowrap;
  text-shadow: 0 .2rem 2rem rgba(0,0,0,.24);
}

.sfv3-lockup p {
  margin: .9rem 0 0 .15rem;
  color: rgba(255,255,255,.78);
  font-size: clamp(.66rem, .84vw, .88rem);
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sfv3-lockup-line {
  width: 3.5rem;
  height: 1px;
  margin-top: 1.35rem;
  background: rgba(255,255,255,.7);
  transform-origin: left;
  transition: width 700ms cubic-bezier(.22, 1, .36, 1), background-color 400ms ease;
}

.sfv3-hero.is-active .sfv3-lockup-line {
  width: 9rem;
  background: var(--sfv3-acid);
}

.sfv3-signal {
  position: absolute;
  z-index: 7;
  left: 58%;
  top: 49%;
  width: clamp(20rem, 33vw, 35rem);
  aspect-ratio: 45 / 52;
  transform: translate(-50%, -50%) translate3d(var(--signal-x), var(--signal-y), 0) rotate(var(--signal-rot)) scale(var(--signal-scale));
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
  transition: opacity 350ms ease;
}

.sfv3-signal::before {
  content: "";
  position: absolute;
  inset: 9% 5%;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  filter: blur(3.5rem);
  background: conic-gradient(from 30deg, var(--sfv3-cyan), var(--sfv3-salmon), var(--sfv3-acid), var(--sfv3-cyan));
  transition: opacity 500ms ease, transform 900ms cubic-bezier(.22, 1, .36, 1);
  transform: scale(.72);
}

.sfv3-hero.is-active .sfv3-signal::before {
  opacity: .27;
  transform: scale(1.08);
}

.sfv3-signal svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 1.25rem 2.5rem rgba(0,0,0,.28));
}

.sfv3-s-idle {
  fill: rgba(255,255,255,.015);
  stroke: rgba(255,255,255,.58);
  stroke-width: .17;
  vector-effect: non-scaling-stroke;
  opacity: .72;
  transition: opacity 350ms ease, stroke 350ms ease;
}

.sfv3-s-fill {
  fill: url(#sfv3-gradient);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(.84) rotate(-2deg);
  transition: opacity 420ms ease, transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.sfv3-s-sheen {
  fill: url(#sfv3-sheen);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 500ms ease 120ms;
}

.sfv3-contour {
  fill: none;
  stroke: rgba(255,255,255,.88);
  stroke-width: 1.1px;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  mix-blend-mode: overlay;
  filter: drop-shadow(0 0 .22rem rgba(255,255,255,.32));
  transition:
    stroke-dashoffset 1s cubic-bezier(.16, 1, .3, 1) calc(var(--i) * 85ms),
    opacity 250ms ease calc(var(--i) * 65ms);
}

.sfv3-contour:nth-child(even) { stroke: rgba(16,20,28,.62); mix-blend-mode: multiply; }

.sfv3-hero.is-active {
  --signal-scale: 1;
}

.sfv3-hero.is-active .sfv3-s-idle {
  opacity: .16;
  stroke: rgba(255,255,255,.3);
}

.sfv3-hero.is-active .sfv3-s-fill,
.sfv3-hero.is-active .sfv3-s-sheen {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.sfv3-hero.is-active .sfv3-contour {
  stroke-dashoffset: 0;
  opacity: calc(.92 - var(--i) * .14);
}

.sfv3-brackets {
  position: absolute;
  z-index: 6;
  left: 58%;
  top: 49%;
  width: clamp(21rem, 34.5vw, 36.5rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(.77) rotate(2deg);
  opacity: .42;
  pointer-events: none;
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1), opacity 400ms ease;
}

.sfv3-brackets span {
  position: absolute;
  width: 23%;
  height: 23%;
  border-color: rgba(255,255,255,.8);
  border-style: solid;
  transition: border-color 350ms ease;
}

.sfv3-brackets span:nth-child(1) { inset: 0 auto auto 0; border-width: 1px 0 0 1px; }
.sfv3-brackets span:nth-child(2) { inset: 0 0 auto auto; border-width: 1px 1px 0 0; }
.sfv3-brackets span:nth-child(3) { inset: auto auto 0 0; border-width: 0 0 1px 1px; }
.sfv3-brackets span:nth-child(4) { inset: auto 0 0 auto; border-width: 0 1px 1px 0; }

.sfv3-hero.is-active .sfv3-brackets {
  opacity: .78;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.sfv3-hero.is-active .sfv3-brackets span {
  border-color: var(--sfv3-acid);
}





.sfv3-index {
  position: absolute;
  z-index: 9;
  left: clamp(3rem, 8.7vw, 9rem);
  right: clamp(2rem, 4vw, 4rem);
  bottom: 1.65rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: .85rem;
}

.sfv3-index a {
  display: inline-flex;
  gap: .5rem;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 250ms ease, transform 250ms ease;
}

.sfv3-index a span { color: rgba(255,255,255,.32); }
.sfv3-index a:hover { color: var(--sfv3-white); transform: translateY(-2px); }
.sfv3-index-hint { margin-left: auto; color: rgba(255,255,255,.45); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }

.sfv3-cursor {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
  margin: -1.6rem 0 0 -1.6rem;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(var(--cursor-x, 0), var(--cursor-y, 0), 0) scale(.72);
  pointer-events: none;
  transition: opacity 180ms ease, width 350ms ease, height 350ms ease, margin 350ms ease, border-color 250ms ease, transform 120ms linear;
}

.sfv3-hero.is-pointer-inside .sfv3-cursor { opacity: 1; }
.sfv3-hero.is-active .sfv3-cursor {
  width: 5.5rem;
  height: 5.5rem;
  margin: -2.75rem 0 0 -2.75rem;
  border-color: var(--sfv3-acid);
  box-shadow: 0 0 2.4rem rgba(239,255,107,.16), inset 0 0 1.4rem rgba(255,255,255,.08);
}

/* Rebuilt introduction */
.sfv3-intro {
  --intro-x: 68%;
  --intro-y: 42%;
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 11rem) clamp(1.5rem, 4.2vw, 5rem) clamp(6rem, 9vw, 9rem);
  background: var(--sfv3-ink);
  color: var(--sfv3-white);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.sfv3-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 25% 50%;
  opacity: .52;
}

.sfv3-intro::after {
  content: "";
  position: absolute;
  width: min(46rem, 70vw);
  aspect-ratio: 1;
  left: var(--intro-x);
  top: var(--intro-y);
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(from 150deg, rgba(86,201,255,.9), rgba(168,164,255,.6), rgba(255,133,133,.95), rgba(239,255,107,.65), rgba(86,201,255,.9));
  filter: blur(7rem);
  opacity: .22;
  transform: translate(-50%, -50%) scale(.7);
  transition: opacity 700ms ease, transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.sfv3-intro.is-inview::after {
  opacity: .42;
  transform: translate(-50%, -50%) scale(1);
}

.sfv3-intro-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(18rem, .82fr) minmax(28rem, 1.18fr);
  gap: clamp(4rem, 8vw, 10rem);
  align-items: end;
  max-width: 100rem;
  margin: 0 auto;
}

.sfv3-intro-title-wrap,
.sfv3-intro-copy {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 900ms ease, transform 1.05s cubic-bezier(.16, 1, .3, 1);
}

.sfv3-intro-copy { transition-delay: 140ms; }
.sfv3-intro.is-inview .sfv3-intro-title-wrap,
.sfv3-intro.is-inview .sfv3-intro-copy { opacity: 1; transform: none; }



.sfv3-intro h2 {
  margin: 0;
  font: 400 clamp(5.2rem, 11vw, 11rem) / .72 var(--font-heading-family, "Space Grotesk", sans-serif);
  letter-spacing: -.09em;
}

.sfv3-intro h2 span { display: block; }
.sfv3-intro h2 span:first-child { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.68); }
.sfv3-intro h2 span:last-child { margin-left: .65em; color: var(--sfv3-white); }

.sfv3-intro-copy {
  max-width: 43rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.26);
}

.sfv3-intro-lead {
  margin: 0 0 2.6rem;
  font-size: clamp(1.35rem, 2.25vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.sfv3-intro-body {
  max-width: 39rem;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.2vw, 1.24rem);
  line-height: 1.55;
}






@media (max-width: 1024px) {
  .sfv3-lockup { left: 4rem; width: 25rem; }
  .sfv3-signal, .sfv3-brackets { left: 61%; }
  .sfv3-intro-inner { grid-template-columns: 1fr; align-items: start; }
  .sfv3-intro h2 span:last-child { margin-left: 1.05em; }
  .sfv3-intro-copy { margin-left: 28%; }
}

@media (max-width: 767px) {
  .sfv3-hero {
    width: calc(100% - .875rem);
    height: min(calc(100svh - .875rem), 52rem);
    min-height: 40rem;
    margin: .4375rem auto;
    border-radius: .875rem;
    cursor: default;
  }
  .sfv3-media video { object-position: 50% 50%; }
  .sfv3-shade {
    background:
      linear-gradient(180deg, rgba(4,7,12,.08) 30%, rgba(4,7,12,.68) 82%, rgba(4,7,12,.82)),
      radial-gradient(circle at 50% 52%, transparent, rgba(4,7,12,.2));
  }
  .sfv3-grid { background-size: 50% 25%; opacity: .16; }
  .sfv3-lockup {
    left: 1.5rem;
    right: 1.5rem;
    top: auto;
    bottom: 4.8rem;
    width: auto;
    transform: none;
    text-align: center;
  }
  .sfv3-lockup h1 { font-size: clamp(2.7rem, 13.2vw, 4.2rem); }
  .sfv3-lockup-line { margin-left: auto; margin-right: auto; }
  .sfv3-signal {
    left: 50%;
    top: 42%;
    width: min(69vw, 19rem);
    opacity: .95;
  }
  .sfv3-brackets { left: 50%; top: 42%; width: min(73vw, 20rem); }
  .sfv3-index { left: 1.5rem; right: 1.5rem; bottom: 1.25rem; }
  .sfv3-index-hint { margin-left: 0; width: 100%; text-align: center; font-size: 0; }
  .sfv3-index-hint::after { content: "Signal in motion"; font-size: .65rem; }
  .sfv3-intro {
    min-height: 0;
    padding: 6rem 1.25rem 5rem;
  }
  .sfv3-intro::before { background-size: 50% 25%; }
  .sfv3-intro-inner { display: block; }
  .sfv3-intro-title-wrap { margin-bottom: 4.5rem; }
  .sfv3-intro h2 { font-size: clamp(5.6rem, 29vw, 8rem); }
  .sfv3-intro-copy { margin-left: 0; }
}

@media (hover: none), (pointer: coarse) {
  .sfv3-hero { --signal-scale: 1; }
  .sfv3-s-fill, .sfv3-s-sheen { opacity: 1; transform: none; }
  .sfv3-s-idle { opacity: .14; }
  .sfv3-contour { stroke-dashoffset: 0; opacity: calc(.82 - var(--i) * .14); }
  .sfv3-brackets { opacity: .72; transform: translate(-50%, -50%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .sfv3-grain { animation: none; }
  .sfv3-media video,
  .sfv3-signal,
  .sfv3-brackets,
  .sfv3-s-fill,
  .sfv3-s-sheen,
  .sfv3-contour,
  .sfv3-intro::after,
  .sfv3-intro-title-wrap,
  .sfv3-intro-copy { transition-duration: .01ms !important; animation: none !important; }
  .sfv3-trail, .sfv3-cursor { display: none; }
}

/* sf-chips-override: Original-Chips (hero_topics) unten rechts im neuen Hero */
.sfv3-hero .hero_topics{position:absolute!important;left:auto!important;right:0!important;bottom:0!important;top:auto!important;z-index:15;}

/* --- Status (Watch our Showreel / Play Showreel) --- */
.sfv3-status {
  position: absolute;
  z-index: 9;
  left: calc(58% + clamp(10rem, 17vw, 18rem));
  top: 24%;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.65);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
}
.sfv3-status-dot {
  width: .42rem;
  height: .42rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.sfv3-status-active { display: none; }
.sfv3-hero.is-active .sfv3-status { color: var(--sfv3-acid); }
.sfv3-hero.is-active .sfv3-status-dot { background: var(--sfv3-acid); border-color: var(--sfv3-acid); box-shadow: 0 0 1rem rgba(239,255,107,.8); }
.sfv3-hero.is-active .sfv3-status-idle { display: none; }
.sfv3-hero.is-active .sfv3-status-active { display: inline; }

/* --- S -> Play Morph --- */
.sfv3-play {
  opacity: 0;
  transform-origin: 22.5px 26px;
  transform: scale(.5);
  transition: opacity 380ms cubic-bezier(.22,1,.36,1), transform 520ms cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.sfv3-play-fill {
  fill: url(#sfv3-gradient);
  stroke: rgba(255,255,255,.92);
  stroke-width: .8;
  stroke-linejoin: round;
  paint-order: stroke;
}
.sfv3-play-ring {
  fill: none;
  stroke: rgba(255,255,255,.85);
  stroke-width: 1.1px;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  transition: stroke-dashoffset 780ms cubic-bezier(.22,1,.36,1) calc(120ms + var(--i, 0) * 160ms), opacity 300ms ease calc(120ms + var(--i, 0) * 160ms);
}
.sfv3-hero.is-play .sfv3-play { opacity: 1; transform: scale(1); }
.sfv3-hero.is-play .sfv3-play-ring { stroke-dashoffset: 0; opacity: calc(.85 - var(--i, 0) * .3); }
.sfv3-signal svg > g[mask], .sfv3-signal svg > g[clip-path], .sfv3-s-idle {
  transition: opacity 420ms cubic-bezier(.22,1,.36,1);
}
.sfv3-hero.is-play .sfv3-signal svg > g[mask] { opacity: .14; }
.sfv3-hero.is-play .sfv3-signal svg > g[clip-path] { opacity: .1; }
.sfv3-hero.is-play .sfv3-s-idle { opacity: 0; }

/* --- Showreel Overlay --- */
.sfv3-reel { position: fixed; inset: 0; z-index: 2147483000; display: flex; align-items: center; justify-content: center; }
.sfv3-reel[hidden] { display: none; }
.sfv3-reel-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,7,11,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity 380ms ease;
}
.sfv3-reel-stage {
  position: relative; z-index: 1;
  width: min(76rem, 90vw);
  margin: 0; opacity: 0; transform: scale(.94) translateY(1rem);
  transition: opacity 420ms cubic-bezier(.22,1,.36,1), transform 520ms cubic-bezier(.22,1,.36,1);
}
.sfv3-reel-stage video { display: block; width: 100%; border-radius: 1rem; box-shadow: 0 2.5rem 6rem rgba(0,0,0,.55); background: #000; }
.sfv3-reel-close {
  position: absolute; z-index: 2; top: clamp(1.1rem, 3.5vh, 2.2rem); right: clamp(1.1rem, 3vw, 2.6rem);
  width: 3.4rem; height: 3.4rem; display: flex; align-items: center; justify-content: center;
  border: 0 !important; border-radius: 50%;
  background: #fff !important; color: #14161c !important; cursor: pointer;
  padding: 0 !important; line-height: 1;
  box-shadow: 0 .5rem 1.6rem rgba(0,0,0,.45);
  opacity: 0; transition: opacity 260ms ease 120ms, background 200ms ease, color 200ms ease, transform 200ms ease;
}
.sfv3-reel-close:hover { background: #FF8585 !important; color: #fff !important; transform: rotate(90deg) scale(1.06); }
/* Außerhalb des Players: Cursor wird zum X, Klick schließt */
.sfv3-reel-backdrop {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34' height='34'><circle cx='17' cy='17' r='15' fill='white'/><path d='M11 11 L23 23 M23 11 L11 23' stroke='%2314161c' stroke-width='2.6' stroke-linecap='round'/></svg>") 17 17, pointer;
}
.sfv3-reel.is-open .sfv3-reel-backdrop, .sfv3-reel.is-open .sfv3-reel-stage, .sfv3-reel.is-open .sfv3-reel-close { opacity: 1; }
.sfv3-reel.is-open .sfv3-reel-stage { transform: scale(1) translateY(0); }

@media (max-width: 767px) {
  .sfv3-status { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sfv3-status { display: none; }
  .sfv3-play, .sfv3-play-ring, .sfv3-reel-stage, .sfv3-reel-backdrop { transition-duration: .01ms !important; }
}

/* --- Works: Referenzen-Showcase (We deliver) --- */
.sfv3-works-title h2 { font-size: clamp(2rem, 3.4vw, 3.3rem) !important; line-height: 1.12; max-width: 24ch; }
.sfv3-works-copy {
  max-width: 46rem;
  margin: 1.1rem 0 2.4rem;
  color: rgba(255,255,255,.76);
  font-size: 1.02rem;
  line-height: 1.65;
}
.elementor-element-13874b8.sfv3-works-grid {
  display: flex !important;
  grid-template-columns: none !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: .25rem .25rem 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sfv3-works-grid::-webkit-scrollbar { display: none; }
.sfv3-works-grid > .service_card {
  flex: 0 0 min(30.5rem, 82vw);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sfv3-work .card_bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(7px) brightness(.5) saturate(.85);
  transform: scale(1.07);
  transition: filter 550ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1);
}
.sfv3-work:hover .card_bg img, .sfv3-work:focus-visible .card_bg img { filter: blur(0) brightness(.92) saturate(1); transform: scale(1.01); }
.sfv3-work-logo { height: 2.4rem !important; width: auto !important; max-width: 9rem !important; min-width: 2.4rem; filter: brightness(0) invert(1); opacity: .96; display: block; }
.sfv3-work .elementor-icon { width: auto !important; height: auto !important; line-height: 1; }
.sfv3-work-logo-text {
  font-size: 1.6rem; font-weight: 600; letter-spacing: .04em; color: #fff; line-height: 1;
}
.sfv3-work-play {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 27%;
  opacity: 0; transition: opacity 350ms ease; pointer-events: none;
}
.sfv3-work-play span {
  width: 4.6rem; height: 4.6rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.94); color: #14161c;
  box-shadow: 0 1rem 2.6rem rgba(0,0,0,.45);
  transform: scale(.8); transition: transform 380ms cubic-bezier(.34,1.56,.64,1);
}
.sfv3-work-play svg { margin-left: .2rem; }
.sfv3-work:hover .sfv3-work-play, .sfv3-work:focus-visible .sfv3-work-play { opacity: 1; }
.sfv3-work:hover .sfv3-work-play span { transform: scale(1); }
.sfv3-works-nav { display: flex; gap: .7rem; justify-content: flex-start; margin-top: 1.2rem; }
.sfv3-works-nav button {
  width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.32) !important; border-radius: 50%;
  background: transparent !important; color: #fff !important; cursor: pointer; padding: 0 !important;
  transition: background 200ms ease, border-color 200ms ease, transform 150ms ease;
}
.sfv3-works-nav button:hover { background: #FF8585 !important; border-color: #FF8585 !important; color: #14161c !important; transform: scale(1.05); }
.sfv3-reel-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; border-radius: 1rem; background: #000; box-shadow: 0 2.5rem 6rem rgba(0,0,0,.55); }
@media (max-width: 767px) {
  .sfv3-works-nav { justify-content: center; }
}

/* --- Kundenlogos: kleine, cleane Wortmarken (getrimmte viewBoxen) --- */
.sfv3-clients-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 2rem 3.4rem; list-style: none; margin: 1.8rem 0 2.6rem; padding: 0;
}
.sfv3-clients-grid li { display: flex; align-items: center; }
.sfv3-clients-grid img {
  height: 1.5rem; width: auto; max-width: 9.5rem; object-fit: contain;
  opacity: .55; transition: opacity 250ms ease, transform 250ms ease;
}
.sfv3-clients-grid li.is-emblem img { height: 2.5rem; }
.sfv3-clients-grid li:hover img { opacity: 1; transform: translateY(-2px); }

/* --- Goal-CTA: Die meisten kommen mit einem Ziel zu uns --- */
/* Gerundeter Frame in der Formensprache des Heros (radius + .625rem Rand) */
.sfv3-goal {
  background: #FF8585; color: #191b1f;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.4rem, 6vw, 6rem);
  margin: 0 .625rem; border-radius: 1.25rem;
}
.sfv3-goal-inner { max-width: 74rem; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); }
.sfv3-goal-inner > h2 { grid-column: 1; grid-row: 1; }
.sfv3-goal-copy { grid-column: 2; grid-row: 1; }
/* Referenzlogos im Goal-Block: weiss auf Salmon, volle Breite unter Titel+Copy */
.sfv3-goal-clients { grid-column: 1 / -1; grid-row: 2; margin-top: 2.8rem; padding-top: 2.4rem; border-top: 1px solid rgba(25,27,31,.16); }
.sfv3-goal-clients-label {
  margin: 0 0 1.5rem; font-size: .74rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(25,27,31,.5);
}
.sfv3-goal .sfv3-clients-grid { gap: 2rem 3.2rem; margin: 0; justify-content: space-between; align-items: center; }
.sfv3-goal .sfv3-clients-grid img { opacity: .92; height: 1.55rem; max-width: 9.5rem; }
.sfv3-goal .sfv3-clients-grid li.is-emblem img { height: 2.5rem; }
.sfv3-goal .sfv3-clients-grid li:hover img { opacity: 1; }
.sfv3-goal h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem); font-weight: 500; line-height: 1.06;
  letter-spacing: -.02em; margin: 0; color: #191b1f;
}
.sfv3-goal h2 span { display: block; color: rgba(25,27,31,.52); }
.sfv3-goal-copy p { margin: 0 0 1.1rem; font-size: 1.04rem; line-height: 1.68; color: rgba(25,27,31,.88); }
.sfv3-goal-invite { font-weight: 500; }
.sfv3-goal-cta {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .4rem;
  background: #191b1f; color: #fff !important; border-radius: .6rem;
  padding: 1.05rem 1.65rem; font-size: 1.04rem; font-weight: 500; text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.sfv3-goal-cta span { transition: transform 220ms cubic-bezier(.2,.7,.2,1); }
.sfv3-goal-cta:hover { transform: translateY(-2px); box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,.28); }
.sfv3-goal-cta:hover span { transform: translateX(4px); }

/* --- Einstiegs-Hub: Du weißt schon genau, was du brauchst? --- */
.sfv3-paths { padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 6vw, 6rem); }
.sfv3-paths-inner { max-width: 74rem; margin: 0 auto; }
.sfv3-paths-head { max-width: 48rem; }
.sfv3-paths h2 { font-size: clamp(2rem, 3.3vw, 3.1rem); font-weight: 500; line-height: 1.1; letter-spacing: -.015em; margin: 0 0 1.1rem; color: #fff; }
.sfv3-paths-head p { color: rgba(255,255,255,.75); font-size: 1.04rem; line-height: 1.68; margin: 0 0 1.4rem; }
.sfv3-paths-cta {
  display: inline-flex; align-items: center; gap: .5rem; color: #FF8585 !important;
  font-size: 1.06rem; font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(255,133,133,.5);
  padding-bottom: .2rem; transition: gap 180ms ease, border-color 180ms ease;
}
.sfv3-paths-cta:hover { gap: .85rem; border-color: #FF8585; }
.sfv3-paths-or { margin-top: 3rem !important; margin-bottom: 1.4rem !important; color: rgba(255,255,255,.45) !important; font-size: .78rem !important; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
/* Vier Solutions-Gruppen-Karten mit grosser Ghost-Nummer. 2x2 auf Desktop:
   die Pillen brauchen Breite, vier Spalten nebeneinander wuerden jedes Label
   umbrechen. Karten sind gleich hoch (stretch), damit die Reihe ruhig steht,
   auch wenn eine Gruppe eine Zeile mehr Pillen hat. */
.sfv3-paths-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
.sfv3-paths-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.12); border-radius: 1.25rem;
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  padding: 1.9rem 1.9rem 2.1rem;
  transition: border-color 250ms ease, transform 250ms cubic-bezier(.22,.68,.26,1), background 250ms ease;
}
.sfv3-paths-card:hover { border-color: rgba(255,133,133,.55); transform: translateY(-4px); }
.sfv3-paths-num {
  position: absolute; top: -1.4rem; right: .4rem; pointer-events: none;
  font-size: clamp(5rem, 7vw, 7rem); font-weight: 500; line-height: 1;
  letter-spacing: -.04em; color: rgba(255,255,255,.05);
  transition: color 300ms ease, transform 300ms ease;
}
.sfv3-paths-card:hover .sfv3-paths-num { color: rgba(255,133,133,.18); transform: translateY(-4px); }
.sfv3-paths-card h3 { margin: 0 0 .5rem; font-size: 1.4rem; font-weight: 500; letter-spacing: -.01em; color: #fff; }
.sfv3-paths-card-headline { margin: 0 0 .6rem; color: #fff; font-size: 1.05rem; font-weight: 500; line-height: 1.35; }
.sfv3-paths-card-sub { margin: 0 0 1.3rem; color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.6; max-width: 30rem; }
.sfv3-paths-links { display: flex; flex-wrap: wrap; gap: .55rem; position: relative; margin-top: auto; }
.sfv3-paths-links a {
  display: inline-block; padding: .55rem 1.05rem; border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; color: rgba(255,255,255,.9) !important; font-size: .94rem;
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease;
}
.sfv3-paths-links a:hover {
  border-color: #FF8585; background: #FF8585; color: #14161c !important;
  transform: translateY(-2px);
}

/* --- Scroll-Reveal (nur mit JS + ohne Reduced Motion) --- */
@media (prefers-reduced-motion: no-preference) {
  .sfv3-js [data-sfv3-reveal] :is(.sfv3-goal-inner, .sfv3-paths-inner, .sfv3-contact-inner) > * {
    opacity: 0; transform: translateY(26px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.22,.68,.26,1);
  }
  .sfv3-js [data-sfv3-reveal] :is(.sfv3-goal-inner, .sfv3-paths-inner, .sfv3-contact-inner) > :nth-child(2) { transition-delay: 110ms; }
  .sfv3-js [data-sfv3-reveal] :is(.sfv3-goal-inner, .sfv3-paths-inner, .sfv3-contact-inner) > :nth-child(3) { transition-delay: 220ms; }
  .sfv3-js [data-sfv3-reveal] :is(.sfv3-goal-inner, .sfv3-paths-inner, .sfv3-contact-inner) > :nth-child(n+4) { transition-delay: 330ms; }
  .sfv3-js [data-sfv3-reveal].is-inview :is(.sfv3-goal-inner, .sfv3-paths-inner, .sfv3-contact-inner) > * {
    opacity: 1; transform: none;
  }
}

/* --- Kontakt: Was willst du bewegen? --- */
.sfv3-contact { padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 6vw, 6rem); }
.sfv3-contact-inner { max-width: 74rem; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.4rem, 6vw, 6rem); align-items: start; }
.sfv3-contact h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 500; letter-spacing: -.015em; margin: 0 0 1.2rem; color: #fff; }
.sfv3-contact-copy > p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.65; max-width: 30rem; margin: 0 0 2rem; }
.sfv3-contact-andi { display: flex; margin-top: 2.4rem; }
/* Rive-Artboard hat viel Leerraum (Original: 80rem Canvas, sichtbar nur der
   mittlere 10rem-Streifen via Negativ-Margins). Gleiche Relation, vergroessert:
   runde Buehne (15rem) + 8x-Canvas mittig, Salmon-Glow dahinter. */
.sfv3-rive-wrap {
  width: 15rem; height: 15rem; flex: 0 0 auto;
  position: relative; overflow: hidden; display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
}
.sfv3-rive-glow {
  position: absolute; inset: 10%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 50% 62%, rgba(255,133,133,.38), transparent 68%);
  filter: blur(8px);
}
.sfv3-rive-wrap canvas {
  width: 120rem !important; height: 120rem !important;
  position: absolute !important; left: 50% !important; top: 50% !important;
  transform: translate(-50%, -50%) !important; margin: 0 !important;
}
.sfv3-contact-andi p { margin: 0; color: rgba(255,255,255,.82); font-size: .98rem; line-height: 1.5; }
.sfv3-form { display: flex; flex-direction: column; gap: 1.1rem; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: clamp(1.4rem, 3vw, 2.2rem); }
.sfv3-field { display: flex; flex-direction: column; gap: .4rem; }
.sfv3-field span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.sfv3-field input, .sfv3-field textarea {
  background: transparent !important; border: 0 !important; border-bottom: 1px solid rgba(255,255,255,.25) !important;
  border-radius: 0 !important; color: #fff !important; font-size: 1.02rem; padding: .5rem 0 !important;
  transition: border-color 200ms ease; resize: vertical;
}
.sfv3-field input:focus, .sfv3-field textarea:focus { outline: none; border-bottom-color: #FF8585 !important; }
.sfv3-field input::placeholder, .sfv3-field textarea::placeholder { color: rgba(255,255,255,.3); }
.sfv3-consent {
  display: grid; grid-template-columns: 1.1rem minmax(0, 1fr); gap: .65rem; align-items: start;
  color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.5; cursor: pointer;
}
.sfv3-consent input[type="checkbox"] {
  appearance: auto !important; -webkit-appearance: checkbox !important;
  width: 1.1rem !important; height: 1.1rem !important; min-width: 1.1rem;
  margin: .14rem 0 0; padding: 0 !important; accent-color: #FF8585; cursor: pointer;
}
.sfv3-consent a { color: #FF9A9A; text-underline-offset: 2px; }
.sfv3-form-submit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: .55rem;
  background: #FF8585 !important; color: #191b1f !important; border: 0 !important;
  border-radius: .55rem; padding: .9rem 1.4rem !important; font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease;
}
.sfv3-form-submit:hover { transform: translateY(-2px); box-shadow: 0 1rem 2rem rgba(255,133,133,.25); }
.sfv3-form-note { margin: 0; color: rgba(255,255,255,.45); font-size: .85rem; }
.sfv3-form .sf-form-msg { margin-top: .2rem; }

/* Touch-Geräte: kein Hover -> Stills sofort scharf + Play sichtbar */
@media (hover: none), (pointer: coarse), (max-width: 767px) {
  .sfv3-work .card_bg img { filter: blur(0) brightness(.8) saturate(1); }
  .sfv3-work .sfv3-work-play { opacity: 1; }
}

@media (max-width: 900px) {
  .sfv3-goal-inner, .sfv3-contact-inner { grid-template-columns: 1fr; }
  .sfv3-goal-inner > h2, .sfv3-goal-copy, .sfv3-goal-clients { grid-column: auto; grid-row: auto; }
  .sfv3-goal { margin: 0 .45rem; border-radius: 1rem; }
  .sfv3-goal-clients { margin-top: 1.6rem; padding-top: 1.8rem; }
  .sfv3-goal .sfv3-clients-grid { gap: 1.4rem 0; justify-content: space-between; }
  .sfv3-goal .sfv3-clients-grid li { flex: 0 0 30%; display: flex; justify-content: center; }
  .sfv3-goal .sfv3-clients-grid img { height: 1.2rem; max-width: 6.8rem; }
  .sfv3-goal .sfv3-clients-grid li.is-emblem img { height: 2rem; }
  .sfv3-paths-cards { grid-template-columns: 1fr; }
  .sfv3-paths-card { padding: 1.6rem 1.3rem 1.8rem; }
  .sfv3-contact-andi { justify-content: center; }
  .sfv3-rive-wrap { width: 11.5rem; height: 11.5rem; }
  .sfv3-rive-wrap canvas { width: 92rem !important; height: 92rem !important; }
  /* Kontakt buendig mit dem brief-us-Label der Eltern-Sektion */
  .sfv3-contact { padding-left: .4rem; padding-right: .4rem; }
}
