/* ═══════════════════════════════════════════════════════════════════
   Make a Frame – Leistungs-Unterseiten
   (imagefilm-zwickau, onboarding-videos, weiterbildungsvideos, sicherheitsvideos)
   Tokens & Komponenten entsprechen videoproduktionzwickau.html, damit die
   Unterseiten nahtlos in die bestehende Optik passen.
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --black:      #0a0a0a;
  --black-rich: #050505;
  --white:      #f8f8f8;
  --gray-100:   #f0f0f0;
  --gray-200:   #e4e4e4;
  --gray-400:   #a0a0a0;
  --gray-600:   #666;
  --gray-800:   #2a2a2a;
  --blue:       #1C6EF7;
  --blue-glow:  rgba(28, 110, 247, 0.28);
  --ff:   'Inter', system-ui, sans-serif;
  --pad:  clamp(20px, 5vw, 80px);
  --padv: clamp(80px, 11vw, 140px);
  --max:  1260px;
  --text: 720px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--ff);
  font-weight: 300;
  color: var(--black);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ PROGRESS ══ */
#progress {
  position: fixed; top: 0; left: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--blue), #93C5FD, var(--blue));
  box-shadow: 0 0 10px var(--blue-glow);
  width: 0; z-index: 300; pointer-events: none;
  transition: width 0.08s linear;
}

/* ══ REVEAL (nur pro Abschnitt, nicht pro Element) ══ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.14s; }
.d2 { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ══ NAV ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px var(--pad);
  transition: padding 0.4s var(--ease), background 0.5s, border-color 0.5s;
}
#nav.scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid rgba(248,248,248,0.06);
}
.nav-logo img { height: 22px; filter: invert(1); transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.5; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.59rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer; z-index: 201;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: transform 0.35s var(--ease), opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 720px) {
  .burger { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(32px);
    flex-direction: column; justify-content: center; gap: 40px; z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.85rem; letter-spacing: 0.16em; }
}

/* ══ HERO ══ */
#hero {
  min-height: 92svh; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #06090f 0%, #08090e 55%, #0a0a0a 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px var(--pad) clamp(64px, 9vw, 110px);
}
#hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 65% at 82% 50%, rgba(28,110,247,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 10% 42%, rgba(28,110,247,0.16) 0%, transparent 55%);
  animation: hero-glow 5s ease-in-out infinite alternate;
}
@keyframes hero-glow { from { opacity: 0.7; } to { opacity: 1; } }
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px; opacity: 0.042;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  position: relative; z-index: 4;
  animation: rise 1s var(--ease) 0.1s both;
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-inner { animation: none; } #hero::before { animation: none; } }

.hero-crumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; font-size: 0.68rem; color: rgba(248,248,248,0.38); }
.hero-crumbs a { color: rgba(248,248,248,0.55); border-bottom: 1px solid rgba(248,248,248,0.18); transition: color 0.2s, border-color 0.2s; }
.hero-crumbs a:hover { color: var(--white); border-color: var(--blue); }
.hero-crumbs span[aria-current] { color: rgba(248,248,248,0.85); }

