/* Automatisch aus style.css herausgeloest (CSS-Diaet, 02.09.2026).
   REGEL: Stile, die nur EINE Seite braucht, wohnen in css/seiten/<seite>.css.
   Gemeinsames wohnt in style.css. Wer hier etwas aendert, prueft mit
   werkzeuge/vor-upload-pruefen.sh und zieht die Cache-Stempel hoch. */

.kicker-light {
  color: var(--teal-muted-light);
}
/* Eigene Zeile unter der Headline: trägt allein das Keyword, deshalb dieselbe
   Serifen-Kursiv-Behandlung wie ein Highlight in der Überschrift */
.section-statement {
  margin-top: 6px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
}

/* Dekorative Blur-Blobs */
/* Blur-Blobs sind seitenweit abgeschaltet (generischer KI-Template-Look) -
   Definitionen bleiben für den Fall eines Reverts stehen */
.blob {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.blob-cta {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(237,191,139,0.16), rgba(237,191,139,0) 70%);
  bottom: -220px; left: 50%;
  transform: translateX(-50%);
}

/* Hero-Einstieg (Startseite): bewusst OHNE .reveal, damit H1/CTA nicht auf
   JS + IntersectionObserver warten (LCP). Reine CSS-Animation ab erstem Paint;
   die H1 animiert nur transform, damit sie sofort gemalt wird. */
.hero-copy h1 {
  animation: hero-rise 0.6s cubic-bezier(.2,.7,.2,1) both;
}
.hero-copy .hero-sub { animation-delay: 0.16s; }
.hero-copy .hero-cta-row { animation-delay: 0.24s; }

/* Statt Blur-Blobs: das Rasterpapier der Karten-Illustrationen, ganz dezent -
   dieselbe Bildsprache wie in Problem-, Leistungs- und Warum-Karten */
.hero-blob { display: none; }

.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pb2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: center;
}
.pb2-text { margin: 0 0 20px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); max-width: 54ch; }
.pb2-list { list-style: none; margin: 0; padding: 0; }
.pb2-p {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 12px 13px 0;
  border-top: 1px solid var(--border);
  border-radius: 0 10px 10px 0;
  /* Einzug ueber transform statt padding: animiertes padding loest Layout-Neuberechnung aus */
  transition: background-color 0.3s ease;
}
.pb2-p > * { transition: transform 0.3s var(--ease-marke); }
.pb2-p:hover { background: rgba(255,255,255,0.75); }
.pb2-p:hover > * { transform: translateX(12px); }
.pb2-p strong { display: block; font-size: 16px; color: var(--ink); }
.pb2-p p { margin: 3px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.pb2-next {
  margin: 18px 0 0;
  font-size: 15px; font-weight: 700;
  color: var(--teal-dark);
}
.pb2-next span { display: inline-block; margin-left: 4px; animation: pb2-nudge 2.2s ease-in-out infinite; }


@media (max-width: 980px) {
  .pb2-grid { grid-template-columns: 1fr; gap: 34px; }}

@media (prefers-reduced-motion: reduce) {
  .pb2-next span { animation: none; }
  .pb2-p { transition: none; }}


/* ==========================================================================
   Content-System
   ========================================================================== */
.content-system { padding: var(--space-lg) 0; background: var(--white); }

/* ----------------------------------------------------------------
   Content-System-Grafik (Umbau 31.07.2026, Brief "10/10-Highlight"):
   Themen-Stapel -> Kamera-Modul (4-8 Std., REC pulsiert) -> Content-
   Ausgaben, darunter Ergebniszeile "1 Drehtag -> 2-3 Monate" und die
   drei Schritte. Reveal spielt die Erzaehlung einmal, Hover je Zone
   reagiert; Basiszustand = fertige, lesbare Grafik.
   ---------------------------------------------------------------- */
/* ===== Startseite: die Ausbeute (csa) - 12.08.2026 =====
   Ersetzt die cs2-Diagrammgrafik (drei Eingangskarten, Kamerakasten,
   vier Ausgabekarten, gestrichelte Linien, Raster). Jetzt: was am
   Abend eines Drehtags auf dem Tisch liegt - vier Stapel, jeder in
   eigener Form. Die drei Abzuege bei "Fotos & Details" sind echte
   Aufnahmen, keine Platzhalter. Ohne Stueckzahlen: die Menge
   erzaehlen die Stapel selbst. */

.csa { margin: 30px 0 0; }

/* Der Ursprung: eine schmale dunkle Karte, aus der alles kommt */
.csa-tag { width: fit-content; margin: 0 auto; display: flex; align-items: center; gap: 14px;
           background: var(--ink); color: #fff; border-radius: 12px; padding: 13px 22px 14px;
           box-shadow: 0 14px 30px rgba(11,76,78,.24); }
.csa-tag-ic { width: 30px; height: 30px; flex: 0 0 auto; }
.csa-tag-ic path, .csa-tag-ic rect { stroke: var(--peach); stroke-width: 1.7; fill: none;
                                     stroke-linecap: round; stroke-linejoin: round; }
.csa-tag b { font-size: 17px; display: block; line-height: 1.25; }
.csa-tag span { font-size: 12.5px; color: rgba(255,255,255,.66); }
.csa-schnur { display: block; margin: 0 auto; width: 2px; height: 24px;
              background: linear-gradient(rgba(16,100,102,.42), rgba(16,100,102,.12)); }

/* Der Tisch: vier Stapel nebeneinander, jeder anders gebaut */
.csa-tisch { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
             align-items: start; max-width: 900px; margin: 0 auto; }
.csa-stapel { display: flex; flex-direction: column; align-items: center; }
.csa-buehne { position: relative; height: 172px; width: 100%;
              display: flex; align-items: flex-end; justify-content: center; }

/* gemeinsamer Abzug-Look: weisser Rand, echter Schatten */
.csa-abzug { position: absolute; background: #fff; border-radius: 5px;
             border: 1px solid rgba(16,100,102,.14); padding: 5px 5px 6px;
             box-shadow: 0 8px 18px rgba(11,76,78,.15); }
.csa-flaeche { border-radius: 3px; background: rgba(16,100,102,.13); display: block;
               overflow: hidden; position: relative; }
.csa-flaeche img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 1 Kurzvideos: vier Hochformate, aufgefaechert */
.csa-v { width: 76px; bottom: 0; }
.csa-v .csa-flaeche { width: 100%; height: 112px; }
.csa-v1 { transform: rotate(-9deg) translate(-26px, -4px); }
.csa-v2 { transform: rotate(-3.5deg) translate(-9px, -2px); }
.csa-v3 { transform: rotate(3deg) translate(9px, -3px); }
.csa-v4 { transform: rotate(8.5deg) translate(26px, 0); z-index: 2; }
.csa-v4 .csa-flaeche { background: var(--peach); position: relative; }
.csa-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
            width: 0; height: 0; border-style: solid;
            border-width: 11px 0 11px 17px;
            border-color: transparent transparent transparent var(--teal-dark); }

