/* =====================================================================
   amomotion – Stylesheet
   Reines CSS3, kein Build-Schritt. Struktur:
   1. Schriften (lokal, DSGVO-konform)
   2. Design-Tokens (CSS-Variablen)
   3. Reset & Basis
   4. Layout-Helfer
   5. Buttons & CTAs
   6. Header / Navigation
   7. Hero
   8. Sektionen (Problem, Leistungen, Portfolio, Ablauf, Vorteile, Pakete, FAQ)
   9. Kontakt & Formular
   10. Footer & mobile Kontaktleiste
   11. Animationen & Reduced Motion
   12. Rechtstexte (Impressum / Datenschutz)
   ===================================================================== */

/* ---------------------------------------------------------------
   1. SCHRIFTEN – lokal eingebunden (kein Google-Fonts-CDN!)
   Lege die Dateien unter /assets/fonts/ ab (siehe README.md).
   Fehlen sie, greift automatisch der System-Font-Stack.
   --------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Archivo traegt die Ueberschriften und das Wortbild – schmaler und
   kantiger als Inter, damit die Seite eine eigene Handschrift bekommt. */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------
   2. DESIGN-TOKENS
   --------------------------------------------------------------- */
:root {
  /* Farben – Basis */
  --c-bg: #07070b;
  --c-bg-soft: #0d0d13;
  --c-surface: #121219;
  --c-surface-2: #17171f;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-line-strong: rgba(255, 255, 255, 0.15);

  /* Farben – Text */
  --c-text: #f2f2f5;
  --c-text-muted: #a5a6b2;  /* Kontrast > 7:1 auf --c-bg */
  --c-text-dark: #07070b;

  /* Markenfarben – direkt aus dem Logo (assets/img/logo.svg) abgegriffen.
     Der Farbverlauf kommt bewusst NUR im Logo vor; alle Flaechen der Seite
     sind matt und einfarbig. Magenta ist der einzige Signalton und bleibt
     den Handlungsaufrufen vorbehalten. */
  --brand: #fd4e94;          /* Magenta, Signalfarbe, gemessen am Logo */
  --brand-hover: #ff74ac;
  --brand-violet: #a24bf0;   /* Violett, Bogen oben und Play-Dreieck */
  --brand-blue: #0c7bfd;     /* Blau, Bogen links oben */
  --brand-cyan: #2e9cfd;     /* Helles Blau, Bogen links */

  /* Status */
  --c-success: #4ade80;
  --c-error: #ff8a8a;

  /* Typografie */
  --font-display: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: clamp(1.25rem, 0.9rem + 1.2vw, 1.5rem);
  --fs-h3: clamp(1.25rem, 1rem + 0.9vw, 1.5rem);
  --fs-h2: clamp(1.75rem, 1.15rem + 2.6vw, 3rem);
  --fs-h1: clamp(2rem, 1.2rem + 3.4vw, 3.5rem);
  --lh-tight: 1.1;
  --lh-normal: 1.65;

  /* Abstände */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: clamp(3.5rem, 2rem + 7vw, 7rem);
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2rem);

  /* Rundungen */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Schatten – bewusst flach und farblos */
  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --sh-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --sh-lg: 0 8px 30px rgba(0, 0, 0, 0.45);

  /* Bewegung */
  --t-fast: 140ms ease;
  --t-base: 240ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Höhen */
  --header-h: 68px;
  --mobilebar-h: 68px;
}

/* ---------------------------------------------------------------
   3. RESET & BASIS
   --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Ankerziele nicht unter dem Sticky-Header verstecken */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;   /* Sicherheitsnetz gegen horizontales Scrollen */
}

/* Platz für die mobile Kontaktleiste */
@media (max-width: 767px) {
  body { padding-bottom: var(--mobilebar-h); }
}

img, video, svg, picture { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 var(--sp-4);
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.2em; }

a {
  color: var(--brand);
  text-decoration-color: rgba(255, 46, 136, 0.45);
  text-underline-offset: 3px;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
a:hover { color: var(--brand-hover); text-decoration-color: currentColor; }

strong { font-weight: 600; color: #fff; }

/* Sichtbarer Fokus für Tastaturbedienung */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand); color: var(--c-text-dark); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 200;
  background: var(--brand);
  color: var(--c-text-dark);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top var(--t-base);
}
.skip-link:focus { top: var(--sp-4); color: var(--c-text-dark); }