.hero-h1 {
  font-size: clamp(2.3rem, 5.6vw, 5.6rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.04em;
  color: var(--white); max-width: 15ch;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1.04rem);
  font-weight: 300; color: rgba(248,248,248,0.5);
  line-height: 1.8; max-width: 560px;
  margin-top: 26px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 6px;
  background: var(--blue); color: var(--white);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.cta-primary:hover { background: #1a5fd8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,110,247,0.35); }
.cta-secondary {
  display: inline-flex; align-items: center;
  padding: 13px 26px; border-radius: 6px;
  border: 1px solid rgba(248,248,248,0.14);
  color: rgba(248,248,248,0.55);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.cta-secondary:hover { border-color: rgba(248,248,248,0.32); color: rgba(248,248,248,0.88); transform: translateY(-2px); }
:is(.cta-primary, .cta-secondary, .nav-links a, .faq-q, .ref-frame):focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ══ SECTION BASE ══ */
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.035em;
  color: var(--black); margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 20ch;
}
.section-h2-light { color: var(--white); }
.section-sub { font-size: clamp(0.92rem, 1.5vw, 1.08rem); line-height: 1.6; color: var(--gray-600); max-width: 88ch; text-wrap: balance; margin: calc(18px - clamp(36px, 5vw, 56px)) 0 clamp(28px, 4vw, 44px); }
.light { background: var(--white); padding: var(--padv) var(--pad); position: relative; }
.light + .light::before {
  content: ''; position: absolute; top: 0; left: var(--pad); right: var(--pad); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}
.dark { background: #0d0d0d; padding: var(--padv) var(--pad); position: relative; }
.dark::before {
  content: ''; position: absolute; top: 0; left: var(--pad); right: var(--pad); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,248,248,0.07), transparent);
}

.prose { max-width: var(--text); }
.prose p { font-size: clamp(0.92rem, 1.35vw, 1.05rem); line-height: 1.8; color: var(--gray-800); }
.prose p + p { margin-top: 18px; }
.prose strong { font-weight: 600; color: var(--black); }
.prose a { color: var(--blue); border-bottom: 1px solid rgba(28,110,247,0.3); transition: border-color 0.2s; }
.prose a:hover { border-color: var(--blue); }
.prose h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 12px; color: var(--black); }
.dark .prose p { color: rgba(248,248,248,0.55); }
.dark .prose strong, .dark .prose h3 { color: var(--white); }

/* ══ KURZ GESAGT (Antwort zuerst) ══ */
.kurz-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
@media (max-width: 900px) { .kurz-layout { grid-template-columns: 1fr; } }
.kurz-lead { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 500; line-height: 1.45; letter-spacing: -0.02em; color: var(--black); margin-bottom: 24px; }
.facts { border-top: 1px solid var(--gray-200); }
.facts li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.86rem; line-height: 1.55; }
.facts dt, .facts .k { font-weight: 600; color: var(--black); }
.facts .v { color: var(--gray-600); }
@media (max-width: 480px) { .facts li { grid-template-columns: 1fr; gap: 4px; } }

/* ══ NUTZEN-KARTEN ══ */
.n-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .n-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .n-grid { grid-template-columns: 1fr; } }
/* 4 Karten: drei nebeneinander, die vierte mittig darunter */
.n-grid-2 .n-card:nth-child(4) { grid-column: 2; }
@media (max-width: 960px) { .n-grid-2 .n-card:nth-child(4) { grid-column: auto; } }
.n-card {
  padding: clamp(26px, 3.2vw, 40px);
  border: 1px solid var(--gray-200); border-radius: 16px;
  background: var(--gray-100);
}
.n-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.25; }
.n-card p { font-size: 0.82rem; line-height: 1.75; color: var(--gray-600); }
.n-icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 20px;
  background: rgba(28,110,247,0.1); border: 1px solid rgba(28,110,247,0.2);
  display: flex; align-items: center; justify-content: center;
}
.n-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ══ LEISTUNGSUMFANG (Checkliste) ══ */
.scope { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); }
@media (max-width: 860px) { .scope { grid-template-columns: 1fr; } }
.check li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 0.88rem; line-height: 1.6; color: var(--gray-800);
}
.check li:first-child { border-top: 1px solid var(--gray-200); }
.check li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: rgba(28,110,247,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C6EF7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.check strong { font-weight: 600; color: var(--black); }

/* ══ ABLAUF ══ */
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1060px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-row { grid-template-columns: 1fr; } }
.process-step { padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.8vw, 36px); position: relative; border-radius: 12px; transition: background 0.4s var(--ease); }
.process-step:hover { background: rgba(28,110,247,0.09); }
.process-step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: clamp(28px, 3.5vw, 48px); bottom: clamp(28px, 3.5vw, 48px); width: 1px; background: rgba(248,248,248,0.14); }
@media (max-width: 1060px) {
  .process-step:not(:last-child)::after { display: none; }
  .process-step { border-bottom: 1px solid rgba(248,248,248,0.08); }
  .process-step:last-child { border-bottom: none; }
}
.process-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(28,110,247,0.22); border: 1px solid rgba(91,156,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #7FB2FF; margin-bottom: 24px;
  box-shadow: 0 0 18px rgba(28,110,247,0.25);
}
.process-h3 { font-size: 1.02rem; font-weight: 700; color: var(--white); letter-spacing: -0.016em; margin-bottom: 12px; line-height: 1.2; }
.process-p { font-size: 0.86rem; font-weight: 400; color: rgba(248,248,248,0.78); line-height: 1.75; }

