/* ==========================================================================
   FAVORITE MARKETING — Design System
   Ein einziges Stylesheet. Keine externen Abhängigkeiten, keine Web-Fonts
   von Drittanbietern (DSGVO), keine Frameworks.
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & Base
   3.  Layout / Container / Sections
   4.  Typografie
   5.  Buttons & Links
   6.  Header / Navigation
   7.  Hero
   8.  Trust Bar
   9.  Services
   10. System ("Alles aus einer Hand")
   11. Warum / Vorteile
   12. Prozess
   13. Portfolio
   14. Branchen
   15. Über uns
   16. FAQ
   17. CTA Section
   18. Kontakt & Formular
   19. Footer
   20. Legal / Prose Pages
   21. Mobile Sticky CTA
   22. Motion / Scroll Reveal
   ========================================================================== */

/* ---------------------------------------------------------------- 1. Tokens */
:root {
  /* Farbwelt direkt aus dem FAVORITE-MARKETING-Logo abgeleitet:
       Navy   #2b3a55  – Bildmarke „F" und Wortmarke „FAVORITE"
       Blau   #2f80ed  – Wortmarke „MARKETING" und Zierlinien
       Verlauf #2d6be8 → #4b98ee – der Haken der Bildmarke
     Der Verlauf bleibt bewusst dem Logo vorbehalten; die Flächen der
     Website arbeiten mit Volltönen.                                      */
  --ink:            #2b3a55;   /* Logo-Navy */
  --ink-2:          #223047;   /* dunklere Ableitung, Footer */
  --ink-3:          #3a4a68;   /* Navigation, Fließtext-Betonung */
  --body:           #4e5a70;
  --muted:          #6a7488;   /* Grau der Logo-Tagline, auf AA-Kontrast gezogen */
  --paper:          #ffffff;
  --paper-2:        #f6f8fb;
  --paper-3:        #eaeef5;
  --line:           #e2e8f1;
  --line-2:         #cfd8e7;
  --accent:         #2f80ed;   /* Logo-Blau */
  --accent-strong:  #1f66d0;   /* gefüllte Buttons – hält Kontrast AA */
  --accent-ink:     #1c60c4;   /* Blau für Text auf Hell */
  --accent-050:     #eaf2fd;
  --accent-100:     #d0e2fb;
  --accent-light:   #7fb0f5;   /* Blau auf dunklen Flächen */
  --on-dark:        #eef2f9;
  --on-dark-muted:  #a3aec2;
  --on-dark-line:   rgba(255, 255, 255, .14);

  /* Typografie — hochwertiger System-Stack, lädt sofort, kein Tracking. */
  --font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
               "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Untergrenzen bewusst niedrig: deutsche Komposita wie "Unternehmen"
     müssen auch bei 320px Breite in eine Zeile passen. */
  --fs-display: clamp(2.15rem, 1.25rem + 4vw, 3.9rem);
  --fs-h1:      clamp(2rem, 1.25rem + 3.1vw, 3.5rem);
  --fs-h2:      clamp(1.95rem, 1.35rem + 2.4vw, 3.05rem);
  --fs-h3:      clamp(1.2rem, 1.08rem + .5vw, 1.45rem);
  --fs-lead:    clamp(1.05rem, .98rem + .38vw, 1.3rem);
  --fs-body:    clamp(1rem, .97rem + .14vw, 1.075rem);
  --fs-sm:      .9375rem;
  --fs-xs:      .8125rem;

  /* Raum */
  --gutter:  clamp(1.25rem, .6rem + 2.6vw, 3rem);
  --section: clamp(4.5rem, 2.5rem + 7vw, 8.5rem);
  --max:     1220px;
  --max-narrow: 760px;

  /* Form */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(43, 58, 85, .06);
  --shadow:    0 8px 28px -12px rgba(43, 58, 85, .18);
  --shadow-lg: 0 30px 70px -32px rgba(43, 58, 85, .30);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .38s;

  --header-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 680;
  letter-spacing: -.022em;
  line-height: 1.12;
  margin: 0 0 .6em;
  text-wrap: balance;
  /* Sicherheitsnetz gegen überlange deutsche Komposita */
  overflow-wrap: break-word;
}

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.15em; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