/* ---------------------------------------------------------------
   4. LAYOUT-HELFER
   --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--c-bg-soft); }
.section--line { border-top: 1px solid var(--c-line); }

.section-head { max-width: 760px; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  color: var(--c-text-muted);
  font-size: var(--fs-lg);
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--c-line-strong);
  border-radius: 2px;
}
.section-head--center .eyebrow::before { display: none; }

.text-accent { color: var(--brand); }

.grid { display: grid; gap: var(--sp-5); }

/* Zweispaltiges Sektionslayout: links der Kopfbereich, rechts der Inhalt.
   Unter 900 px bleibt alles einspaltig untereinander, ohne sticky. */
.split {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--sp-7);
    align-items: start;
  }
  .split__head {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
    margin-bottom: 0;
  }
}
.lead { font-size: var(--fs-lg); color: var(--c-text-muted); }

/* Wiederverwendbare Karte */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--c-line-strong);
  box-shadow: var(--sh-md);
}
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--c-text-muted); font-size: var(--fs-sm); }

.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line);
  margin-bottom: var(--sp-4);
  color: var(--c-text-muted);
}
.card-icon svg { width: 22px; height: 22px; }

/* Wiederkehrender CTA-Block nach jeder Sektion */
.cta-row {
  margin-top: var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}
.cta-row--center { justify-content: center; text-align: center; }
.cta-note {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin: 0;
}

/* ---------------------------------------------------------------
   5. BUTTONS & CTAs
   --------------------------------------------------------------- */
.btn {
  --btn-py: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;              /* Touch-Ziel >= 44px */
  padding: var(--btn-py) 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-base),
              background var(--t-base), border-color var(--t-base), color var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* Primär – die einzige Stelle mit der Signalfarbe als Fläche */
.btn--primary {
  background: var(--brand);
  color: var(--c-text-dark);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: var(--brand-hover);
  color: var(--c-text-dark);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--c-line-strong);
  color: var(--c-text);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg { min-height: 56px; padding: 1.05rem 2rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------
   6. HEADER / NAVIGATION
   --------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 11, 0.95);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.header.is-scrolled {
  border-bottom-color: var(--c-line);
  background: var(--c-bg);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
  text-decoration: none;
  padding-block: var(--sp-2);
}
.logo:hover { color: #fff; }
.logo__mark {
  width: 30px; height: 30px;
  flex: none;
}

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: var(--sp-2) 0;
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav__link:hover, .nav__link.is-active { color: var(--c-text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { flex: none; }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-md);
  color: var(--c-text);
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: background var(--t-fast); }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--t-base), top var(--t-base);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--gutter) var(--sp-6);
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--c-line); }
  .nav__link { display: block; padding: var(--sp-4) 0; font-size: var(--fs-base); }
  .nav__link::after { display: none; }
  .nav__cta .btn { width: 100%; }
  /* Der Kontakt-Button bleibt auch bei geschlossenem Menü im Header sichtbar */
  .header__cta-mobile { display: inline-flex; }
}

.header__cta-mobile { display: none; }
@media (max-width: 960px) {
  /* Der Kontakt-Button bleibt auch auf schmalen Displays im Header sichtbar */
  .header__cta-mobile { display: inline-flex; }
}
@media (max-width: 420px) {
  .header__cta-mobile { padding-inline: 0.95rem; font-size: var(--fs-xs); }
  .logo { font-size: 1.05rem; gap: 0.45rem; }
  .logo__mark { width: 26px; height: 26px; }
  .nav-toggle { width: 44px; height: 44px; }
}

/* ---------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* Der einzige Verlauf ausserhalb des Logos: zwei fast identische Grautoene. */
  background: linear-gradient(180deg, #0d0d13 0%, var(--c-bg) 70%);
  /* Kompakter Hero: keine Mindesthoehe, dafür großzügige Innenabstände.
     So rutscht die Kennzahlenleiste auf 1280x800 noch knapp ins Bild. */
  padding-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Optionales Showreel-Video im Hintergrund (siehe README) */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.85);
}
.hero__video-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(7, 7, 11, 0.72);
  pointer-events: none;
}