/* 2 Stimmen: eine Karte mit handgezogener Tonspur */
.csa-s { width: 132px; bottom: 22px; transform: rotate(-2deg); }
.csa-s .csa-flaeche { height: 74px; position: relative; background: var(--teal-tint); }
.csa-welle { position: absolute; inset: 0; width: 100%; height: 100%; }
.csa-welle path { stroke: var(--teal); stroke-width: 2; fill: none; stroke-linecap: round; }
.csa-zitat { position: absolute; right: -16px; bottom: -14px; background: #fff;
             border: 1px solid var(--border); border-radius: 10px 10px 10px 3px;
             padding: 6px 11px 7px; font-family: 'Fraunces', serif; font-style: italic;
             font-size: 13px; color: var(--ink-soft); box-shadow: 0 6px 14px rgba(11,76,78,.12);
             transform: rotate(2.5deg); white-space: nowrap; }

/* 3 Fotos: drei echte Abzuege, versetzt gestapelt */
.csa-f { width: 124px; }
.csa-f .csa-flaeche { height: 82px; }
.csa-f1 { bottom: 36px; transform: rotate(-4deg) translateX(-10px); }
.csa-f2 { bottom: 18px; transform: rotate(2.5deg) translateX(8px); }
.csa-f3 { bottom: 0; transform: rotate(-1deg); z-index: 2; }

/* 4 Imagefilm: Filmstreifen mit Perforation */
.csa-i { width: 152px; bottom: 26px; transform: rotate(1.6deg); padding: 0; overflow: hidden; }
.csa-i .csa-flaeche { height: 84px; border-radius: 0; background: none;
                      display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 0 4px; }
.csa-kader { background: rgba(16,100,102,.15); border-radius: 2px; }
.csa-kader--p { background: var(--teal); opacity: .3; }
.csa-perf { position: absolute; left: 0; right: 0; height: 11px; display: flex;
            justify-content: space-around; align-items: center; background: var(--teal-dark); }
.csa-perf--o { top: 0; } .csa-perf--u { bottom: 0; }
.csa-perf i { width: 7px; height: 5px; border-radius: 1.5px; background: var(--papier); }

.csa-eti { margin: 16px 0 0; text-align: center; }
.csa-eti b { display: block; font-size: 15.5px; color: var(--ink); }
.csa-eti span { display: block; margin-top: 2px; font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.csa:hover .csa-welle path, .csa:focus-visible .csa-welle path {
  stroke-dasharray: 190; animation: csa-welle2 .7s ease both; }
.csa:focus-visible { outline: 3px solid var(--teal); outline-offset: 8px; border-radius: 14px; }

@media (max-width: 900px) {
  .csa-tisch { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; max-width: 520px; }
  .csa-buehne { height: 164px; }}

@media (max-width: 520px) {
  .csa-tisch { gap: 26px 14px; }
  .csa-buehne { height: 150px; }
  .csa-v { width: 62px; } .csa-v .csa-flaeche { height: 92px; }
  .csa-v1 { transform: rotate(-9deg) translate(-19px,-4px); }
  .csa-v2 { transform: rotate(-3.5deg) translate(-7px,-2px); }
  .csa-v3 { transform: rotate(3deg) translate(7px,-3px); }
  .csa-v4 { transform: rotate(8.5deg) translate(19px,0); }
  .csa-s { width: 110px; } .csa-f { width: 104px; } .csa-i { width: 120px; }
  .csa-zitat { font-size: 12px; right: -10px; padding: 5px 9px 6px; }
  .csa-eti b { font-size: 14.5px; } .csa-eti span { font-size: 12.5px; }}


/* Drei Schritte */
.cs2-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1040px;
  margin: 34px auto 0; padding: 0;
}
.cs2-steps li { display: flex; gap: 14px; align-items: flex-start; border-top: 1px solid var(--border); padding-top: 16px; }
.cs2-steps strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.cs2-steps p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cs2-more { margin: 26px 0 0; text-align: center; }
.cs2-more a {
  font-size: 15px; font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(16,100,102,0.35);
  padding-bottom: 2px;
}
.cs2-more a:hover { border-color: var(--peach); }
.cs2-more a span { display: inline-block; margin-left: 4px; transition: transform 0.3s ease; }
.cs2-more a:hover span { transform: translateX(3px); }

@media (max-width: 1024px) {
  .cs2-steps { grid-template-columns: 1fr; gap: 18px; }}

@media (prefers-reduced-motion: reduce) {
  .cs2-more a span { transition: none; }}


/* ==========================================================================
   Über mich (Gründer-Foto + Bio)
   ========================================================================== */

/* ==========================================================================
   Abgrenzung / Warum Social Lift
   ========================================================================== */