button { font: inherit; color: inherit; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 560;
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

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

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

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * .62); }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--on-dark-muted); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Section-Kopf */
.sec-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--wide { max-width: 56rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: var(--fs-xs);
  font-weight: 620;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  flex: none;
}
.sec-head--center .eyebrow { justify-content: center; }
.section--ink .eyebrow { color: var(--accent-light); }

.sec-head h2 { font-size: var(--fs-h2); }
.sec-head p {
  font-size: var(--fs-lead);
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 0;
}
.section--ink .sec-head p { color: var(--on-dark-muted); }

/* --------------------------------------------------------- 4. Typografie */
.display { font-size: var(--fs-display); letter-spacing: -.032em; line-height: 1.04; }
.h1 { font-size: var(--fs-h1); }
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--body); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }

/* Akzent-Unterstreichung für ein einzelnes Wort in Headlines */
.mark {
  position: relative;
  white-space: nowrap;
  color: var(--ink);
}
.mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .1em;
  min-height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: left;
  animation: mark-in .9s .35s var(--ease) both;
}
@keyframes mark-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* --------------------------------------------------- 5. Buttons & Links */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 590;
  letter-spacing: -.005em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  /* Bewusst kein nowrap: lange Labels wie „Kostenloses Erstgespräch
     anfragen" würden sonst auf 320px-Geräten die Seite breiter machen. */
  text-wrap: balance;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(0); }

.btn svg { flex: none; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--accent { --btn-bg: var(--accent-strong); --btn-bd: var(--accent-strong); }
.btn--accent:hover { --btn-bg: var(--accent); --btn-bd: var(--accent); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-2);
}
.btn--ghost:hover { --btn-bd: var(--ink); --btn-bg: transparent; box-shadow: none; }

.btn--on-dark {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .28);
}
.btn--on-dark:hover { --btn-bd: rgba(255, 255, 255, .7); box-shadow: none; }

.btn--sm { min-height: 44px; padding: .5rem 1.15rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.25rem;
}

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: var(--fs-sm);
  font-weight: 580;
  color: var(--accent-ink);
  text-decoration: none;
}
.link-arrow svg { transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* ------------------------------------------------- 6. Header / Navigation */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              backdrop-filter .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
.header.is-open {
  background: var(--paper);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand svg { display: block; }
.brand__mark { width: 42px; height: auto; flex: none; }
.brand__type { display: block; }
.brand__name {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.1;
  color: var(--ink);
}
.brand__sub {
  display: block;
  font-size: .5625rem;
  font-weight: 620;
  letter-spacing: .26em;
  line-height: 1.3;
  color: var(--accent);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  position: relative;
  padding: .55rem .8rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 540;
  color: var(--ink-3);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: .8rem; right: .8rem; bottom: .3rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-sm);
  font-weight: 550;
  color: var(--ink-3);
  text-decoration: none;
  padding: .5rem .6rem;
}
.header__phone:hover { color: var(--accent-ink); }

.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.burger span {
  display: block;
  position: relative;
  width: 19px; height: 1.5px;
  background: var(--ink);
  transition: background-color .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px; height: 1.5px;
  background: var(--ink);
  transition: transform .28s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.header.is-open .burger span { background: transparent; }
.header.is-open .burger span::before { top: 0; transform: rotate(45deg); }
.header.is-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: none;
  flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem .25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  font-weight: 620;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
}
.mobile-nav a.mobile-nav__link svg { color: var(--line-2); }
.mobile-nav__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: .75rem; }
.mobile-nav__meta {
  display: grid; gap: .35rem;
  margin-top: 1.5rem;
  font-size: var(--fs-sm);
}
.mobile-nav__meta a { color: var(--ink-3); text-decoration: none; font-weight: 540; }

