/* ============================================================
   ceditvisual — Design System
   Offizielles System laut Brand Guideline:
   Kino-Schwarz #0A0B0D · Electric Lime #C6FF3A (nur als Peak)
   Fonts: Space Grotesk (Headlines) · Inter (Body) · JetBrains Mono (Labels)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Variable.woff2") format("woff2"),
       url("../fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2"),
       url("../fonts/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Variable.woff2") format("woff2"),
       url("../fonts/JetBrainsMono-Variable.ttf") format("truetype");
  font-weight: 100 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0B0D;
  --surface: #131519;
  --elevated: #1C1F26;
  --border: #2A2E37;
  --muted: #565D6B;

  --text: #F2F3F5;
  --text-2: #A0A6B0;
  /* Brand-Wert #6B7280 leicht aufgehellt: erfüllt so WCAG AA (4,5:1) auch auf Flächen */
  --text-3: #7E8694;

  --lime: #C6FF3A;
  --lime-strong: #B4F01F;
  --lime-soft: rgba(198, 255, 58, 0.12);
  --on-lime: #0A0B0D;

  --font-head: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --radius-xs: 12px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  --container: 1140px;
  --gutter: 24px;

  --section-y: clamp(88px, 12vw, 150px);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

::selection { background: var(--lime); color: var(--on-lime); }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.accent { color: var(--lime); }

/* Akzentwort mit Wellenform-Unterstreichung (Brand-Signatur) */
.wave-accent {
  position: relative;
  white-space: nowrap;
}
.wave-accent .wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 0.28em;
  width: 100%;
  color: var(--lime);
  overflow: visible;
}
.wave-accent .wave path {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* Section-Chip (Pill-Label über Headlines) */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}

/* Section-Header zentriert */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 46px);
}
.section-head .sub {
  color: var(--text-2);
  font-size: 17px;
  max-width: 520px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-xs);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--lime);
  color: var(--on-lime);
}
.btn-primary:hover { background: var(--lime-strong); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--muted); background: var(--surface); }

.btn-dark {
  background: var(--elevated);
  color: var(--text);
  border-color: var(--border);
}
.btn-dark:hover { background: var(--border); }

/* Reveal-Animationen: nur mit aktivem JS verstecken, sonst bleibt alles sichtbar */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.visible {
  opacity: 1;
  transform: none;
}
@media print {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
}

/* Tastatur-Fokus */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible,
.filter-btn.active:focus-visible {
  outline-color: var(--text);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001s !important; }
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  flex: none;
}
.wordmark em {
  font-style: normal;
  color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  font-size: 15.5px;
  color: var(--text-2);
  transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover { color: var(--text); }

.nav .btn { padding: 11px 20px; font-size: 15px; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 5px; }

/* Announcement-Bar */
.announce {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 11px 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--text-2);
}
.announce strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(90px, 13vw, 170px) clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle at center, rgba(198, 255, 58, 0.09), transparent 62%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 780px;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(38px, 7.4vw, 82px);
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .lead {
  color: var(--text-2);
  font-size: clamp(17px, 2vw, 19px);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Laufende Wellenform unten im Hero */
.hero-wave {
  position: relative;
  margin-top: clamp(64px, 8vw, 100px);
  height: 56px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.9;
}
.hero-wave span {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: var(--elevated);
  height: 18%;
  animation: waveline 1.9s ease-in-out infinite;
}
.hero-wave span:nth-child(4n)   { animation-delay: -0.2s; }
.hero-wave span:nth-child(4n+1) { animation-delay: -0.6s; }
.hero-wave span:nth-child(4n+2) { animation-delay: -1.0s; }
.hero-wave span:nth-child(4n+3) { animation-delay: -1.4s; }
.hero-wave span.peak { background: var(--lime); }
@keyframes waveline {
  0%, 100% { height: 16%; }
  50% { height: 92%; }
}

/* ============================================================
   Manifest (großer, gedämpfter Textblock)
   ============================================================ */
.manifesto .eyebrow {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 500;
}
.manifesto .big {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--text-3);
  font-weight: 450;
  max-width: 1000px;
}
.manifesto .big strong {
  color: var(--text);
  font-weight: 500;
}
.manifesto .big .accent { color: var(--lime); }