.differentiators { padding: var(--space-sm) 0; background: var(--white); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.diff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(26,35,34,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-muted-light);
  box-shadow: 0 18px 44px rgba(26,35,34,0.14);
}
.diff-visual {
  position: relative;
  width: 100%;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.diff-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,53,49,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,53,49,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 82%);
}
.diff-visual::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.16), transparent 66%);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.diff-card:hover .diff-visual::after {
  transform: translate(-50%, -50%) scale(1.12);
}
.diff-illu { position: relative; z-index: 1; width: 86%; height: auto; }
.diff-card h3 { color: var(--ink); font-size: 19px; line-height: 1.4; margin: 0; padding: 26px 28px 0; }
.diff-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; padding: 12px 28px 30px; }
/* Hover erzählt die Aussage jeder Karte zu Ende (gleiches Muster wie
   Problem-Bentos und Leistungs-Karten) */
.d1-cam, .d1-tiles rect, .d2-pin, .d2-ring, .d2-arrow, .d3-person, .d3-node, .d3-dot {
  transform-box: fill-box;
  transform-origin: center;
}

/* K1 - Drehtag: die Kamera sendet, alle Content-Slots füllen sich nacheinander */
.d1-cam { transition: transform 0.4s cubic-bezier(0.3, 0.7, 0.3, 1); }
.diff-card:hover .d1-cam { transform: scale(1.07); }
.diff-card:hover .d1-rays path { animation: d1-send 0.9s linear infinite; }
.d1-tiles rect { transition: fill-opacity 0.35s ease, transform 0.35s ease; }
.diff-card:hover .d1-tiles rect { fill-opacity: 0.48; transform: translateY(-2px); }
.diff-card:hover .d1-tiles rect:nth-of-type(1) { transition-delay: 0s; }
.diff-card:hover .d1-tiles rect:nth-of-type(2) { transition-delay: 0.06s; }
.diff-card:hover .d1-tiles rect:nth-of-type(3) { transition-delay: 0.12s; }
.diff-card:hover .d1-tiles rect:nth-of-type(4) { transition-delay: 0.18s; }
.diff-card:hover .d1-tiles rect:nth-of-type(5) { transition-delay: 0.24s; }
.diff-card:hover .d1-tiles rect:nth-of-type(6) { transition-delay: 0.3s; }
.diff-card:hover .d1-tiles rect:nth-of-type(7) { transition-delay: 0.36s; }
.diff-card:hover .d2-route { animation: d2-march 1s linear infinite; }
.d2-pin { transform-origin: 50% 100%; transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.55, 1); }
.diff-card:hover .d2-pin { transform: translateY(-5px); }
.d2-ring { transition: transform 0.35s ease; }
.diff-card:hover .d2-ring { transform: scale(1.12); }
.d2-check { stroke-dasharray: 26; }
.diff-card:hover .d2-check { animation: d2-draw 0.45s ease 0.2s both; }
.diff-card:hover .d2-arrow { transform: translateX(4px); transition: transform 0.35s ease; }

/* K3 - Fester Ansprechpartner: die Auswertungs-Punkte springen nacheinander
   an, die Kurve zeichnet sich nach oben */
.d3-spark { stroke-dasharray: 130; }
.diff-card:hover .d3-spark { animation: d3-draw 0.8s cubic-bezier(0.3, 0.7, 0.3, 1) 0.15s both; }
.d3-dot { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease, fill-opacity 0.3s ease; }
.diff-card:hover .d3-dot { fill: var(--peach); fill-opacity: 1; transform: scale(1.45); }
.diff-card:hover .d3-dot:nth-of-type(1) { transition-delay: 0.1s; }
.diff-card:hover .d3-dot:nth-of-type(2) { transition-delay: 0.25s; }
.diff-card:hover .d3-dot:nth-of-type(3) { transition-delay: 0.4s; }
.d3-node, .d3-person { transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.3, 1); }
.diff-card:hover .d3-node { transform: scale(1.15); }
.diff-card:hover .d3-person { transform: rotate(-4deg) scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .diff-card, .diff-visual::after { transition: none; }
  .diff-card:hover { transform: none; }
  .diff-card:hover .diff-visual::after { transform: translate(-50%, -50%); }
  .d1-cam, .d1-tiles rect, .d2-pin, .d2-ring, .d3-dot, .d3-node, .d3-person { transition: none; }
  .diff-card:hover .d1-cam,
  .diff-card:hover .d1-tiles rect,
  .diff-card:hover .d2-pin,
  .diff-card:hover .d2-ring,
  .diff-card:hover .d2-arrow,
  .diff-card:hover .d3-dot,
  .diff-card:hover .d3-node,
  .diff-card:hover .d3-person { transform: none; }
  .diff-card:hover .d1-rays path,
  .diff-card:hover .d2-route,
  .diff-card:hover .d2-check,
  .diff-card:hover .d3-spark { animation: none; }}


/* ==========================================================================
   Leistungen
   ========================================================================== */
.services { padding: var(--space-md) 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal-muted-light);
}
.service-visual {
  position: relative;
  overflow: hidden;
  height: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-tint);
  border-bottom: 1px solid var(--border);
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,100,102,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,100,102,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 80%);
}
.service-visual::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.32), transparent 68%);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.service-card-ads .service-visual::after {
  background: radial-gradient(circle, rgba(16,100,102,0.22), transparent 68%);
}
.service-card:hover .service-visual::after {
  transform: translate(-50%, -50%) scale(1.12);
}
.service-illu {
  position: relative;
  z-index: 1;
  height: 78%;
  width: auto;
  max-width: 90%;
}
.service-card-body { padding: 28px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 20px; margin-bottom: 12px; }
.service-card-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Hover-Animationen der vier Leistungen. Jede zeigt, was die Leistung tut -
   nicht Bewegung um der Bewegung willen.
   -------------------------------------------------------------------------- */

/* 01 Content & Social Media - aus einem Dreh wird ein Stapel: die Karten
   fächern auf, das Video läuft (Pegel bewegen sich), die Reichweite wandert
   die Kurve entlang und der Endpunkt wächst. */