.hero__inner { position: relative; max-width: 900px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line-strong);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}
.hero__badge b { color: var(--c-text); font-weight: 600; }
.hero__badge-more { color: var(--c-text-muted); }
@media (max-width: 479px) { .hero__badge-more { display: none; } }
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-text-muted);
  margin-left: 0.35rem;
}

.hero h1 { margin-bottom: var(--sp-5); }
.hero__sub {
  font-size: clamp(1.0625rem, 0.95rem + 0.6vw, 1.375rem);
  color: var(--c-text-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.hero__reassurance {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  align-items: center;
}
.hero__reassurance span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__reassurance svg { width: 16px; height: 16px; color: var(--brand); flex: none; }

/* Kennzahlen-Leiste unter dem Hero */
.hero__facts {
  margin-top: var(--sp-7);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--sp-4);
  border-top: 1px solid var(--c-line);
  padding-top: var(--sp-5);
  max-width: 760px;
}
.hero__fact b {
  display: block;
  font-size: 1.35rem;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.hero__fact span { font-size: var(--fs-sm); color: var(--c-text-muted); }

/* ---------------------------------------------------------------
   8. SEKTIONEN
   --------------------------------------------------------------- */

/* --- Warum ein Dreh so lange dauert --- */
.problem {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .problem { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: var(--sp-7); }
}
.problem__text { max-width: 62ch; }
.problem__text h2 { margin-bottom: var(--sp-5); }
.problem__text p { color: var(--c-text-muted); }

/* Schlichter Kasten fuer Rechenbeispiele: keine Farbflaeche, kein Verlauf */
.figure-box {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.figure-box h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.figure-box p {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* --- Leistungen: nummerierte Liste statt Kachelraster --- */
.service-list {
  list-style: none;
  counter-reset: service;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .service-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-7); }
}
.service-list li {
  counter-increment: service;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-line);
}
/* Die Nummer bleibt bewusst unaufgeregt, Magenta ist den Buttons vorbehalten. */
.service-list li::before {
  content: counter(service, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}
.service-list h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.service-list p { color: var(--c-text-muted); font-size: var(--fs-sm); margin: 0; }
.service-list li:last-child { border-bottom: 0; }
@media (min-width: 820px) {
  .service-list li:nth-last-child(-n+2) { border-bottom: 0; }
}

/* --- Portfolio --- */
.portfolio { grid-template-columns: 1fr; align-items: start; }
@media (min-width: 540px) { .portfolio { grid-template-columns: repeat(2, 1fr); } }
/* Ab hier: 3 Spalten – dadurch stehen die drei Hochformate in einer Reihe
   und die drei Querformate in der nächsten. */
@media (min-width: 880px) { .portfolio { grid-template-columns: repeat(3, 1fr); } }
.video-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.video-card:hover { transform: translateY(-2px); border-color: var(--c-line-strong); box-shadow: var(--sh-md); }
.video-card__frame {
  position: relative;
  width: 100%;
  background: var(--c-surface-2);
  aspect-ratio: 9 / 16;
  max-height: 540px;   /* verhindert überlange Karten auf breiten Bildschirmen */
  overflow: hidden;
}
.video-card--wide .video-card__frame { aspect-ratio: 16 / 9; }
.video-card__frame img,
.video-card__frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__play {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  place-items: center;
  gap: var(--sp-3);
  background: rgba(7, 7, 11, 0.45);
  border: 0;
  color: var(--c-text);
  cursor: pointer;
  font: inherit;
  transition: background var(--t-base);
}
.video-card__play:hover { background: rgba(7, 7, 11, 0.28); }
.video-card__play-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  color: var(--c-text-dark);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base);
}
.video-card__play:hover .video-card__play-icon { transform: scale(1.08); }
.video-card__play-icon svg { width: 24px; height: 24px; margin-left: 3px; }
.video-card__format {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(7, 7, 11, 0.85);
  border: 1px solid var(--c-line-strong);
  color: var(--c-text);
}
.video-card figcaption {
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.video-card figcaption b { display: block; color: var(--c-text); font-weight: 600; margin-bottom: 2px; }
.video-card__hint {
  position: absolute;
  inset: auto var(--sp-3) var(--sp-3);
  background: rgba(7, 7, 11, 0.94);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-sm);
  padding: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* --- Ablauf: Zeitleiste mit durchgehender Linie --- */
.timeline {
  list-style: none;
  counter-reset: tl;
  margin: 0;
  padding: 0 0 0 calc(44px + var(--sp-5));
  position: relative;
  max-width: 760px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--c-line-strong);
}
.timeline__item {
  counter-increment: tl;
  position: relative;
  padding-bottom: var(--sp-6);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: counter(tl);
  position: absolute;
  left: calc(0px - 44px - var(--sp-5));
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-line-strong);
  color: var(--c-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}