/* ══ ABLAUF – aufklappbare Schritte (Weiterbildungsvideos) ══ */
.steps-intro { max-width: 620px; font-size: clamp(0.92rem, 1.3vw, 1.02rem); font-weight: 300; line-height: 1.7; color: rgba(248,248,248,0.7); margin: -8px 0 clamp(32px, 4vw, 52px); }
.steps { max-width: 900px; }
.steps-item { border-top: 1px solid rgba(248,248,248,0.1); position: relative; transition: background 0.4s var(--ease); }
.steps-item:last-child { border-bottom: 1px solid rgba(248,248,248,0.1); }
.steps-q {
  width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px, 3vw, 36px);
  padding: clamp(20px, 2.6vw, 30px) clamp(12px, 2vw, 24px); background: none; border: 0; text-align: left; cursor: pointer; font-family: var(--ff); color: var(--white);
}
.steps-num { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 200; letter-spacing: -0.04em; line-height: 1; color: rgba(248,248,248,0.35); font-variant-numeric: tabular-nums; transition: color 0.3s; min-width: 2.2ch; }
.steps-item.open .steps-num, .steps-q:hover .steps-num { color: var(--white); }
.steps-head { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.steps-title { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.steps-who { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; line-height: 1; white-space: nowrap; }
.steps-who-both { color: rgba(248,248,248,0.75); border: 1px solid rgba(248,248,248,0.22); }
.steps-who-me { color: rgba(248,248,248,0.75); border: 1px solid rgba(248,248,248,0.22); }
.steps-who-you { color: var(--white); background: var(--blue); animation: steps-pulse 2.6s ease-out infinite; }
@keyframes steps-pulse { 0% { box-shadow: 0 0 0 0 rgba(28,110,247,0.55); } 70% { box-shadow: 0 0 0 9px rgba(28,110,247,0); } 100% { box-shadow: 0 0 0 0 rgba(28,110,247,0); } }
.steps-icon { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(248,248,248,0.2); display: flex; align-items: center; justify-content: center; color: rgba(248,248,248,0.6); transition: all 0.3s var(--ease); }
.steps-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.4s var(--ease); }
.steps-q:hover .steps-icon { border-color: rgba(248,248,248,0.5); color: var(--white); }
.steps-item.open .steps-icon { background: var(--white); border-color: var(--white); color: var(--black); }
.steps-item.open .steps-icon svg { transform: rotate(45deg); }
.steps-body { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.steps-item.open .steps-body { max-height: 1200px; }
.steps-a { padding: 0 clamp(12px, 2vw, 24px) clamp(28px, 3vw, 40px) calc(clamp(12px, 2vw, 24px) + 2.2ch + clamp(16px, 3vw, 36px) + 0.4em); max-width: 780px; }
@media (max-width: 600px) { .steps-a { padding-left: clamp(12px, 2vw, 24px); } }
.steps-a p { font-size: clamp(0.92rem, 1.3vw, 1.02rem); font-weight: 400; line-height: 1.75; color: rgba(248,248,248,0.88); }
.steps-a p + p { margin-top: 12px; }
.steps-a strong { font-weight: 700; color: var(--white); }
/* Hervorhebung: Schritt, der beim Kunden liegt */
.steps-item-you::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform 0.5s var(--ease); }
.steps-item-you.open { background: linear-gradient(90deg, rgba(28,110,247,0.12), rgba(28,110,247,0) 70%); }
.steps-item-you.open::before { transform: scaleY(1); }
.steps-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); margin-top: 24px; }
@media (max-width: 640px) { .steps-split { grid-template-columns: 1fr; } }
.steps-col { padding: 20px 22px; border-radius: 12px; background: rgba(248,248,248,0.04); border: 1px solid rgba(248,248,248,0.1); }
.steps-col:first-child { background: var(--white); border-color: var(--white); }
.steps-col-label { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; color: rgba(248,248,248,0.6); }
.steps-col:first-child .steps-col-label { color: var(--blue); }
.steps-col ul { list-style: none; padding: 0; margin: 0; }
.steps-col li { position: relative; padding-left: 18px; font-size: 0.9rem; line-height: 1.6; color: rgba(248,248,248,0.85); }
.steps-col li + li { margin-top: 8px; }
.steps-col li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: rgba(248,248,248,0.4); }
.steps-col:first-child li { color: var(--black); font-weight: 500; }
.steps-col:first-child li::before { background: var(--blue); }
.steps-q:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .steps-who-you { animation: none; } }