.s1-fan, .s1-play, .s1-play-tri, .s1-dot, .s1-dot-glow {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.s1-wave {
  transform-box: view-box;
  transform-origin: 0 121px;
  transition: transform 0.4s cubic-bezier(0.34, 1.35, 0.5, 1);
}
.service-card-content:hover .s1-fan-l { transform: translateX(-13px) rotate(-4deg); }
.service-card-content:hover .s1-fan-r { transform: translateX(13px) rotate(4deg); }
.service-card-content:hover .s1-play { transform: scale(1.12); }
.service-card-content:hover .s1-play-tri { transform: scale(1.1); }
.service-card-content:hover .s1-dot { transform: scale(1.4); }
.service-card-content:hover .s1-dot-glow { transform: scale(1.6); }
.service-card-content:hover .s1-wave:nth-of-type(1) { transform: scaleY(2.4); transition-delay: 0s; }
.service-card-content:hover .s1-wave:nth-of-type(2) { transform: scaleY(0.65); transition-delay: 0.06s; }
.service-card-content:hover .s1-wave:nth-of-type(3) { transform: scaleY(1.35); transition-delay: 0.12s; }
.service-card-content:hover .s1-wave:nth-of-type(4) { transform: scaleY(0.7); transition-delay: 0.18s; }
.service-card-content:hover .s1-wave:nth-of-type(5) { transform: scaleY(1.3); transition-delay: 0.24s; }
.service-card-content:hover .s1-wave:nth-of-type(6) { transform: scaleY(2.6); transition-delay: 0.3s; }
.service-card-content:hover .s1-path { animation: s1-travel 1.1s linear infinite; }

/* 02 Werbeanzeigen - das Budget skaliert: die Balken wachsen von links nach
   rechts nach, die Kurve zeichnet sich neu, und die beiden Kennzahlen gehen
   in die richtige Richtung - Leads rauf, Klickpreis runter. */
.s2-bar {
  transform-box: view-box;
  transform-origin: 0 140px;
  transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.s2-cpc, .s2-leads {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.service-card-ads:hover .s2-bar:nth-of-type(1) { transform: scaleY(1.05); transition-delay: 0s; }
.service-card-ads:hover .s2-bar:nth-of-type(2) { transform: scaleY(1.1); transition-delay: 0.05s; }
.service-card-ads:hover .s2-bar:nth-of-type(3) { transform: scaleY(1.16); transition-delay: 0.1s; }
.service-card-ads:hover .s2-bar:nth-of-type(4) { transform: scaleY(1.22); transition-delay: 0.15s; }
.service-card-ads:hover .s2-bar:nth-of-type(5) { transform: scaleY(1.3); transition-delay: 0.2s; }
.service-card-ads:hover .s2-bar:nth-of-type(6) { transform: scaleY(1.4); transition-delay: 0.25s; }
.service-card-ads:hover .s2-leads { transform: translateY(-8px); }
.service-card-ads:hover .s2-cpc { transform: translateY(8px); }
.service-card-ads:hover .s2-cpc-arrow { transform-box: fill-box; transform-origin: center; transform: rotate(180deg); transition: transform 0.4s ease; }
.s2-trend { stroke-dasharray: 220; }
.service-card-ads:hover .s2-trend { animation: s2-draw 0.85s cubic-bezier(0.3, 0.7, 0.3, 1) both; }

/* 03 Webdesign & Landingpages - mobil zuerst: das Handy kommt nach vorn, der
   Desktop tritt zurück, und beide CTA-Buttons werden nacheinander geklickt -
   der Moment, in dem aus Interesse eine Anfrage wird. */
.s3-desktop, .s3-phone, .s3-cta, .s3-cta-mobile {
  transform-box: fill-box;
  transform-origin: center;
}
.s3-desktop, .s3-phone { transition: transform 0.55s cubic-bezier(0.3, 0.7, 0.3, 1); }
.service-card-web:hover .s3-desktop { transform: translateX(-7px) scale(0.97); }
.service-card-web:hover .s3-phone { transform: translate(9px, -7px) scale(1.08); }
.service-card-web:hover .s3-cta { animation: s3-tap 0.6s cubic-bezier(0.3, 0.7, 0.3, 1) 0.1s both; }
.service-card-web:hover .s3-cta-mobile { animation: s3-tap 0.6s cubic-bezier(0.3, 0.7, 0.3, 1) 0.38s both; }

@media (prefers-reduced-motion: reduce) {
  .s1-fan, .s1-play, .s1-play-tri, .s1-dot, .s1-dot-glow, .s1-wave,
  .s2-bar, .s2-cpc, .s2-leads, .s3-desktop, .s3-phone { transition: none; }
  .service-card:hover .s1-fan,
  .service-card:hover .s1-play,
  .service-card:hover .s1-play-tri,
  .service-card:hover .s1-dot,
  .service-card:hover .s1-dot-glow,
  .service-card:hover .s1-wave,
  .service-card:hover .s2-bar,
  .service-card:hover .s2-cpc,
  .service-card:hover .s2-cpc-arrow,
  .service-card:hover .s2-leads,
  .service-card:hover .s3-desktop,
  .service-card:hover .s3-phone { transform: none; }
  .service-card:hover .s1-path,
  .service-card:hover .s2-trend,
  .service-card:hover .s3-cta,
  .service-card:hover .s3-cta-mobile { animation: none; }}


@media (prefers-reduced-motion: reduce) {
  .service-card, .service-visual::after { transition: none; }
  .service-card:hover { transform: none; }
  .service-card:hover .service-visual::after { transform: translate(-50%, -50%); }}


/* ==========================================================================
   Content-Produktion Spotlight (Video-Slider)
   ========================================================================== */
.spotlight {
  /* --space-md statt --sm: das Band zog seinen Innenabstand ab 761px von 72
     auf 52px zusammen, waehrend alle Nachbarn dort wuchsen. */
  padding: var(--space-md) 0;
  background: var(--teal-tint);
}
.process-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-timeline-fill {
  position: absolute;
  top: 8px;
  left: 27px;
  width: 2px;
  height: 0;
  background: var(--teal);
  border-radius: 2px;
  z-index: 0;
}
.process-step-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-marker span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.process-step-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--teal-tint);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.process-step-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 18px;
  background: rgba(255,255,255,0.55);
  color: var(--teal);
}
.process-step-media svg { width: 100%; max-width: 160px; height: auto; }
.process-step-body { padding: 24px 26px 28px; }
.process-step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.process-step-body h3 { font-size: 18px; margin-bottom: 10px; }
.process-step-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
@media (prefers-reduced-motion: reduce) {
  .process-step-marker span, .process-step-card { transition: none; }}

/* Keine Pillen mehr - schlichte Häkchen-Zeile, gleiche Inhalte */
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 18px;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.step-tag::before {
  content: '✓';
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
}

/* Abschluss-Statement des Ablaufs: bewusst keine Box - großzügige Typo mit
   fett gesetzten Kernaussagen, darunter der direkte Einstieg ins Erstgespräch */
.process-note-block {
  margin: 64px auto 0;
  max-width: 780px;
  text-align: center;
}
.process-note {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.65;
  margin: 0 0 30px;
}
.process-note strong {
  color: var(--ink);
  font-weight: 700;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.faq-head {
  margin: 0 0 28px;
  text-align: left;
  max-width: none;
}
.faq-contact-card {
  background: var(--teal-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.faq-contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 16px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.faq-contact-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-contact-title { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.faq-contact-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 20px; }
.faq-contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
/* Pfeil als Inline-SVG statt →-Glyphe: sitzt mittig zur Zeile statt auf der
   Grundlinie und bewegt sich beim Hover wie die übrigen Textlinks der Seite */
.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  transition: color 0.18s ease;
}
.faq-contact-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.22s ease;
}
.faq-contact-link:hover { color: var(--teal); }
.faq-contact-link:hover svg { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .faq-contact-link svg, .faq-contact-link:hover svg { transition: none; transform: none; }}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.cta-main { text-align: left; }
/* Die Formel steht auf zwei eigenen Zeilen, die Einladung darunter tritt eine
   Stufe zurück - gehört noch zur Headline, führt aber schon in den Fließtext. */
.cta-h-line { display: block; }
.cta-h-lead {
  display: block;
  margin-top: 20px;
  max-width: 24ch;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
}
.cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.cta-links {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
}
.cta-links a { font-weight: 600; color: rgba(255,255,255,0.85); }
.cta-links a:hover { color: var(--peach); }
.cta-links-dot { margin: 0 10px; color: rgba(255,255,255,0.3); }
.cta-card-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.cta-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.22);
  transform-origin: 80% 30%;
  display: block;
}
.cta-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,33,26,0) 45%, rgba(18,33,26,0.85) 100%);
  pointer-events: none;
}
.cta-card-person-text {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cta-card-name { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.cta-card-role { font-size: 14px; color: var(--peach); font-weight: 600; }
.cta-card-body { padding: 24px 26px 28px; }
.cta-card-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.cta-card-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cta-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}
.cta-card-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--peach); margin-top: 1px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { gap: 18px; }
    /* Gestapelt immer Text vor Video - Row B hat im Desktop-Grid Media zuerst */
    /* Gestapelt: Textblöcke zentriert, Kategorie-Pillen entfallen */
    
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { text-align: center; margin-left: auto; margin-right: auto; }
  .faq-contact-card { max-width: 520px; }

  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-main { text-align: center; }
  .cta-h-lead { margin-left: auto; margin-right: auto; }
  .cta-sub { margin-left: auto; margin-right: auto; }
  .cta-actions { justify-content: center; }}


