:root {
  --ink: #101014;
  --paper: #f4f4f0;
  --primary: #17171c;
  --accent: #a3e635;
  --muted: rgba(16,16,20,0.62);
  --line: rgba(16,16,20,0.12);
  --shadow: 0 20px 50px rgba(16,16,20,0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p { margin: 0 0 0.6em; }
h1 { font-size: clamp(34px, 7vw, 88px); line-height: 0.95; letter-spacing: -0.01em; }
/* Lange deutsche Komposita sauber per Silbentrennung umbrechen statt hart mitten im Wort. */
h1, h2, h3 { -webkit-hyphens: auto; hyphens: auto; }
h2 { font-size: clamp(30px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.01em; }
h3 { font-size: 20px; line-height: 1.2; }
.eyebrow { color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.topbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px;
  width: min(1080px, calc(100% - 28px));
  padding: 10px 14px;
  background: rgba(248,248,244,0.88); border: 1px solid var(--line);
  border-radius: 999px; backdrop-filter: blur(16px);
  z-index: 50;
}
.topbar.is-scrolled { box-shadow: var(--shadow); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; flex: 1; white-space: nowrap; }
.brand-symbol {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%; font-weight: 900;
}
.topbar nav { display: flex; gap: 4px; }
.topbar nav a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: rgba(16,16,20,0.78);
  white-space: nowrap;
}
.topbar nav a:hover { background: var(--accent); color: var(--ink); }
.top-cta {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px; font-weight: 700;
  white-space: nowrap;
}
/* Burger — nur mobil sichtbar (siehe Media-Query), öffnet die Navigation. */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  border: 0; background: transparent; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 0 auto;
  background: var(--ink); border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.topbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.topbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  perspective: 1500px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; top: 0; left: 0; right: 0; height: 134%; z-index: -2; will-change: transform; }
.hero-video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  /* Tiefe, dunkle 3D-Bühne — das Video bleibt nur als Textur, die Ebenen treten hervor */
  background:
    linear-gradient(118deg,
      rgba(11,11,15,0.93) 0%,
      rgba(11,11,15,0.74) 50%,
      rgba(11,11,15,0.9) 100%),
    radial-gradient(130% 96% at 80% 62%, rgba(11,11,15,0) 0%, rgba(11,11,15,0.66) 100%);
  z-index: 1;
}
.hero-content { max-width: 780px; padding-top: 18vh; }
.hero-content .eyebrow { color: var(--accent); }
/* Belt-and-braces: text-shadow as fallback in case the gradient still loses out
   to an unusually bright spot in the hero image */