.timeline h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); padding-top: 0.5rem; }
.timeline p { color: var(--c-text-muted); font-size: var(--fs-sm); }
.timeline__meta {
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Ehrlich gesagt: zwei schlichte Spalten, keine Karten --- */
.honest {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .honest { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .honest__col + .honest__col {
    border-left: 1px solid var(--c-line);
    padding-left: var(--sp-7);
  }
}
.honest__col h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-4); }
.honest__list { list-style: none; margin: 0; padding: 0; }
.honest__list li {
  position: relative;
  padding: var(--sp-3) 0 var(--sp-3) 1.6rem;
  border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.honest__list li:last-child { border-bottom: 0; }
/* Haken und Striche bleiben matt: hier steht keine Handlungsaufforderung. */
.honest__list li::before {
  position: absolute;
  left: 0;
  top: var(--sp-3);
  color: var(--c-text-muted);
}
.honest__list--yes li::before { content: "\2713"; }
.honest__list--no li::before { content: "\2212"; }
.honest__close {
  margin-top: var(--sp-6);
  max-width: 68ch;
  color: var(--c-text-muted);
}

/* Bildplatzhalter, solange kein echtes Foto vorliegt */
.placeholder-figure { margin: var(--sp-7) 0 0; max-width: 760px; }
.placeholder-figure__frame {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 1px dashed var(--c-line-strong);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.placeholder-figure figcaption {
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

/* --- Warum ich: kurze Absaetze statt Kacheln --- */
.reasons {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .reasons { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }
.reason h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.reason p { color: var(--c-text-muted); font-size: var(--fs-sm); margin: 0; }

/* Persönlicher Block Tim */
.person {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  grid-template-columns: 1fr;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: var(--sp-7);
}
@media (min-width: 720px) { .person { grid-template-columns: 140px 1fr; } }
.person__photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-strong);
}
.person blockquote {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.55;
}
.person cite {
  display: block;
  margin-top: var(--sp-3);
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

/* Platzhalter-Markierung für fehlende Inhalte */
.placeholder-note {
  border: 1px dashed var(--c-line-strong);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.placeholder-note b { color: var(--c-text); }

/* --- Pakete --- */
.pricing { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.plan:hover { transform: translateY(-2px); border-color: var(--c-line-strong); box-shadow: var(--sh-md); }
.plan--featured {
  background: var(--c-surface-2);
  border: 1px solid var(--brand);
  box-shadow: var(--sh-md);
}
.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--c-text-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.plan__for { color: var(--c-text-muted); font-size: var(--fs-sm); min-height: 3em; }
.plan__price {
  margin: var(--sp-4) 0 var(--sp-5);
  padding-block: var(--sp-4);
  border-block: 1px solid var(--c-line);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.plan__price small {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0;
  margin-top: var(--sp-2);
}
.plan__features { list-style: none; margin: 0 0 var(--sp-5); padding: 0; flex: 1; }
.plan__features li {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.plan__features svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 3px; }
.pricing-note { margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--c-text-muted); }

/* --- FAQ --- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__item:first-child { border-top: 1px solid var(--c-line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  min-height: 56px;
  background: none;
  border: 0;
  color: var(--c-text);
  font: inherit;
  font-size: var(--fs-lg);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--brand); }
.faq__icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  display: grid; place-items: center;
  position: relative;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px; height: 12px; }
.faq__q[aria-expanded="true"] .faq__icon { background: rgba(255, 255, 255, 0.06); border-color: var(--c-line-strong); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height var(--t-base);
}
.faq__a-inner {
  padding: 0 0 var(--sp-5);
  max-width: 68ch;
  color: var(--c-text-muted);
  font-size: var(--fs-base);
}

/* ---------------------------------------------------------------
   9. KONTAKT & FORMULAR
   --------------------------------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line);
}
.contact__grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-8); align-items: start; }
}

.contact__intro p { color: var(--c-text-muted); }
.contact__list { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: grid; gap: var(--sp-3); }
.contact__list > li > a,
.contact__list > li > span {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: 56px;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}
.contact__list > li > a:hover {
  border-color: var(--c-line-strong);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
  color: #fff;
}
.contact__list svg { width: 20px; height: 20px; color: var(--c-text-muted); flex: none; }
.contact__list > li > a > span,
.contact__list > li > span > span { display: flex; flex-direction: column; min-width: 0; }
.contact__list small { font-size: var(--fs-xs); color: var(--c-text-muted); font-weight: 400; }
.contact__list span { word-break: break-word; }

.form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--sh-lg);
}
.form-wrap h3 { margin-bottom: var(--sp-2); }
.form-wrap__sub { color: var(--c-text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }

.field { margin-bottom: var(--sp-4); }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}
.field label .opt { color: var(--c-text-muted); font-weight: 400; }
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-md);
  color: var(--c-text);
  font: inherit;
  font-size: var(--fs-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #767a8a; }
.field input:hover, .field textarea:hover { border-color: rgba(255, 255, 255, 0.28); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 46, 136, 0.22);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--c-error); }
.field-error {
  display: none;
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-error);
}
.field.has-error .field-error { display: block; }

.field-row { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin: var(--sp-5) 0 var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  cursor: pointer;
  min-height: 44px;
}
.checkbox input {
  width: 22px; height: 22px;
  min-height: 0;
  flex: none;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
}
.checkbox.has-error { color: var(--c-error); }

/* Honeypot gegen Spam – für Menschen unsichtbar */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status {
  display: none;
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  border: 1px solid transparent;
}
.form-status.is-visible { display: block; }
.form-status--success {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
  color: #c9ffdd;
}
.form-status--success b { color: #eaffef; display: block; margin-bottom: 4px; font-size: var(--fs-base); }
.form-status--error {
  background: rgba(255, 138, 138, 0.1);
  border-color: rgba(255, 138, 138, 0.4);
  color: #ffdede;
}
.form-reassurance {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-align: center;
}
.btn.is-loading { pointer-events: none; opacity: 0.75; }

/* ---------------------------------------------------------------
   10. FOOTER & MOBILE KONTAKTLEISTE
   --------------------------------------------------------------- */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  padding-block: var(--sp-7) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.footer__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 {
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.footer a { color: var(--c-text-muted); text-decoration: none; }
.footer a:hover { color: var(--c-text); text-decoration: underline; }
.footer__brand p { margin-top: var(--sp-4); max-width: 38ch; }
.footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  font-size: var(--fs-xs);
}
.footer__social { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding-inline: 0.2rem;
}

/* Mobile Kontaktleiste */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  display: none;
  gap: var(--sp-2);
  padding: 0.5rem var(--sp-3) calc(0.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
@media (max-width: 767px) { .mobile-bar { display: flex; } }
.mobile-bar .btn {
  flex: 1;
  min-height: 52px;
  padding-inline: 0.5rem;
  font-size: var(--fs-sm);
  border-radius: var(--r-md);
}

/* ---------------------------------------------------------------
   11. ANIMATIONEN
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Bewegung reduzieren, wenn das System es verlangt */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------
   12. RECHTSTEXTE (Impressum / Datenschutz)
   --------------------------------------------------------------- */
.legal { padding-block: var(--sp-8) var(--section-y); }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: var(--sp-5); }
.legal h2 { font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); margin-top: var(--sp-7); }
.legal h3 { font-size: var(--fs-lg); margin-top: var(--sp-5); }
.legal p, .legal li { color: var(--c-text-muted); }
.legal li { margin-bottom: var(--sp-2); }
.legal address { font-style: normal; color: var(--c-text-muted); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.legal__back svg { width: 16px; height: 16px; }
.legal__updated { font-size: var(--fs-xs); margin-top: var(--sp-7); }
mark.ph {
  background: rgba(255, 46, 136, 0.14);
  color: var(--brand);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-weight: 600;
}