/* ══ REFERENZ ══ */
.ref-layout .section-h2, .kurz-layout .section-h2 { font-size: clamp(1.7rem, 3.1vw, 2.7rem); max-width: none; margin-bottom: clamp(24px, 3vw, 36px); text-wrap: balance; }
.ref-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .ref-layout { grid-template-columns: 1fr; } }
.ref-frames { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ref-frame { position: relative; border-radius: 10px; overflow: hidden; background: var(--gray-200); }
.ref-frame:first-child { grid-column: 1 / -1; }
.ref-frame img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.ref-frame:hover img { transform: scale(1.03); }
.ref-meta { font-size: 0.72rem; color: var(--gray-400); margin-top: 12px; line-height: 1.6; }
.ref-meta a { color: var(--blue); }

/* ══ FAQ ══ */
.faq-inner { max-width: 760px; }
.faq-item { overflow: hidden; border-bottom: 1px solid rgba(248,248,248,0.07); }
.faq-item:first-child { border-top: 1px solid rgba(248,248,248,0.07); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-family: var(--ff);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem); font-weight: 600; letter-spacing: -0.012em;
  text-align: left; color: rgba(248,248,248,0.85); transition: color 0.22s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--white); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: rgba(248,248,248,0.25); transition: color 0.22s; }
.faq-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.4s var(--ease); }
.faq-item.open .faq-icon { color: var(--blue); }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.open .faq-body { max-height: 900px; }
.faq-a { padding: 4px 0 26px; font-size: clamp(0.85rem, 1.3vw, 0.92rem); font-weight: 300; line-height: 1.85; color: rgba(248,248,248,0.55); }
.faq-a p + p { margin-top: 12px; }
.faq-a a { color: var(--blue); }
.faq-a strong { font-weight: 600; color: rgba(248,248,248,0.85); }
.faq-related {
  display: inline-flex; align-items: center; gap: 8px; margin-top: clamp(32px, 4.5vw, 48px);
  padding: 10px 18px; border-radius: 6px;
  border: 1px solid rgba(28,110,247,0.22); background: rgba(28,110,247,0.06);
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
  transition: background 0.25s var(--ease), border-color 0.25s;
}
.faq-related:hover { background: rgba(28,110,247,0.13); border-color: rgba(28,110,247,0.45); }

/* ══ WEITERE LEISTUNGEN ══ */