@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-step-marker { width: 40px; height: 40px; }
  .process-step-marker span { width: 32px; height: 32px; font-size: 12.5px; }
  .process-step-body { padding: 20px 18px 24px; }
  .service-card-body { padding: 24px 22px 28px; }
  /* Gestapelte Warum-Karten: Text zentriert */
  .diff-card h3, .diff-card p { text-align: center; }}


@media (max-width: 480px) {
  .faq-contact-card { padding: 22px; }
  .cta-card-body { padding: 22px; }}


/* ==========================================================================
   Bridge-CTA (dunkelgrün, nach den Ergebnissen)
   ========================================================================== */
.bridge-cta {
  background: var(--white);
  padding: 8px 0 var(--space-sm);
}
.bridge-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.55fr auto;
  align-items: center;
  gap: 44px;
  min-height: 230px;
  padding: 40px 56px;
  background: var(--ink);
  color: var(--white);
  border-radius: 30px;
}
.bridge-cta-glow {
  position: absolute;
  width: 520px; height: 520px;
  right: -110px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.20), rgba(237,191,139,0) 68%);
  pointer-events: none;
}
.bridge-cta-copy { position: relative; z-index: 1; }
.bridge-cta-eyebrow {
  text-transform: uppercase;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--peach);
  margin: 0 0 14px;
}
.bridge-cta-headline {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 12px;
  max-width: 30ch;
}
.bridge-cta-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 52ch;
}
.bridge-cta-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}
.bridge-cta-btn {
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  padding: 18px 30px;
}
.bridge-cta-btn:hover {
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.bridge-cta-btn svg { width: 18px; height: 18px; transition: transform 0.22s ease; }
.bridge-cta-btn:hover svg { transform: translateX(4px); }
.bridge-cta-meta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Zweiter Weg unter dem Haupt-CTA: der Selbstcheck fuer alle, die noch nicht
   sprechen wollen. Bewusst leise gehalten, damit der Buchungs-Button die
   Hauptrolle behaelt (01.09.2026). */
.bridge-cta-alt {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}
.bridge-cta-alt a {
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.bridge-cta-alt a:hover { color: var(--peach); }
@media (max-width: 860px) {
  .bridge-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
    min-height: 0;
  }
  .bridge-cta-action { align-items: stretch; }
  .bridge-cta-btn { justify-content: center; width: 100%; }
  .bridge-cta-meta { text-align: center; }
  .bridge-cta-alt { text-align: center; }
  .bridge-cta-glow { right: -180px; top: 0; transform: none; }}

@media (prefers-reduced-motion: reduce) {
  .bridge-cta-btn:hover { transform: none; }
  .bridge-cta-btn svg, .bridge-cta-btn:hover svg { transition: none; transform: none; }}

.services-all { text-align: center; margin-top: 34px; }


/* ==========================================================================
   MOBILE-FEINSCHLIFF (Mobile-Audit 31.07.2026)
   Gilt ausschliesslich bis 640px. Desktop und Tablet bleiben unberuehrt.
   ========================================================================== */
@media (max-width: 640px) {
  .content-system { padding: 64px 0; }}


/* ==========================================================================
   GRAFIK-FEINSCHLIFF - Phase 1 und 2 des Produktionsdurchlaufs, 03.08.2026
   --------------------------------------------------------------------------
   Sechs Pruefdurchgaenge haben jede beschriftete Grafik aller 16 Routen
   einzeln nachgemessen, bei 320 / 360 / 390 / 430 / 641 / 768 / 900 / 980 /
   1024 und 1280px. Aufgenommen ist hier ausschliesslich Fehlerbehebung:
   Beschnitt, Ueberlauf, Beschriftungen unter 11px, Linien ohne Endpunkt,
   verdeckte Texte, tote Flaeche. Vorschlaege, die Anordnung oder Aufbau einer
   Grafik aendern, sind bewusst NICHT enthalten.
   ========================================================================== */

@media (max-width: 640px) {

  /* --- Startseite, Projektkarten --------------------------------------- */
  /* .pk-link ist mobil eine Flexbox (44px-Tippflaeche). In einer Flexbox
     wird der Pfeil-span zum Flex-Item - der Abstand kommt ueber gap. */
  .pk-link { gap: 8px; }}


/* --- Startseite, Leistungskarten -------------------------------------- */
/* Ab 980px abwaerts stehen die Karten einspaltig und werden bis zu 720px
   breit. Die Illustration blieb durch height:78% einer festen 182px-Flaeche
   bei rund 300px Breite, ein kleines Motiv in einer sehr breiten, leeren
   Flaeche (bei 768px ueber 400px tote Breite). Feste Bandhoehe raus,
   Motivbreite waechst mit der Karte. */
@media (min-width: 460px) and (max-width: 980px) {
  /* 22px statt 34: bei 34 sprang die Bandhoehe an der Bandgrenze von 182 auf
     208px. Mit 22 liegt sie bei 184 und der Uebergang ist praktisch unsichtbar. */
  .service-visual { height: auto; padding: 22px 0; }
  .service-illu { height: auto; width: min(72%, 520px); max-width: 90%; }}


/* --- Startseite, "Warum Social Lift" ---------------------------------- */
/* Zwischen 761 und 1024px stehen die drei Karten weiter nebeneinander. Die
   Illustration schrumpft mit der Spalte auf rund 196x98px, die Bandhoehe blieb
   aber bei festen 156px: rund 58px tote Flaeche ueber und unter dem Motiv. */
@media (min-width: 761px) and (max-width: 919px) {
  .diff-visual { height: auto; padding: 18px 0; }}


/* ==========================================================================
   STARTSEITE, ERKLAERGRAFIK "WARUM CONTENT IM ALLTAG STECKEN BLEIBT"
   Neu aufgebaut am 03.08.2026. Vier Ebenen, von oben nach unten lesbar:
   1 Ideen und Inputs → 2 eine Person → 3 die Folgen → 4 Vorrat bei null.
   Aufbau ueber Grid, die Verbindungslinien sind SVG-Ueberlagerungen mit
   preserveAspectRatio="none" - dadurch sitzen sie prozentgenau, egal wie
   breit der Container gerade ist. Die alte Fassung arbeitete mit absolut
   gesetzten, gedrehten Karten; die brach auf schmalen Geraeten auf.
   ========================================================================== */

/* ===== Startseite: der Wochenzettel (pbw) - 12.08.2026 =====
   Ersetzt die pb3-Grafik (drei Icon-Karten + Person + Chips + Balken).
   Ein Klemmbrett, wie es in der Werkstatt haengt: der Alltag wird
   abgehakt, nur "Video drehen" wandert durchgestrichen durch die
   Woche. Ein Objekt, eine Geschichte, genau ein Peach-Akzent. */

.pbw { max-width: 545px; margin: 0 auto; min-width: 0; }

.pbw-brett { position: relative; transform: rotate(-0.8deg); }
.pbw-blatt2 { position: absolute; inset: 10px -7px -8px 9px; background: #F6F4EE;
              border: 1px solid var(--border); border-radius: 10px; transform: rotate(1.4deg); }
.pbw-blatt { position: relative; background: var(--papier);
             background-image: linear-gradient(rgba(16,100,102,.045) 1px, transparent 1px);
             background-size: 100% 46px; background-position: 0 72px;
             border: 1px solid var(--border); border-radius: 10px;
             padding: 36px 32px 26px; box-shadow: 0 16px 34px rgba(11,76,78,.14); }
.pbw-klammer { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); z-index: 2; }