/* ============================================================
   Herausforderungen (Foto + Karten-Stack)
   ============================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 28px;
  align-items: start;
}
.problem-photo {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(198, 255, 58, 0.08), transparent 55%),
    linear-gradient(160deg, var(--elevated), var(--surface) 65%);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
}
.problem-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-note {
  width: 100%;
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3.4vw, 36px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--muted); }
.card .chip { margin-bottom: 20px; }
.card h3 {
  font-size: clamp(21px, 2.6vw, 26px);
  margin-bottom: 12px;
}
.card p { color: var(--text-2); font-size: 16px; }

/* ============================================================
   Leistungen (3 Karten im Soft-Container)
   ============================================================ */
.services-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.6vw, 44px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.service .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xs);
  background: var(--elevated);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 8px;
}
.service h3 { font-size: 22px; }
.service p { color: var(--text-2); font-size: 15.5px; }
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-lime);
  background: var(--lime);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.service ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-2);
  font-size: 15px;
}
.service li svg { flex: none; margin-top: 4px; color: var(--lime); }
.services-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(36px, 5vw, 56px);
}

/* ============================================================
   Arbeitsproben
   ============================================================ */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--muted); }
.filter-btn.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--on-lime);
  font-weight: 600;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.work-tile {
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background:
    radial-gradient(100% 80% at 80% 0%, rgba(198, 255, 58, 0.05), transparent 60%),
    var(--surface);
  aspect-ratio: 16 / 10;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease;
}
.work-tile:hover { border-color: var(--muted); }
/* Option für spätere Portfolio-Tiles im Hochformat (9:16-Einbettungen) */
.work-tile.tall { aspect-ratio: auto; grid-row: span 2; }
.work-tile .cat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.work-tile h3 { font-size: 19px; }
.work-tile .status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.work-tile .status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.work-note {
  text-align: center;
  color: var(--text-3);
  font-size: 15px;
  margin-top: 32px;
}

/* ============================================================
   Sounddesign (Feature-Streifen)
   ============================================================ */
.sound {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.sound-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.sound h2 { font-size: clamp(30px, 4.6vw, 46px); margin: 20px 0 18px; }
.sound .copy p { color: var(--text-2); margin-bottom: 16px; }
.sound .copy p strong { color: var(--text); }
.sound-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 36px);
}
.sound-visual .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.wave-render {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 90px;
  margin-bottom: 26px;
}
.wave-render span {
  flex: 1;
  border-radius: 2px;
  background: var(--elevated);
  height: 12%;
}
.wave-render.after span { background: var(--muted); }
.wave-render span.peak { background: var(--lime); }
.wave-render.after { margin-bottom: 0; }

/* ============================================================
   Vergleich (Ohne / Mit)
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 960px;
  margin-inline: auto;
}
.compare-card {
  border-radius: var(--radius-l);
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare-card.negative { border-color: rgba(255, 96, 96, 0.25); }
.compare-card.positive { border-color: rgba(198, 255, 58, 0.35); }
.compare-card h3 {
  font-size: 23px;
  text-align: center;
  margin-bottom: 26px;
}
.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-size: 15.5px;
  color: var(--text-2);
}
.compare-card.negative li { color: var(--text-3); }
.compare-card li svg { flex: none; margin-top: 3px; }
.compare-card.negative li svg { color: #FF6B6B; }
.compare-card.positive li svg { color: var(--lime); }

/* ============================================================
   Ablauf (Phasen-Timeline, erhöhte Sektion)
   ============================================================ */