/* ══ KONTAKT ══ */
#kontakt {
  background: linear-gradient(160deg, #06090f 0%, #08090e 55%, #0a0a0a 100%);
  padding: var(--padv) var(--pad); position: relative; overflow: hidden;
}
#kontakt::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 78% 55%, rgba(28,110,247,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 12% 38%, rgba(28,110,247,0.18) 0%, transparent 55%);
}
.kontakt-inner {
  max-width: 960px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
@media (max-width: 680px) { .kontakt-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.kontakt-photo {
  width: clamp(200px, 28vw, 300px); height: clamp(200px, 28vw, 300px);
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(28,110,247,0.32);
  box-shadow: 0 0 0 10px rgba(28,110,247,0.07), 0 24px 64px rgba(0,0,0,0.65);
}
.kontakt-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.kontakt-h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.038em; color: var(--white); margin-bottom: 18px; }
.kontakt-sub { font-size: clamp(0.86rem, 1.4vw, 0.98rem); color: rgba(248,248,248,0.48); line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.kontakt-options { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 680px) { .kontakt-options { justify-content: center; } }
@media (max-width: 600px) { .kontakt-options { flex-direction: column; align-items: stretch; } .ko-item { min-width: unset; } }
.ko-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 36px; border-radius: 12px; min-width: 200px;
  border: 1px solid rgba(248,248,248,0.1); background: rgba(248,248,248,0.04);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.ko-item:hover { border-color: rgba(248,248,248,0.24); background: rgba(248,248,248,0.08); }
.ko-label { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(248,248,248,0.28); }
.ko-value { font-size: clamp(0.85rem, 1.5vw, 1rem); font-weight: 500; color: var(--white); }

/* ══ FOOTER ══ */
body > footer { background: var(--black-rich); border-top: 1px solid rgba(248,248,248,0.05); padding: 22px var(--pad); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-logo img { height: 18px; filter: invert(1); opacity: 0.22; transition: opacity 0.2s; }
.footer-logo:hover img { opacity: 0.55; }
.footer-copy { font-size: 0.62rem; letter-spacing: 0.05em; color: var(--white); }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 0.62rem; letter-spacing: 0.07em; color: var(--white); }
.footer-nav a:hover { text-decoration: underline; }
@media (max-width: 680px) { .hero-ctas { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) { .footer-inner { flex-direction: column; align-items: flex-start; } }

/* Kontakt: Ansprechpartner-Tag */
.kontakt-tag { display: inline-block; font-size: 0.54rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(248,248,248,0.28); margin-bottom: 16px; }

/* ══ KONTAKT UNTER DEN ECKDATEN ══ */
.facts-contact { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center; padding-top: 24px; }
.facts-contact img { width: 120px; height: 120px; border-radius: 50%; display: block; }
.fc-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.fc-tag { font-size: 0.54rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray-400); }
.fc-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--black); margin-bottom: 8px; }
.fc-options { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 8px 12px; border-radius: 8px; text-decoration: none; min-width: 0;
  border: 1px solid var(--gray-200); background: rgba(0,0,0,0.02);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.fc-item:hover { border-color: var(--gray-400); background: rgba(0,0,0,0.05); }
.fc-label { font-size: 0.46rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-400); }
.fc-value { font-size: 0.8rem; font-weight: 500; color: var(--black); overflow-wrap: anywhere; }
@media (max-width: 480px) { .facts-contact { grid-template-columns: 1fr; } }

/* 5 Karten: drei nebeneinander, zwei mittig darunter (6-Spalten-Raster) */
.n-grid-5 { grid-template-columns: repeat(6, 1fr); }
.n-grid-5 .n-card { grid-column: span 2; }
.n-grid-5 .n-card:nth-child(4) { grid-column: 2 / span 2; }
.n-grid-5 .n-card:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 960px) { .n-grid-5 { grid-template-columns: 1fr 1fr; } .n-grid-5 .n-card, .n-grid-5 .n-card:nth-child(4), .n-grid-5 .n-card:nth-child(5) { grid-column: auto; } }
@media (max-width: 600px) { .n-grid-5 { grid-template-columns: 1fr; } }