@media (max-width: 1000px) {
  .nav, .header__phone { display: none; }
  .burger { display: inline-flex; }
  .header__actions .btn { display: none; }
}
@media (max-width: 560px) {
  .brand__mark { width: 36px; }
  .brand__name { font-size: .84rem; }
  .brand__sub { font-size: .5rem; letter-spacing: .22em; }
}

body.nav-open { overflow: hidden; }

/* -------------------------------------------------------------- 7. Hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5.5rem));
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
  overflow: hidden;
}
/* Sehr dezenter Raster-Hintergrund statt Farbverlauf */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 0%, transparent 72%);
  opacity: .55;
  pointer-events: none;
}
.hero > * { position: relative; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero__badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .55rem;
  width: fit-content;
  max-width: 100%;
  padding: .4rem .9rem .4rem .5rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .7);
  font-size: var(--fs-xs);
  font-weight: 560;
  color: var(--ink-3);
  margin-bottom: 1.6rem;
}
/* Bei genügend Platz bleibt der Badge eine schlanke Pille */
@media (min-width: 620px) { .hero__badge { border-radius: var(--r-pill); } }
.hero__badge b {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .55rem;
  border-radius: var(--r-pill);
  background: var(--accent-050);
  color: var(--accent-ink);
  font-weight: 640;
  font-size: .75rem;
  letter-spacing: .04em;
}
.hero__badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.hero h1 { font-size: var(--fs-display); letter-spacing: -.034em; line-height: 1.03; margin-bottom: .5em; }
.hero__lead { font-size: var(--fs-lead); max-width: 34rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
}
.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: var(--fs-xs);
  font-weight: 540;
  color: var(--body);
}
.hero__proof svg { color: var(--accent); flex: none; }

/* Hero-Visual: individuelle Komposition, keine Stockfotos */
.hero__visual {
  position: relative;
  aspect-ratio: 5 / 4.6;
  min-height: 340px;
}
@media (max-width: 980px) {
  .hero__visual { max-width: 560px; margin-inline: auto; width: 100%; }
}