.pbw-titel { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 14px; }
.pbw-titel b { font-size: 13.5px; font-weight: 800; letter-spacing: 0.09em;
               text-transform: uppercase; color: var(--teal-dark); }
.pbw-titel span { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; color: var(--teal-muted); }

.pbw-zeile { display: grid; grid-template-columns: 36px minmax(0, 1fr) 30px; gap: 12px;
             align-items: center; min-height: 46px; font-size: 16px; }
.pbw-tag { font-size: 12.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--teal-muted); }
.pbw-txt { color: var(--ink-soft); }

/* Haekchen: von Hand gezogen, jedes minimal anders gedreht */
.pbw-hk { width: 25px; height: 25px; }
.pbw-hk path { stroke: var(--teal); stroke-width: 2.6; fill: none;
               stroke-linecap: round; stroke-linejoin: round; }
.pbw-z1 .pbw-hk { transform: rotate(-4deg); }
.pbw-z3 .pbw-hk { transform: rotate(3deg); }
.pbw-z5 .pbw-hk { transform: rotate(-2deg) scale(0.94); }

/* Der Video-Zettel: Haftnotiz mit Knickecke, der eine Peach-Akzent */
.pbw-notiz { position: relative; display: flex; align-items: center; gap: 10px;
             background: var(--peach); border-radius: 6px 6px 12px 6px;
             padding: 9px 15px 10px; transform: rotate(-1.6deg);
             box-shadow: 0 6px 14px rgba(182,122,58,.3);
             font-weight: 700; color: var(--teal-dark); font-size: 16px; }