/* ══ PROJEKT-GALERIE (Aus der Praxis) ══
   Kacheln im Original-16:9. Beim Hover wächst das Bild animiert innerhalb des Rasters, bleibt 16:9 und bekommt unten einen dunklen Textbalken (JS setzt inline top/left/width/height). */
.pj-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pj-tile { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 10px; background: var(--gray-200); text-decoration: none; }
.pj-big { grid-column: span 2; }
.pj-media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; background: var(--black);
  transition: top 0.55s var(--ease), left 0.55s var(--ease), width 0.55s var(--ease), height 0.55s var(--ease), box-shadow 0.55s var(--ease); }
.pj-media img { width: 100%; flex: 1 1 auto; min-height: 0; object-fit: cover; display: block; }
.pj-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; font-size: 0.78rem; line-height: 1.45; color: rgba(248,248,248,0.82); background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0)); }
.pj-cap strong { display: block; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.pj-big .pj-cap { font-size: 0.86rem; padding: 56px 20px 18px; }
/* Hover-Zustand: dunkler, weichgezeichneter Vorhang über den übrigen Kacheln, gehoverte Kachel darüber */
.pj-grid::after { content: ""; position: absolute; inset: -16px; z-index: 4; border-radius: 16px; background: rgba(248,248,248,0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease); }
.pj-grid.has-expanded::after { opacity: 1; }
.pj-tile.is-expanded { z-index: 5; background: transparent; }
.pj-tile.is-expanded .pj-media { box-shadow: 0 24px 60px rgba(0,0,0,0.22); }
.pj-tile.is-expanded .pj-cap { display: none; }
/* Text zum gehoverten Bild steht als normaler Text unter dem Raster (Höhe reserviert, damit nichts springt) */
.pj-caption { min-height: 2.6em; margin-top: 18px; font-size: 0.9rem; line-height: 1.5; color: var(--gray-600); opacity: 0; transition: opacity 0.35s var(--ease); }
.pj-caption.show { opacity: 1; }
.pj-caption strong { font-weight: 700; color: var(--black); margin-right: 10px; }
.pj-tile:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
@media (max-width: 860px) { .pj-grid { grid-template-columns: 1fr 1fr; } .pj-cap { padding: 32px 12px 10px; font-size: 0.72rem; } }
@media (max-width: 480px) { .pj-grid { grid-template-columns: 1fr; } .pj-big { grid-column: auto; } }
.pj-link { display: inline-block; margin-left: 6px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--gray-200); font-size: 0.78rem; font-weight: 600; color: var(--black); text-decoration: none; white-space: nowrap; vertical-align: middle; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.pj-link:hover { border-color: var(--gray-400); background: rgba(0,0,0,0.04); }
.section-h2-wide { max-width: none; font-size: clamp(1.8rem, 3.4vw, 3.2rem); text-wrap: balance; }
.section-h2-nowrap { white-space: nowrap; }
@media (max-width: 640px) { .section-h2-nowrap { white-space: normal; } }
/* Mobil/Tablet: im Bild nur den Kundennamen zeigen, Beschreibung ausblenden */
@media (max-width: 860px) { .pj-cap .pj-desc { display: none; } .pj-cap { padding: 28px 12px 10px; } .pj-cap strong { margin: 0; } }

/* ══ MEHRWERT-LISTE (Kurz gesagt) ══ */
.value-list { list-style: none; margin: 8px 0 0; padding: 0; border-top: 1px solid var(--gray-200); }
.value-list li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.value-n { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--gray-200); padding-top: 2px; }
.value-list h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; margin: 0 0 4px; color: var(--black); }
.value-list p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-600); margin: 0; }
.value-foot { font-size: 0.8rem; color: var(--gray-400); margin-top: 18px; }
.value-foot a { color: var(--gray-600); }
@media (max-width: 480px) { .value-list li { grid-template-columns: 40px 1fr; gap: 12px; } .value-n { font-size: 1.3rem; } }
.value-plus { list-style: none; margin: 0; padding: 0; }
.value-plus li { position: relative; padding-left: 18px; font-size: 0.88rem; line-height: 1.55; color: var(--gray-600); }
.value-plus li + li { margin-top: 3px; }
.value-plus li::before { content: "+"; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--black); }