.mock {
  position: absolute;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Browser-Mockup */
.mock--browser {
  inset: 0 8% 16% 0;
  border-radius: var(--r-lg);
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  height: 38px;
  padding-inline: .9rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.mock__dots { display: flex; gap: 5px; flex: none; }
.mock__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.mock__url {
  flex: 1;
  height: 20px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding-inline: .6rem;
  font-size: .625rem;
  color: var(--muted);
  letter-spacing: .02em;
  overflow: hidden;
  white-space: nowrap;
}
.mock__body { padding: 1.15rem 1.15rem 1.4rem; }

.wire { display: grid; gap: .55rem; }
.wire i { display: block; height: 9px; border-radius: 4px; background: var(--paper-3); }
.wire i.w-lg { height: 15px; width: 72%; background: var(--ink); opacity: .88; }
.wire i.w-md { width: 88%; }
.wire i.w-sm { width: 54%; }
.wire i.w-accent { width: 30%; height: 26px; border-radius: var(--r-pill); background: var(--accent); }
.wire__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: 1rem;
}
.wire__cols span {
  display: block;
  aspect-ratio: 1 / .82;
  border-radius: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.wire__cols span:nth-child(2) { background: var(--accent-050); border-color: var(--accent-100); }

/* Reel / Social-Karte */
.mock--reel {
  width: 30%;
  min-width: 132px;
  aspect-ratio: 9 / 16;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  border-width: 4px;
  border-color: var(--ink);
  background: var(--ink);
  padding: 0;
}
.reel {
  position: relative;
  height: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: .7rem;
}
.reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 30% 22%, rgba(47, 128, 237, .55), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 2px, transparent 2px 9px);
}
.reel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .34);
  display: grid;
  place-items: center;
  color: #fff;
}
.reel__meta { position: relative; display: grid; gap: .3rem; }
.reel__meta i { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,.34); }
.reel__meta i:first-child { width: 78%; background: rgba(255,255,255,.7); }
.reel__meta i:last-child { width: 46%; }
.reel__tag {
  position: relative;
  align-self: flex-start;
  margin-bottom: .5rem;
  padding: .18rem .5rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  font-size: .5625rem;
  font-weight: 620;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Disziplinen-Karte */
.mock--chips {
  left: 0;
  bottom: 3%;
  width: 58%;
  min-width: 200px;
  padding: .9rem 1rem 1rem;
  border-radius: var(--r);
}
.chips__label {
  font-size: .5625rem;
  font-weight: 660;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .3rem; }
.chips span {
  padding: .28rem .6rem;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: .6875rem;
  font-weight: 560;
  color: var(--ink-3);
  white-space: nowrap;
}
.chips span.is-accent {
  background: var(--accent-050);
  border-color: var(--accent-100);
  color: var(--accent-ink);
}

.float-a { animation: float-a 7s ease-in-out infinite; }
.float-b { animation: float-b 8.5s ease-in-out infinite; }
@keyframes float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* --------------------------------------------------------- 8. Trust Bar */
.trustbar { border-block: 1px solid var(--line); background: var(--paper-2); }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.trustbar__item {
  background: var(--paper-2);
  padding: 1.75rem clamp(1rem, 2vw, 1.75rem);
  display: grid;
  gap: .3rem;
  align-content: start;
}
.trustbar__item strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 640;
  color: var(--ink);
  letter-spacing: -.01em;
}
.trustbar__item span { font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; }
.trustbar__item svg { color: var(--accent); margin-bottom: .45rem; }
@media (max-width: 860px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trustbar__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- 9. Services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 940px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

.service {
  position: relative;
  background: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: background-color .3s var(--ease);
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-2);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: -1;
}
.service:hover::before { opacity: 1; }

.service__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-050);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.service:hover .service__icon {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.service h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.service p { font-size: var(--fs-sm); margin-bottom: 1.1rem; }
.service__benefit {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  font-weight: 560;
  color: var(--ink-3);
  line-height: 1.5;
}
.service__benefit svg { color: var(--accent); flex: none; margin-top: 2px; }

/* ------------------------------------------------------- 10. System / USP */
.system__grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) { .system__grid { grid-template-columns: 1fr; } }

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  counter-reset: flow;
}
@media (max-width: 620px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .flow { grid-template-columns: 1fr; } }

.flow__node {
  position: relative;
  padding: 1.15rem 1rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--on-dark-line);
  background: rgba(255, 255, 255, .035);
  transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease);
}
.flow__node:hover {
  border-color: rgba(127, 176, 245, .55);
  background: rgba(47, 128, 237, .12);
  transform: translateY(-3px);
}
/* Verbinder zwischen den Bausteinen – macht aus sechs Karten ein System */
.flow__node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-.75rem - 1px);
  width: .75rem;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}
.flow__node:nth-child(3n)::after { display: none; }
@media (max-width: 620px) {
  .flow__node:nth-child(3n)::after { display: block; }
  .flow__node:nth-child(2n)::after { display: none; }
}
@media (max-width: 400px) {
  .flow__node::after { display: none; }
}

.flow__node span {
  display: block;
  font-size: .625rem;
  font-weight: 660;
  letter-spacing: .16em;
  color: var(--accent-light);
  margin-bottom: .5rem;
}
.flow__node strong {
  display: block;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.flow__node small {
  display: block;
  margin-top: .3rem;
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
  line-height: 1.5;
}

.system__note {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--on-dark-line);
  background: rgba(255, 255, 255, .04);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--on-dark);
}
.system__note svg { color: var(--accent-light); flex: none; margin-top: 3px; }