.pbw-notiz::after { content: ""; position: absolute; right: 0; bottom: 0; width: 0; height: 0;
                    border-style: solid; border-width: 0 0 13px 13px;
                    border-color: transparent transparent rgba(255,255,255,.55) transparent;
                    border-bottom-right-radius: 6px; }
.pbw-z4 .pbw-notiz { transform: rotate(1.1deg); }
.pbw-wort { position: relative; white-space: nowrap; }
/* der handgezogene Strich liegt als SVG ueber dem Wort */
.pbw-strich { position: absolute; left: -3%; top: 52%; width: 106%; height: 8px; overflow: visible; }
.pbw-strich path { stroke: var(--teal-dark); stroke-width: 2.2; fill: none; stroke-linecap: round; }
.pbw-hin { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
           font-size: 17px; color: var(--peach-text); white-space: nowrap; }
.pbw-hin svg { width: 24px; height: 14px; vertical-align: middle; margin-right: 2px; overflow: visible; }
.pbw-hin path { stroke: var(--peach-text); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Fussnote unterm Brett: die Folge */
.pbw-fuss { display: flex; align-items: center; gap: 10px; width: fit-content;
            margin: 26px auto 0; background: var(--white); border: 1px solid var(--border);
            border-radius: 999px; padding: 11px 22px; font-size: 15px; color: var(--ink-soft);
            box-shadow: var(--shadow-sm); }
.pbw-fuss b { color: var(--ink); font-weight: 700; }
.pbw-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--peach-dark); flex: 0 0 auto; }
.pbw:hover .pbw-hk path, .pbw:focus-visible .pbw-hk path { stroke-dasharray: 26; animation: pbw-haken2 0.5s ease both; }
.pbw:hover .pbw-z3 .pbw-hk path, .pbw:focus-visible .pbw-z3 .pbw-hk path { animation-delay: 0.15s; }
.pbw:hover .pbw-z5 .pbw-hk path, .pbw:focus-visible .pbw-z5 .pbw-hk path { animation-delay: 0.3s; }
.pbw:hover .pbw-strich path, .pbw:focus-visible .pbw-strich path { stroke-dasharray: 130; animation: pbw-strich2 0.5s ease both; }
.pbw:hover .pbw-z4 .pbw-strich path, .pbw:focus-visible .pbw-z4 .pbw-strich path { animation-delay: 0.35s; }
.pbw:hover .pbw-hin, .pbw:focus-visible .pbw-hin { animation: pbw-pop2 0.4s cubic-bezier(.2,.7,.2,1) both; }
.pbw:hover .pbw-z4 .pbw-hin, .pbw:focus-visible .pbw-z4 .pbw-hin { animation-delay: 0.5s; }
.pbw:focus-visible { outline: 3px solid var(--teal); outline-offset: 6px; border-radius: 12px; }

@media (max-width: 640px) {
  .pbw-blatt { padding: 28px 20px 18px; }
  .pbw-zeile { font-size: 14px; grid-template-columns: 30px minmax(0, 1fr) 24px; gap: 9px; min-height: 42px; }
  .pbw-hk { width: 21px; height: 21px; }
  .pbw-notiz { font-size: 14px; padding: 7px 11px 8px; gap: 8px; flex-wrap: wrap; }
  .pbw-hin { font-size: 15px; }
  .pbw-fuss { font-size: 13px; padding: 9px 16px; }}


/* Platzhalter: dasselbe Rasterpapier wie im Hero-Hintergrund */
.hvid-fallback {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center;
  gap: 16px; padding: 24px; text-align: center;
  background-image:
    linear-gradient(rgba(44,53,49,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,53,49,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.hvid-ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-tint);
  display: grid; place-items: center;
}
.hvid-ic svg { width: 26px; height: 26px; margin-left: 3px; display: block; }
.hvid-title { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--ink); }
/* Der Dateipfad ist ein Hinweis fuer die Redaktion, nicht fuer Besucher:
   er erscheint nur auf dem lokalen Vorschau-Server. */
.hvid-hint { display: none; margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); }
.hvid-hint code { font-size: 12px; background: rgba(16,100,102,0.07); border-radius: 5px; padding: 2px 6px; }

@media (max-width: 700px) {
  .hvid-ic { width: 54px; height: 54px; }
  .hvid-ic svg { width: 22px; height: 22px; }
  .hvid-title { font-size: 15px; }}

/* Unter 340px war der Platzhalterinhalt hoeher als der 16:9-Rahmen und wurde
   von overflow:hidden oben und unten beschnitten. */
@media (max-width: 340px) {
  .hvid-fallback { padding: 12px; gap: 8px; }
  .hvid-ic { width: 44px; height: 44px; }
  .hvid-ic svg { width: 20px; height: 20px; }}



/* ===== Startseite: Projektkarten + Belegwand (pk / bw) - 13.08.2026 =====
   Ersetzt das pbu-Kachelfeld: sieben Kacheln in vier Formaten, ein
   Zahlen-Band doppelt zum Hero, eine Wellenkurve ohne Datengrundlage.
   Jetzt: drei gleiche Video-Karten, leicht gedreht wie hingelegt,
   darunter echte Ausschnitte aus den Kundenkonten. Der WhatsApp-Beleg
   ist nachgebaut statt Screenshot - das Original traegt einen
   Klarnamen (gleiche Entscheidung wie auf der Projektseite). */