.process {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(198, 255, 58, 0.05), transparent 60%),
    var(--surface);
  border-block: 1px solid var(--border);
}
.timeline {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding-left: 4px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--lime), var(--border) 55%);
  opacity: 0.6;
}
.phase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(36px, 5vw, 64px) 0 clamp(36px, 5vw, 64px) clamp(36px, 5vw, 56px);
}
.phase::before {
  content: "";
  position: absolute;
  left: 4px;
  top: clamp(44px, 5.6vw, 72px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px var(--lime-soft);
}
.phase .chip { margin-bottom: 18px; }
.phase h3 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 14px; }
.phase p { color: var(--text-2); max-width: 480px; }
.phase-visual {
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background: linear-gradient(150deg, var(--elevated), var(--bg));
  min-height: 190px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

/* ============================================================
   Über mich
   ============================================================ */
.about-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 15% 0%, rgba(198, 255, 58, 0.07), transparent 55%),
    linear-gradient(165deg, var(--elevated), var(--surface) 60%);
  padding: clamp(32px, 5vw, 64px);
}
.about-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.about-head .chip { margin-bottom: 22px; }
.about-head h2 {
  font-size: clamp(30px, 4.6vw, 46px);
}
.about-head h2 .name {
  display: block;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.about-head .name-wave {
  display: block;
  width: 150px;
  height: 14px;
  margin: 14px auto 0;
  color: var(--lime);
}
.about-head .name-wave path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 28px;
  align-items: stretch;
}
.about-photo {
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  background:
    radial-gradient(100% 80% at 50% 20%, rgba(198, 255, 58, 0.06), transparent 60%),
    var(--bg);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(26px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-card .qmark {
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 0.6;
  font-weight: 700;
}
.quote-card blockquote {
  margin: 0;
  font-size: 17px;
  color: var(--text-2);
}
.quote-card .who strong {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
}
.quote-card .who span { color: var(--text-3); font-size: 15px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-top: auto;
}
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--lime);
}
.stat .lbl {
  font-size: 13.5px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ============================================================
   Nächste Schritte (3 Steps)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
  max-width: 1020px;
  margin-inline: auto;
}
.step .icon {
  width: 72px;
  height: 72px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 22px;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 15.5px; }
.steps-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 64px);
}

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final .inner {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(198, 255, 58, 0.12), transparent 55%),
    linear-gradient(160deg, var(--elevated), var(--surface) 70%);
  padding: clamp(40px, 6.5vw, 88px);
}
.cta-final h2 {
  font-size: clamp(32px, 5vw, 54px);
  max-width: 700px;
  margin-bottom: 22px;
}
.cta-final p {
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 36px;
  font-size: 17.5px;
}
.cta-final .row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(48px, 6vw, 72px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-3);
  font-size: 15px;
  max-width: 300px;
  margin-top: 14px;
}
.footer-col .col-title {
  margin: 0;
}
.footer-col h4,
.footer-col .col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  color: var(--text-2);
  font-size: 15px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-3);
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--text); }

/* ============================================================
   Unterseiten: Leistungs-Landingpages
   ============================================================ */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding-top: 26px;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { margin: 0 8px; color: var(--muted); }

.page-hero {
  padding-block: clamp(48px, 7vw, 90px) clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-glow { top: -40%; right: -25%; }
.page-hero h1 {
  font-size: clamp(34px, 5.6vw, 58px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 800px;
  margin-bottom: 24px;
}
.page-hero .lead {
  color: var(--text-2);
  font-size: clamp(17px, 2vw, 18.5px);
  max-width: 640px;
  margin-bottom: 34px;
}
.page-hero .lead strong { color: var(--text); }

/* Fließtext-Sektionen */
.prose { max-width: 720px; }
.prose h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 16px;
}
.prose p { color: var(--text-2); margin-bottom: 16px; }
.prose p strong { color: var(--text); }
.prose ul { color: var(--text-2); padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 17.5px;
  font-weight: 500;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--lime);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 20px; color: var(--text-2); font-size: 15.5px; }