.hero-content h1,
.hero-content .hero-text,
.hero-content .eyebrow {
  text-shadow: 0 2px 12px rgba(16,16,20,0.55), 0 1px 3px rgba(16,16,20,0.35);
}
.hero-text { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; max-width: 620px; color: rgba(248,248,244,0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer; border: 2px solid currentColor;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.button-ghost { color: var(--paper); background: rgba(248,248,244,0.08); border-color: rgba(248,248,244,0.4); }
.usps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--paper);
}
.usp {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(16,16,20,0.05);
}
.usp-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  background: var(--accent); color: var(--ink);
  border-radius: 14px;
  font-weight: 900; font-size: 22px;
  margin-bottom: 16px;
}
.usp p, .service p, .about-body, .contact-text { color: var(--muted); line-height: 1.6; }
.services {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--ink); color: var(--paper);
}
.services .eyebrow { color: var(--accent); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.service-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr; /* alle Leistungs-Boxen gleich hoch */
}
.service {
  padding: 32px;
  background: rgba(248,248,244,0.06);
  border: 1px solid rgba(248,248,244,0.14);
  border-radius: 24px;
}
.service-num { color: var(--accent); font-weight: 900; font-size: 14px; letter-spacing: 0.1em; }
.service p { color: rgba(248,248,244,0.74); }
.gallery {
  padding: clamp(48px, 6vw, 90px) clamp(20px, 5vw, 80px);
  background: var(--paper);
}
.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-item { margin: 0; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.about {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--accent); color: var(--ink);
}
.about-inner { max-width: 760px; }
.about .eyebrow { color: var(--ink); opacity: 0.7; }
.contact {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--ink); color: var(--paper);
}
.contact .eyebrow { color: var(--accent); }
.contact-inner { max-width: none; }
/* Kontakt: links Telefon/Mail/Adresse, rechts das Formular — gleich hoch. */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  margin-top: 34px; align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 20px); }
.contact-form-col .inquiry-form { margin-top: 0; max-width: none; }
.contact-card {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(248,248,244,0.06);
  border: 1px solid rgba(248,248,244,0.18);
  border-radius: 22px;
  transition: border-color 180ms;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card span { font-size: 13px; color: rgba(248,248,244,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card strong { font-size: clamp(16px, 1.05vw, 22px); line-height: 1.3; overflow-wrap: anywhere; }
/* === Zertifikate === */
.certificates {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cert-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cert {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.cert-icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--accent); color: var(--ink);
  border-radius: 10px;
  font-weight: 900;
}
.cert-name { margin: 0; font-weight: 700; font-size: 15px; }
.cert-sub { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

/* === Referenzen === */
.references {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--ink); color: var(--paper);
}
.references .eyebrow { color: var(--accent); }
.reference-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.reference {
  margin: 0;
  padding: 28px;
  background: rgba(248,248,244,0.06);
  border: 1px solid rgba(248,248,244,0.14);
  border-radius: 22px;
}
.reference-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.reference-stars-empty { opacity: 0.18; }
.reference blockquote {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(248,248,244,0.94);
  font-style: italic;
}
.reference figcaption strong { display: block; font-weight: 700; }
.reference figcaption span { color: rgba(248,248,244,0.6); font-size: 13px; }

/* === Footer === */
.site-footer {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 80px);
  background: #000; color: rgba(248,248,244,0.6);
}
.footer-inner {
  display: grid; gap: 26px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); font-weight: 800; }
.footer-brand .brand-symbol {
  width: 32px; height: 32px;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  border-radius: 50%; font-weight: 900;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; font-size: 14px; }
.footer-nav a { color: rgba(248,248,244,0.7); transition: color 180ms; }
.footer-nav a:hover { color: var(--accent); }
.footer-meta { text-align: right; font-size: 13px; }
.footer-meta p { margin: 0; }
.footer-demo { color: var(--accent); margin-top: 4px !important; }
/* === Scroll reveals (directional + staggered) === */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="up"] { transform: translateY(46px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal].is-visible { opacity: 1; transform: translate(0,0) scale(1); }

/* === Feature-Story (Scrollytelling) === */
.feature-story {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.feature-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.feature-intro { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; }
.feature-scroller {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.feature-stage {
  position: sticky;
  top: 96px;
  height: min(74vh, 620px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.feature-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .9s ease, transform 1.4s ease;
}
.feature-visual.is-active { opacity: 1; transform: scale(1); }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-progress {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.feature-progress span {
  width: 26px; height: 4px;
  border-radius: 999px;
  background: rgba(248,248,244,0.3);
  transition: background .4s ease, width .4s ease;
}
.feature-progress span.is-active { background: var(--accent); width: 40px; }
.feature-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 14vh, 160px);
  padding: 12vh 0;
}
.feature-step {
  opacity: 0.32;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.feature-step.is-active { opacity: 1; transform: translateY(0); }
.feature-step-num {
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.feature-step h3 { font-size: clamp(22px, 2.6vw, 32px); }
.feature-step p { color: var(--muted); line-height: 1.65; font-size: 17px; }
.feature-step-img { display: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .feature-visual { transition: opacity .3s ease; transform: none; }
}

/* === Legal pages (Impressum / Datenschutz / Cookies) === */
.legal-page { background: var(--paper); }
.legal-page main {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) 0 clamp(48px, 6vw, 80px);
}
.legal-page h1 { color: var(--ink); font-size: clamp(36px, 6vw, 64px); }
.legal-page h2 { margin-top: 38px; font-size: 22px; }
.legal-page p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.legal-back { display: inline-flex; margin-bottom: 28px; color: var(--ink); font-weight: 700; font-size: 14px; }
.legal-back:hover { color: var(--primary); }
.legal-disclaimer { margin-top: 48px; padding: 16px 20px; border-left: 3px solid var(--accent); background: rgba(0,0,0,0.04); font-size: 14px; }
@media (max-width: 980px) {
  /* Mobil: Firmenname bleibt sichtbar, Navigation klappt per Burger als Panel auf. */
  .nav-toggle { display: flex; }
  .top-cta { display: none; }
  .brand { min-width: 0; }
  .brand-symbol { flex-shrink: 0; }
  .brand > span:not(.brand-symbol) {
    min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .topbar nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    display: flex; flex-direction: column; gap: 2px;
    margin: 0; padding: 10px;
    background: rgba(248,248,244,0.97);
    border: 1px solid var(--line); border-radius: 22px;
    backdrop-filter: blur(16px); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .topbar.nav-open nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .topbar nav a { font-size: 15px; padding: 12px 16px; }
  .usps, .service-grid, .gallery-grid, .contact-layout, .reference-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .hero-media { height: 100%; }
  .feature-scroller { display: block; }
  .feature-stage { display: none; }
  .feature-steps { padding: 0; gap: 56px; }
  .feature-step { opacity: 1; transform: none; }
  .feature-step-img {
    display: block;
    margin: 18px 0 0;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 36px rgba(16,16,20,0.12);
  }
  .feature-step-img img { width: 100%; height: 100%; object-fit: cover; }
  .hero-content { padding-top: 12vh; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .footer-brand, .footer-nav { justify-content: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  /* Mobile: Topbar wirklich kompakt — Brand-Wordmark kann den Pill sprengen. */
  .topbar { top: 10px; padding: 8px 10px; gap: 10px; width: calc(100% - 16px); }
  .brand-symbol { width: 32px; height: 32px; font-size: 14px; }
  .brand > span:not(.brand-symbol) { font-size: 14px; }
  /* FAB kleiner, weiter unten, weniger aufdringlich. */
  .fab { right: 12px; bottom: 12px; gap: 8px; }
  .fab-btn { width: 44px; height: 44px; }
  .fab-btn svg { width: 20px; height: 20px; }
  /* Mehr Atemraum im Hero-Text auf schmalen Devices. */
  .hero-deck { padding: 96px 18px 40px; }
  .hero-content { padding-top: 4vh; }
  h1 { font-size: clamp(34px, 11vw, 56px); }
}
/* === Layout-Varianten (per Showcase deterministisch gesetzt) === */

/* Hero: zentriert — symmetrischer Overlay statt Seitenverlauf */
.v-hero-centered .hero-content {
  max-width: 720px; margin: 0 auto; text-align: center; padding-top: 15vh;
}
.v-hero-centered .hero-text { margin-left: auto; margin-right: auto; }
.v-hero-centered .hero-actions { justify-content: center; }
.v-hero-centered .hero-overlay {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(16,16,20,0.30) 0%, rgba(16,16,20,0.70) 75%),
    linear-gradient(180deg, rgba(16,16,20,0.45) 0%, transparent 35%, rgba(16,16,20,0.55) 100%);
}

/* Hero: editorial — XL-Headline, tiefer gesetzt */
.v-hero-editorial .hero-content { padding-top: 28vh; max-width: 940px; }
.v-hero-editorial .hero-content h1 { font-size: clamp(46px, 9vw, 112px); }
.v-hero-editorial .hero-content .eyebrow { letter-spacing: 0.16em; }

/* USPs als Zeilen statt Kacheln */
.v-usp-rows .usps { grid-template-columns: 1fr; gap: 0; max-width: 980px; margin-inline: auto; }
.v-usp-rows .usp {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 26px 6px; background: transparent; border: 0;
  border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none;
}
.v-usp-rows .usp:last-child { border-bottom: 0; }
.v-usp-rows .usp-icon { flex-shrink: 0; margin-bottom: 0; }
.v-usp-rows .usp h3 { margin-bottom: 0.2em; }

/* Form: kantig statt weich */
.v-sharp .usp,
.v-sharp .service,
.v-sharp .gallery-item,
.v-sharp .cert,
.v-sharp .reference,
.v-sharp .contact-card,
.v-sharp .feature-stage,
.v-sharp .feature-step-img { border-radius: 4px; }
.v-sharp .usp-icon,
.v-sharp .cert-icon { border-radius: 4px; }

/* === Recruiting === */
.recruiting {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--ink); color: var(--paper);
}
.recruiting .eyebrow { color: var(--accent); }
.recruiting-inner { max-width: 720px; }
.recruiting-body { color: rgba(248,248,244,0.78); line-height: 1.6; font-size: 17px; }
.recruiting-perks {
  list-style: none; margin: 22px 0 28px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.recruiting-perks li {
  padding: 8px 14px;
  background: rgba(248,248,244,0.08);
  border: 1px solid rgba(248,248,244,0.16);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
}
.recruiting-perks li::before { content: "✓ "; color: var(--accent); font-weight: 900; }

/* === Anfrage-Formular === */
.inquiry-form {
  margin-top: 28px;
  display: grid; gap: 12px;
  max-width: 560px;
}
.inquiry-form label {
  display: grid; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: rgba(248,248,244,0.7);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(248,248,244,0.06);
  border: 1px solid rgba(248,248,244,0.18);
  border-radius: 12px;
  color: var(--paper);
  font: inherit; font-size: 15px;
  text-transform: none; letter-spacing: normal;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus { outline: none; border-color: var(--accent); }
.inquiry-form textarea { resize: vertical; }
.inquiry-form .form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.inquiry-form button { margin-top: 4px; }
.inquiry-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin: 4px 0 0; font-size: 14px; min-height: 1.2em; }
.form-status.is-ok { color: var(--accent); }
.form-status.is-err { color: #ff6b6b; }

/* === Floating WhatsApp / Anruf === */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; gap: 10px;
}
.fab-btn {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 28px rgba(16,16,20,0.32);
  transition: transform 180ms ease;
}
.fab-btn:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; }
.fab-call { background: var(--ink); border: 1px solid rgba(248,248,244,0.25); }

@media (max-width: 600px) {
  .inquiry-form .form-row { grid-template-columns: 1fr; }
  .fab-btn { width: 50px; height: 50px; }
}

/* === Einsatzgebiete (lokale Landingpages) === */
.footer-areas {
  max-width: 1100px; margin: 0 auto clamp(28px, 4vw, 44px);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(248,248,244,0.12);
}
.footer-areas-label {
  margin: 0 0 12px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,248,244,0.5);
}
.footer-areas-list { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-areas-list a {
  font-size: 14px; color: rgba(248,248,244,0.75);
  transition: color 160ms;
}
.footer-areas-list a:hover { color: var(--accent); }

/* === Pakete & Preise === */
.pricing {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--ink); color: var(--paper);
}
.pricing .eyebrow { color: var(--accent); }
.pricing-group-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(248,248,244,0.5);
  margin: 0 0 16px;
}
.pricing-group-label:not(:first-of-type) { margin-top: 44px; }
.pricing-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.price-card {
  position: relative;
  padding: 30px 26px;
  background: rgba(248,248,244,0.05);
  border: 1px solid rgba(248,248,244,0.14);
  border-radius: 22px;
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.price-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 20px; }
.price-amount { font-size: 36px; font-weight: 900; margin: 8px 0 2px; }
.price-note { color: rgba(248,248,244,0.6); font-size: 13px; margin-bottom: 8px; }
.price-features { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.price-features li {
  position: relative; padding-left: 24px;
  font-size: 14.5px; color: rgba(248,248,244,0.78);
}
.price-features li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 900;
}
.v-sharp .price-card { border-radius: 4px; }

/* === Parallax-Bänder (Zielgruppen-Hintergründe) === */
.para-band {
  position: relative; isolation: isolate;
  min-height: 58vh;
  display: grid; place-items: center;
  padding: clamp(64px, 10vw, 130px) clamp(20px, 5vw, 80px);
  overflow: hidden;
}
.para-bg {
  position: absolute; top: -12%; left: 0; right: 0; height: 124%;
  background-size: cover; background-position: center;
  z-index: -2; will-change: transform;
}
.para-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,16,20,0.74), rgba(16,16,20,0.86));
}
.para-content { max-width: 780px; text-align: center; color: var(--paper); }
.para-text {
  font-size: clamp(28px, 4.4vw, 56px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.para-content .button-primary { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .para-bg { transform: none !important; }
}

/* === Zielgruppen-Karussell === */
.audience {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--paper);
}
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.audience-card {
  flex: 0 0 clamp(220px, 30vw, 320px);
  scroll-snap-align: start;
  margin: 0;
  position: relative;
  border-radius: 22px; overflow: hidden;
  background: var(--ink);
}
.audience-card img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block;
}
.audience-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(16,16,20,0.85));
  color: var(--paper); font-weight: 800; font-size: 18px;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  transition: background 160ms ease;
}
.carousel-arrow:hover { background: var(--accent); }
.carousel-prev { left: -10px; }
.carousel-next { right: -10px; }
.v-sharp .audience-card { border-radius: 4px; }
@media (max-width: 600px) {
  .carousel-arrow { display: none; }
}