.pk-sek { padding: var(--space-md) 0; background: var(--ink); position: relative; overflow: hidden; }

.pk-kopf { max-width: 62ch; }
.pk-kopf h2 { margin: 8px 0 14px; color: #fff; }
.pk-kopf > p:last-child { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.6; }

.pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 38px 0 0; }

.pk { background: var(--papier); border-radius: 12px; overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,.28);
      display: flex; flex-direction: column; }
.pk:nth-child(1) { transform: rotate(-1.1deg); }
.pk:nth-child(2) { transform: rotate(.7deg) translateY(-8px); }
.pk:nth-child(3) { transform: rotate(-.5deg) translateY(2px); }

/* Ein Bildfenster fuer alle drei Videos, damit die Reihe ruhig bleibt.
   img absolut: sonst draengt ein Hochformat-Poster das Fenster auf
   (gemessen: 644px statt 276px). */
.pk-film { position: relative; display: block; width: 100%; aspect-ratio: 4 / 3;
           border: 0; padding: 0; background: var(--ink); cursor: pointer; overflow: hidden; }
.pk-film img { position: absolute; inset: 0; width: 100%; height: 100%;
               object-fit: cover; display: block; }
.pk-film--hoch img { object-position: 50% 28%; }
.pk-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
           width: 54px; height: 54px; border-radius: 50%; background: rgba(252,251,248,.94);
           display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.3);
           transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.pk-play svg { width: 22px; height: 22px; margin-left: 3px; color: var(--teal-dark); }
.pk-film:hover .pk-play, .pk-film:focus-visible .pk-play { transform: translate(-50%,-50%) scale(1.09); }
.pk-film:focus-visible { outline: 3px solid var(--peach); outline-offset: -3px; }
.pk-dauer { position: absolute; right: 10px; bottom: 10px; background: rgba(11,76,78,.82);
            color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .02em;
            padding: 3px 8px; border-radius: 5px; }

.pk-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pk-wer { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 0 0 12px; }
.pk-wer b { font-size: 11px; font-weight: 800; letter-spacing: .09em;
            text-transform: uppercase; color: var(--teal-dark); }
.pk-wer span { font-family: 'Fraunces', serif; font-style: italic;
               font-size: 14px; color: var(--teal-muted); }
.pk-zahl { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; line-height: 1.08;
           color: var(--teal-dark); margin: 0; }
.pk-einheit { display: block; margin: 4px 0 0; font-size: 13.5px; font-weight: 700;
              color: var(--peach-text); }
.pk-satz { margin: 12px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.pk-link { margin: auto 0 0; padding-top: 16px; font-size: 14px; font-weight: 700;
           color: var(--teal-dark); text-decoration: none;
           border-bottom: 1px solid rgba(16,100,102,.28); align-self: flex-start;
           transition: border-color .25s ease; }
.pk-link:hover { border-bottom-color: var(--peach); }
.pk-link span { display: inline-block; margin-left: 4px; transition: transform .25s ease; }
.pk-link:hover span { transform: translateX(3px); }

/* ---- Belegwand ---- */
.bw-kopf { margin: 54px 0 18px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.bw-kopf b { font-size: 11px; font-weight: 800; letter-spacing: .09em;
             text-transform: uppercase; color: var(--peach); }
.bw-kopf span { font-size: 14.5px; color: rgba(255,255,255,.6); }
.bw-k { background: #fff; border-radius: 8px; padding: 7px 7px 0; transform: rotate(var(--tilt, 0deg));
        box-shadow: 0 12px 26px rgba(0,0,0,.3); display: flex; flex-direction: column; margin: 0; }
/* Alle Ausschnitte im selben Fenster: die Screenshots sind 525-726px hoch
   und wuerden die Reihe sonst zerreissen. Unterkante zeigt die Aufrufzahl. */
.bw-bild { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 4px; }
.bw-bild img { position: absolute; inset: 0; width: 100%; height: 100%;
               object-fit: cover; object-position: 50% 100%; display: block; }
.bw-k--breit { grid-column: span 2; }
.bw-k figcaption { padding: 7px 3px 9px; font-size: 10.5px; font-weight: 700;
                   letter-spacing: .04em; text-transform: uppercase; color: var(--teal-muted);
                   text-align: center; }
.bw-k--text { background: var(--papier); padding: 16px 16px 0; }
.bw-k--text > :first-child { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.bw-chat { background: var(--teal-tint); border-radius: 10px 10px 10px 4px; padding: 16px 18px;
           font-size: 16.5px; line-height: 1.6; color: var(--ink); }
.bw-chat mark { background: rgba(237,191,139,.5); padding: 0 2px; border-radius: 2px; }
.bw-zahl { text-align: center; padding: 10px 0; }
.bw-zahl b { display: block; font-size: 92px; font-weight: 800; color: var(--teal-dark); line-height: .95; }
.bw-zahl span { display: block; margin-top: 10px; font-size: 16px; font-weight: 700; color: var(--peach-text); }

@media (prefers-reduced-motion: reduce) {
  .pk-film:hover .pk-play, .pk-film:focus-visible .pk-play { transform: translate(-50%,-50%); }
  .pk-play, .pk-link span { transition: none; }}


@media (max-width: 900px) {
  .pk-grid { grid-template-columns: 1fr; gap: 20px; max-width: 460px; }
  .pk:nth-child(2) { transform: rotate(.7deg); }
  .bw-k--breit { grid-column: span 2; }}

@media (max-width: 560px) {
  .bw-zahl b { font-size: 62px; }
  .bw-zahl span { font-size: 13px; }
  .bw-chat { font-size: 14.5px; padding: 14px 15px; }}