.faq-item .answer p { margin: 0 0 10px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* Preis-Karten */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-card.featured { border-color: rgba(198, 255, 58, 0.4); }
.price-card h3 { font-size: 20px; }
.price-card .price {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  color: var(--lime);
}
.price-card .price span {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 400;
  font-family: var(--font-body);
}
.price-card p { color: var(--text-2); font-size: 15px; }
.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card li {
  display: flex;
  gap: 10px;
  color: var(--text-2);
  font-size: 14.5px;
}
.price-card li::before { content: "→"; color: var(--lime); flex: none; }
.price-note {
  text-align: center;
  color: var(--text-3);
  font-size: 14px;
  margin-top: 24px;
  max-width: 640px;
  margin-inline: auto;
}

/* Antwortblock oben auf Leistungsseiten (für KI-Extraktion) */
.answer-block {
  border-left: 3px solid var(--lime);
  background: var(--surface);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 20px 26px;
  max-width: 720px;
  margin-bottom: 8px;
}
.answer-block p { color: var(--text-2); margin: 0; font-size: 16px; }
.answer-block p strong { color: var(--text); }

/* Portfolio-Grid (9:16) */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.reel-card {
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.reel-card .frame {
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(90% 60% at 50% 20%, rgba(198, 255, 58, 0.06), transparent 60%),
    linear-gradient(160deg, var(--elevated), var(--bg) 70%);
  display: grid;
  place-items: center;
  position: relative;
}
.reel-card .frame video { width: 100%; height: 100%; object-fit: cover; }
.reel-card .frame .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reel-card .frame .placeholder svg { color: var(--muted); }
.reel-card .info { padding: 16px 18px; }
.reel-card .info .cat {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lime);
}
.reel-card .info h3 { font-size: 16.5px; margin-top: 6px; }
.reel-card .info p { color: var(--text-3); font-size: 13.5px; margin-top: 6px; }

/* CTA-Band auf Unterseiten */
.cta-band {
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 130% at 85% 0%, rgba(198, 255, 58, 0.1), transparent 55%),
    var(--surface);
  padding: clamp(30px, 4.5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(23px, 3vw, 30px); max-width: 460px; }
.cta-band p { color: var(--text-2); margin-top: 8px; max-width: 460px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Kontakt-Seite */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--lime);
}
.contact-card h2 { font-size: 19px; }
.contact-card p { color: var(--text-2); font-size: 14.5px; }
.contact-card .btn { margin-top: auto; }

@media (max-width: 860px) {
  .price-grid, .reel-grid, .contact-grid { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .reel-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Unterseiten (Impressum / Datenschutz)
   ============================================================ */
.legal-page {
  max-width: 660px;
  margin-inline: auto;
  padding-block: clamp(70px, 9vw, 120px);
}
.legal-page h1 { font-size: clamp(32px, 5vw, 44px); margin-bottom: 16px; }
.legal-page h2 { font-size: 22px; margin: 40px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-2); }
.legal-page .todo {
  background: var(--lime-soft);
  border: 1px solid rgba(198, 255, 58, 0.3);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  color: var(--text);
  font-size: 15px;
  margin: 22px 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .problems-grid,
  .sound-grid,
  .about-grid { grid-template-columns: 1fr; }
  .problem-photo { position: static; aspect-ratio: 16 / 10; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phase { grid-template-columns: 1fr; }
  .phase-visual { min-height: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    display: none;
  }
  /* Ohne JS bleibt die Navigation als einfache Liste sichtbar */
  html:not(.js) .nav-links {
    display: flex;
    position: static;
    border-bottom: none;
    padding: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; }
  html.js .nav-toggle { display: block; }
  .nav > .btn-primary { display: none; }
  .nav-cta-mobile { display: block; }
  .nav-cta-mobile .btn { width: 100%; }

  .compare-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  .work-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