.compare {
  display: grid;
  gap: .6rem;
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}
.compare li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: var(--fs-sm);
  color: var(--on-dark-muted);
}
.compare li svg { flex: none; margin-top: 3px; }
.compare li.is-no svg { color: #6b7a95; }
.compare li.is-yes { color: var(--on-dark); }
.compare li.is-yes svg { color: var(--accent-light); }

/* --------------------------------------------------------- 11. Warum */
/* Spaltenzahl bewusst fest statt auto-fit: Die 1px-Lücken zeigen die
   Hintergrundfarbe als Trennlinie – bei nicht aufgehender Item-Anzahl
   würden leere Rasterzellen sonst als graue Blöcke sichtbar.
   Jede Variante teilt die Item-Anzahl in jedem Breakpoint restlos.       */
.reasons {                                   /* 6 Items */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.reasons--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }   /* 4 Items */
.reasons--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }   /* 3 Items */

@media (max-width: 1000px) {
  .reasons, .reasons--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .reasons--3 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .reasons, .reasons--4 { grid-template-columns: 1fr; }
}
.reason {
  background: var(--paper);
  padding: clamp(1.6rem, 2.6vw, 2.25rem) clamp(1.25rem, 2.4vw, 2rem);
  display: grid;
  gap: .5rem;
  align-content: start;
}
.reason__no {
  font-size: var(--fs-xs);
  font-weight: 680;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .35rem;
}
.reason h3 { font-size: 1.075rem; margin-bottom: .1rem; letter-spacing: -.015em; }
.reason p { font-size: var(--fs-sm); margin: 0; }

/* -------------------------------------------------------- 12. Prozess */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 2.5rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line);
}
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .8s var(--ease);
}
.step.is-visible::after { width: 100%; transition-delay: calc(var(--i, 0) * .14s); }

.step__no {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--paper-3);
  margin-bottom: .9rem;
  transition: color .4s var(--ease);
}
.step.is-visible .step__no { color: var(--accent-100); }
.step h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.step p { font-size: var(--fs-sm); margin: 0; }

/* ------------------------------------------------------ 13. Portfolio */
.work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
}
.work__item {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.work__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.work__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.work__cover img { width: 100%; height: 100%; object-fit: cover; }
.work__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .6;
}
.work__glyph {
  position: relative;
  width: 100%;
  max-width: 220px;
  color: var(--line-2);
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.work__item:hover .work__glyph { color: var(--accent-100); transform: scale(1.03); }

.work__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.work__cat {
  font-size: var(--fs-xs);
  font-weight: 620;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.work__item h3 { font-size: 1.15rem; margin: 0 0 .3rem; }
.work__item p { font-size: var(--fs-sm); margin: 0 0 1rem; }
.work__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; list-style: none; padding: 0; }
.work__tags li {
  padding: .22rem .6rem;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: .75rem;
  font-weight: 540;
  color: var(--body);
}

.work__note {
  margin-top: 2.5rem;
  padding: 1.15rem 1.35rem;
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
  background: var(--paper-2);
  font-size: var(--fs-sm);
  color: var(--muted);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.work__note svg { color: var(--muted); flex: none; margin-top: 3px; }

/* ------------------------------------------------------- 14. Branchen */
.industries { border-top: 1px solid var(--line); }
.industry {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.15rem, 2.4vw, 1.75rem) .25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left .35s var(--ease);
}
.industry:hover { padding-left: 1rem; color: inherit; }
.industry::before {
  content: "";
  position: absolute;
  inset: 0 -1rem;
  background: var(--paper-2);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: -1;
  border-radius: var(--r);
}
.industry:hover::before { opacity: 1; }
.industry__no {
  font-size: var(--fs-xs);
  font-weight: 640;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.industry:hover .industry__no { color: var(--accent); }
.industry__name {
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 660;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.2;
}
.industry__desc {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 440;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: .15rem;
}
.industry__arrow { color: var(--line-2); transition: color .3s var(--ease), transform .3s var(--ease); }
.industry:hover .industry__arrow { color: var(--accent); transform: translateX(4px); }
@media (max-width: 560px) {
  .industry { grid-template-columns: 2.5rem 1fr; }
  .industry__arrow { display: none; }
}

/* -------------------------------------------------------- 15. Über uns */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }

.founder { position: relative; max-width: 420px; }
@media (max-width: 900px) { .founder { margin-inline: auto; } }

.founder__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}
.founder__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
/* Fallback, falls das Gründerfoto (noch) fehlt: gebrandete Fläche statt
   kaputtem Bild-Icon. Verschwindet automatisch, sobald das Bild vorhanden ist. */