/* ══ MEHRWERT (Statement) ══ */
.mw-h2 { font-size: clamp(1.9rem, 4.4vw, 4.2rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; color: var(--black); max-width: none; white-space: nowrap; }
@media (max-width: 600px) { .mw-h2 { white-space: normal; } }
.mw-claim { font-size: clamp(2.6rem, 6.5vw, 6rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.045em; color: var(--blue); margin: 4px 0 clamp(24px, 4vw, 40px); padding-bottom: 0.08em;
  opacity: 1; transform: none; filter: blur(14px);
  /* Maske läuft von links nach rechts über den Text: links sichtbar, rechts (noch) unsichtbar */
  -webkit-mask-image: linear-gradient(90deg, #000 40%, transparent 60%); mask-image: linear-gradient(90deg, #000 40%, transparent 60%);
  -webkit-mask-size: 250% 100%; mask-size: 250% 100%;
  -webkit-mask-position: 100% 0; mask-position: 100% 0;
  transition: -webkit-mask-position 1.6s var(--ease) 0.9s, mask-position 1.6s var(--ease) 0.9s, filter 1.6s var(--ease) 0.9s; }
.mw-claim.in { -webkit-mask-position: 0 0; mask-position: 0 0; filter: blur(0); }
.mw-text { max-width: 62ch; }
.mw-text .kurz-lead { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

/* ══ INHALTE als Pill-Liste ══ */
.topic-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.topic-list li { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--gray-200); background: rgba(0,0,0,0.02); font-size: 0.86rem; font-weight: 500; color: var(--black); line-height: 1.3; }

/* ══ PROJEKT-GALERIE mit 3 Kacheln: zwei oben, eine mittig darunter ══ */
.pj-grid-3 .pj-tile { grid-column: span 2; }
.pj-grid-3 .pj-tile:nth-child(3) { grid-column: 2 / span 2; }
@media (max-width: 860px) { .pj-grid-3 .pj-tile, .pj-grid-3 .pj-tile:nth-child(3) { grid-column: auto; } .pj-grid-3 .pj-tile:nth-child(3) { grid-column: span 2; } }
@media (max-width: 480px) { .pj-grid-3 .pj-tile:nth-child(3) { grid-column: auto; } }

/* ══ MODUL-RASTER (Inhalte als quadratische Icon-Kacheln über die Breite) ══ */
.module-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.module { position: relative; aspect-ratio: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 14px 10px; border-radius: 12px; border: 1px solid var(--gray-200); background: rgba(0,0,0,0.02); text-align: center; }
.module-n { position: absolute; top: 10px; left: 12px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gray-400); }
.module svg { width: 30px; height: 30px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.module-label { font-size: 0.78rem; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; color: var(--black); }
@media (max-width: 1100px) { .module-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .module-grid { grid-template-columns: repeat(2, 1fr); } .module { aspect-ratio: auto; padding: 26px 10px 18px; } }
/* 4 Karten in einer Reihe */
.n-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .n-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .n-grid-4 { grid-template-columns: 1fr; } }
/* Preisliste in FAQ-Antworten */
.faq-prices { list-style: none; margin: 10px 0 12px; padding: 0; }
.faq-prices li { padding: 8px 0; border-top: 1px solid rgba(248,248,248,0.08); }
.faq-prices li:last-child { border-bottom: 1px solid rgba(248,248,248,0.08); }
.faq-prices strong { font-weight: 600; color: var(--white); margin-right: 6px; }
.module-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .module-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .module-grid-6 { grid-template-columns: repeat(2, 1fr); } }
.prose .pj-link { display: inline-block; margin: 8px 0 0; border-bottom: none; }
.ref-frames-2 .ref-frame { grid-column: 1 / -1; }