/* Klickbare Zielgruppen-Kacheln — Stretched-Link über die ganze Karte */
.audience-card { transition: transform 200ms ease, box-shadow 200ms ease; }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.audience-card .audience-link { position: absolute; inset: 0; z-index: 3; }
.audience-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* === Sonderaufträge === */
.special {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--ink); color: var(--paper);
}
.special .eyebrow { color: var(--accent); }
.special-card {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 30px);
  background: rgba(248,248,244,0.05);
  border: 1px solid rgba(248,248,244,0.14);
  border-radius: 28px;
}
.special-media {
  display: block;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  transition: transform 220ms ease;
}
.special-media:hover { transform: translateY(-4px); }
.special-media img { width: 100%; height: 100%; object-fit: cover; }
.special-media:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.special-body { padding: 6px clamp(2px, 1.5vw, 18px); }
.special-kicker {
  margin: 0 0 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.special-body h3 {
  font-size: clamp(23px, 2.7vw, 33px);
  line-height: 1.14;
  margin-bottom: 14px;
}
.special-body p { color: rgba(248,248,244,0.76); line-height: 1.62; }
.special-tag {
  display: inline-block;
  margin: 8px 0 22px;
  padding: 8px 16px;
  background: rgba(163,230,53,0.12);
  border: 1px solid rgba(163,230,53,0.42);
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  color: var(--accent);
}
.v-sharp .special-card,
.v-sharp .special-media { border-radius: 4px; }
@media (max-width: 980px) {
  .special-card { grid-template-columns: 1fr; }
}

/* === 3D-WOW-Hero — schwebende Ebenen, Intro aus der Tiefe, Maus-Parallax === */
.hero-deck {
  flex: 1; position: relative;
  padding: 140px clamp(20px, 5vw, 80px) 60px;
  transform-style: preserve-3d;
  transform: rotateX(calc(var(--hy, 0) * 1deg)) rotateY(calc(var(--hx, 0) * 1deg));
  transition: transform 380ms cubic-bezier(.22,.61,.36,1);
}
.hero-content { transform: translateZ(34px); }
.hero-glow {
  position: absolute; top: 16%; left: 4%;
  width: 480px; height: 480px; max-width: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163,230,53,0.30), transparent 66%);
  filter: blur(26px);
  transform: translateZ(-360px);
  pointer-events: none;
}
.hero-float {
  position: absolute; width: 272px;
  padding: 13px; border-radius: 17px;
  background: rgba(248,248,244,0.13);
  border: 1px solid rgba(248,248,244,0.3);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 44px 84px rgba(0,0,0,0.62);
  opacity: 0;
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.22,.61,.36,1);
}
.hero-float-bar { display: flex; gap: 6px; margin-bottom: 10px; }
.hero-float-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(248,248,244,0.5); }
.hero-float-shot {
  display: block; width: 100%;
  aspect-ratio: 16 / 10; object-fit: cover; object-position: top center;
  border-radius: 9px;
}
.hero-float--a { bottom: 28%; right: 11%; width: 250px; transform: translateZ(-150px) rotate(-5deg) translateY(56px); }
.hero-float--b { bottom: 45%; right: 17%; width: 212px; transform: translateZ(-300px) rotate(6deg) translateY(56px); }
.hero-float--c { bottom: 9%;  right: 3%;  width: 290px; transform: translateZ(-30px) rotate(4deg) translateY(56px); }
.hero.is-in .hero-float { opacity: 1; }
.hero.is-in .hero-float--a { transform: translateZ(-150px) rotate(-5deg); transition-delay: 160ms; }
.hero.is-in .hero-float--b { transform: translateZ(-300px) rotate(6deg);  transition-delay: 300ms; }
.hero.is-in .hero-float--c { transform: translateZ(-30px) rotate(4deg);   transition-delay: 80ms; }
@media (max-width: 760px) {
  .hero-float { display: none; }
  .hero-glow { left: 50%; top: 8%; transform: translateX(-50%) translateZ(-360px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deck { transition: none; }
  .hero-float { transition: opacity 300ms ease; }
  .hero.is-in .hero-float--a,
  .hero.is-in .hero-float--b,
  .hero.is-in .hero-float--c { transition-delay: 0ms; }
}