.founder__frame.is-missing { background: var(--paper-2); }
.founder__frame.is-missing img { display: none; }
.founder__frame.is-missing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 445 415' width='130' height='121'%3E%3Cg fill='%23cfd8e7'%3E%3Cpath d='M0 0h375l-75 80H75v65h165l-55 80H75v190H50L0 360Z'/%3E%3Cpath d='M100 250h78l22 92L445 72v343h-70V261L235 415h-95Z'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-repeat: no-repeat, repeat, repeat;
  background-position: center, 0 0, 0 0;
  background-size: 130px 121px, 32px 32px, 32px 32px;
}

.founder__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 90px -60px rgba(43, 58, 85, .35);
  pointer-events: none;
}
.founder::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 55%;
  height: 45%;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 0 var(--r-lg);
  z-index: -1;
}
.founder__caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  right: 1.1rem;
  padding: .8rem 1rem;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: var(--shadow-sm);
}
.founder__caption strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -.015em;
}
.founder__caption span { display: block; font-size: var(--fs-xs); color: var(--muted); }

.about__quote {
  margin: 0 0 1.75rem;
  padding-left: 1.35rem;
  border-left: 2px solid var(--accent);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.022em;
  color: var(--ink);
}
.about__quote cite {
  display: block;
  margin-top: .9rem;
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 560;
  letter-spacing: .04em;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem 2rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
}
.values li { display: grid; gap: .2rem; }
.values strong { font-size: var(--fs-sm); color: var(--ink); font-weight: 630; }
.values span { font-size: var(--fs-xs); color: var(--muted); line-height: 1.55; }

/* ------------------------------------------------------------ 16. FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem .25rem;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 620;
  letter-spacing: -.018em;
  color: var(--ink);
  line-height: 1.4;
}
.faq__q:hover { color: var(--accent-ink); }
.faq__icon {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: background-color .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .28s var(--ease), background-color .28s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: #fff; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  max-width: 62ch;
  padding: 0 3rem 1.6rem .25rem;
  font-size: var(--fs-sm);
  margin: 0;
}

/* --------------------------------------------------- 17. CTA Section */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--on-dark-muted);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(90% 90% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(90% 90% at 50% 0%, #000, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: var(--fs-h2); color: #fff; }
.cta-band .lead { color: var(--on-dark-muted); }
.cta-band__inner { text-align: center; max-width: 46rem; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }
.cta-band__meta {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--on-dark-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.75rem;
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
}
.cta-band__meta a { color: var(--on-dark); text-decoration: none; font-weight: 560; }
.cta-band__meta a:hover { color: #fff; }
.cta-band__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.cta-band__meta svg { color: var(--accent-light); }

/* ------------------------------------------------ 18. Kontakt & Form */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__list { display: grid; gap: 1.5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__ico {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 11px;
  background: var(--accent-050);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
}
.contact__list dt, .contact__list strong {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 620;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact__list a, .contact__list p {
  font-size: var(--fs-body);
  font-weight: 560;
  color: var(--ink);
  text-decoration: none;
  margin: 0;
}
.contact__list a:hover { color: var(--accent-ink); }

.next-steps {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper-2);
}
.next-steps h3 { font-size: var(--fs-sm); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 640; margin-bottom: 1rem; }
.next-steps ol { margin: 0; padding: 0; list-style: none; display: grid; gap: .8rem; counter-reset: ns; }
.next-steps li {
  display: flex;
  gap: .75rem;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  counter-increment: ns;
}
.next-steps li::before {
  content: counter(ns);
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .6875rem;
  font-weight: 680;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* Formular */
.form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.section--alt .form-card { background: var(--paper); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: grid; gap: .45rem; }
.field label {
  font-size: var(--fs-xs);
  font-weight: 620;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem .95rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: var(--fs-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2378849c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa5bb; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-050);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #d9534f; }

.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.55;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 20px; height: 20px;
  min-height: 0;
  padding: 0;          /* sonst bläht das .field-Input-Padding die Box auf */
  appearance: auto;
  margin-top: 1px;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent-ink); }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.form-foot .btn { flex: 1 1 auto; }
.form-note { font-size: var(--fs-xs); color: var(--muted); flex: 1 1 12rem; }

.form-status {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status[data-state="ok"] { background: var(--accent-050); color: var(--accent-ink); border: 1px solid var(--accent-100); }
.form-status[data-state="error"] { background: #fdf0ef; color: #a4342f; border: 1px solid #f5d5d3; }

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* --------------------------------------------------------- 19. Footer */
.footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--on-dark-line);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; } }

.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--accent-light); }
.footer__about { max-width: 30ch; margin-top: 1.25rem; font-size: var(--fs-sm); line-height: 1.65; }

.footer h2 {
  font-size: var(--fs-xs);
  font-weight: 660;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { color: var(--on-dark-muted); text-decoration: none; font-size: var(--fs-sm); transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer address { font-style: normal; font-size: var(--fs-sm); line-height: 1.7; margin-top: 1.35rem; }

.socials { display: flex; gap: .5rem; margin-top: 1.5rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark-muted);
  transition: border-color .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease);
}
.socials a:hover { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: var(--fs-xs);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ------------------------------------------------ 20. Legal / Prose */
.page-head {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4.5rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.page-head h1 { font-size: var(--fs-h1); margin-bottom: .35em; }
.page-head p { font-size: var(--fs-lead); max-width: 46rem; margin: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-ink); }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; color: var(--line-2); }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-top: 2.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.85rem; }
.prose p, .prose li { font-size: var(--fs-sm); }
.prose ul { padding-left: 1.2rem; display: grid; gap: .4rem; }
.prose address { font-style: normal; }
.prose .muted-note {
  padding: 1.1rem 1.3rem;
  border-left: 2px solid var(--line-2);
  background: var(--paper-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ------------------------------- 20b. Detailblöcke (Unterseiten) */
.detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.detail:first-of-type { border-top: 0; padding-top: 0; }
.detail--flip .detail__media { order: -1; }
@media (max-width: 860px) {
  .detail { grid-template-columns: 1fr; gap: 2rem; }
  .detail--flip .detail__media { order: 0; }
}

.detail__no {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: var(--fs-xs);
  font-weight: 660;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.detail__no i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--accent-050);
  color: var(--accent-ink);
}
.detail h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }

.detail__panel {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-2);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.detail__panel h3 {
  font-size: var(--fs-xs);
  font-weight: 660;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.detail__panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.detail__panel li,
.checks li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: 1.55;
}
.detail__panel li svg, .checks li svg { color: var(--accent); flex: none; margin-top: 4px; }

.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .65rem; }

/* --------------------------------------------- 21. Mobile Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .93);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; min-height: 48px; }
.sticky-cta .btn--ghost { flex: 0 0 48px; padding: 0; }
@media (max-width: 1000px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
}
body.nav-open .sticky-cta { transform: translateY(110%); }

/* --------------------------------------- 22. Motion / Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .mark::after { transform: none; }
  .step::after { width: 100%; }
}

@media print {
  .header, .mobile-nav, .sticky-cta, .cta-band, .hero__visual { display: none !important; }
  body { color: #000; }
}
