/* =========================================================
   Verbandspartner – Homepage
   Reines HTML/CSS/JS, keine externen Abhängigkeiten
   ========================================================= */

/* ---------- Schrift: Satoshi (selbst gehostet, DSGVO-freundlich) ---------- */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-900.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}


/* ---------- Design Tokens ---------- */
:root {
  --navy: #011932;
  --navy-deep: #023047;
  --navy-soft: #033d59;
  --blue: #068dd0;
  --teal: #219ebc;
  --sky: #8ecae6;
  --sky-pale: #c2efff;
  --blue-pale: #ebf5ff;
  --orange: #fb8500;
  --amber: #ffb703;

  --ink: #111111;
  --muted: #333333;
  --slate: #525c66;
  --gray: #868f98;
  --line: #e2e4e9;
  --card: #f2f0f0;
  --bg-soft: #f9fafb;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(82, 88, 102, 0.11);
  --shadow-md: 0 2px 4px -1px rgba(11, 59, 107, 0.08), 0 10px 24px -8px rgba(11, 59, 107, 0.14);
  --shadow-lg: 0 12px 32px -12px rgba(1, 25, 50, 0.22), 0 40px 80px -40px rgba(1, 25, 50, 0.28);
  --shadow-nav: 0 0.5px 2px -0.9px rgba(1, 16, 26, 0.06), 0 1.6px 6px -1.8px rgba(1, 16, 26, 0.06),
    0 4.1px 15.8px -2.6px rgba(1, 16, 26, 0.05), 0 13px 49px -3.5px rgba(1, 16, 26, 0.03);

  --header-h: 76px;
  --container: 1200px;
  --sans: "Satoshi", "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 900; color: var(--ink); line-height: 1.3; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

section[id], [id^="funktionen"] { scroll-margin-top: calc(var(--header-h) + 16px); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px -8px rgba(251, 133, 0, 0.9);
}
.btn--primary:hover { background: #e57a00; transform: translateY(-1px); }
.btn--white {
  background: var(--white);
  color: var(--navy-deep);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(1, 25, 50, 0.45); }
.btn--lg { padding: 14px 30px; font-size: 16px; }
.btn .btn__icon { width: 16px; height: 16px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-nav);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-deep);
  text-transform: capitalize;
  white-space: nowrap;
}
.brand img { width: 30px; height: 22px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav a:hover { color: var(--navy-deep); background: rgba(6, 141, 208, 0.07); }
.nav a.is-active { color: var(--blue); }

.header-cta { display: inline-flex; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block;
  position: relative;
  width: 22px; height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform 0.22s ease, background-color 0.22s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform 0.22s ease, top 0.22s ease;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 0;
  overflow: hidden;
}
.hero__pattern {
  position: absolute;
  top: 0; left: 50%;
  width: 1920px;
  height: 727px;
  transform: translateX(-50%);
  background: url("../img/hero-bg.svg") center top / 1920px 727px no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 32px;
  padding-bottom: 140px;
}
.hero__eyebrow {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 55px);
  letter-spacing: -0.036em;
  line-height: 1.16;
  background-image: linear-gradient(286deg, var(--teal) 0%, #314459 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Die Zeilenhöhe der Maske muss die vollen Glyphen-Extremen von Satoshi
   (Oberlänge 1.023em + Unterlänge 0.243em) aufnehmen, sonst ragt die Unterlänge
   des benachbarten Eintrags ins Sichtfenster. Die negativen Margins holen den
   dadurch entstehenden Zusatzraum optisch wieder heraus. */
.cycle {
  --cycle-line: 1.34em;
  position: relative;
  /* Der Inhalt ist absolut positioniert, die Box hat also keine Eigenbreite.
     Ohne width:100% schrumpft sie in einem zentrierten Flex-Container (Mobil)
     auf 0 und der Text wird von overflow:hidden vollstaendig abgeschnitten. */
  width: 100%;
  height: var(--cycle-line);
  margin-top: -0.09em;
  margin-bottom: -0.09em;
  overflow: hidden;
  font-size: clamp(34px, 4.6vw, 55px);
  letter-spacing: -0.036em;
  line-height: var(--cycle-line);
  font-weight: 900;
  color: var(--teal);
}
.cycle__list { position: absolute; top: 0; left: 0; right: 0; transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1); }
.cycle__item { height: var(--cycle-line); white-space: nowrap; }

.hero__text {
  margin-top: 18px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}
.hero__actions { margin-top: 28px; }

.hero__devices {
  position: relative;
  min-height: 420px;
}
.hero__laptop {
  width: 108%;
  max-width: none;
  margin-left: -4%;
  filter: drop-shadow(0 30px 60px rgba(1, 25, 50, 0.16));
}
.hero__phone {
  position: absolute;
  left: -14%;
  bottom: -22%;
  width: 40%;
  filter: drop-shadow(0 22px 42px rgba(1, 25, 50, 0.18));
}

/* ---------- Video ---------- */
.video-section { padding: 0 0 8px; background: var(--white); }
.video-section video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); padding: 56px 0 24px; }
.slider { position: relative; }
.slider__viewport { overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.slider__slide { flex: 0 0 100%; min-width: 0; padding: 8px 0; }

.quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}
.quote__mark {
  width: 58px; height: 50px;
  margin-bottom: 16px;
}
.quote__text {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.quote__author { margin-top: 18px; }
.quote__name { font-weight: 700; color: var(--ink); font-size: 16px; }
.quote__role { font-size: 14px; color: var(--gray); font-family: var(--sans); }

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.slider__arrow {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy-deep);
  background: var(--white);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.slider__arrow:hover { background: var(--blue-pale); transform: translateY(-1px); }
.slider__dots { display: flex; gap: 8px; }
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background-color 0.2s ease, width 0.2s ease;
}
.slider__dot.is-active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ---------- Funktionen im Überblick ---------- */
.overview {
  background: var(--bg-soft);
  padding: 80px 0 56px;
  overflow: hidden;
}
.overview__title {
  text-align: center;
  font-size: clamp(27px, 3.4vw, 37px);
  color: #615b5b;
  margin-bottom: 36px;
}
.marquee { position: relative; }
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), rgba(249, 250, 251, 0)); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), rgba(249, 250, 251, 0)); }
.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 260px;
  padding: 28px 22px 30px;
  background: var(--white);
  border: 1px solid rgba(226, 228, 233, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: var(--radius-lg);
}
.feature-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card__title { font-family: var(--sans); font-size: 18px; font-weight: 700; color: var(--ink); }
.feature-card__text { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: var(--slate); }

/* ---------- Feature Sections ---------- */
.feature-section { padding: 80px 0; }
.feature-section--soft { background: var(--bg-soft); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(211, 227, 235, 0.72);
  background: linear-gradient(180deg, #fff 0%, #fff 22%, var(--blue-pale) 100%);
  box-shadow: 0 0.6px 0.6px -1.5px rgba(11, 59, 107, 0.21),
    0 2.3px 2.3px -3px rgba(11, 59, 107, 0.18), 0 10px 10px -4.5px rgba(11, 59, 107, 0.03);
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  color: var(--blue);
}
.section-title {
  font-size: clamp(27px, 3.4vw, 36px);
  line-height: 1.3;
  color: var(--ink);
}

/* Variante A: zentriert, Karten in Reihe, Screenshot darunter */
.stack { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.stack .section-title { max-width: 780px; }
.tab-row {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 28px;
  text-align: left;
}

/* Variante B: zwei Spalten */
.split {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
.split--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 520px); }
.split--reverse .split__content { order: 2; }
.split--reverse .split__media { order: 1; }
.split__content { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.split__content .tab-row { grid-template-columns: minmax(0, 1fr); margin-top: 0; gap: 16px; }

/* Tab-Karte */
.tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 24px 24px 26px;
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.tab.is-active {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.tab__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tab__head img { width: 26px; height: 26px; flex: none; object-fit: contain; }
.tab__title { font-family: var(--sans); font-size: 20px; font-weight: 700; color: var(--ink); }
.tab__text { font-family: var(--sans); font-size: 15px; line-height: 1.55; color: var(--slate); }

/* Screenshot-Bühne */
.stage {
  position: relative;
  width: 100%;
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.stage__circle {
  position: absolute;
  top: 50%;
  width: 46%;
  max-width: 560px;
  transform: translateY(-50%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.stage__circle--left { left: -14%; }
.stage__circle--right { right: -14%; }
.stage__shot {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  filter: drop-shadow(0 26px 50px rgba(1, 25, 50, 0.14));
}
.split__media { position: relative; }
.split__media .stage { margin-top: 0; }
.split__media .stage__shot {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(226, 228, 233, 0.9);
  background: var(--white);
  box-shadow: 0 18px 40px -22px rgba(1, 25, 50, 0.35), 0 2px 6px -2px rgba(1, 25, 50, 0.12);
}
.deco {
  position: absolute;
  z-index: 2;
  width: 88px;
  filter: drop-shadow(0 12px 24px rgba(1, 25, 50, 0.12));
  animation: float 6s ease-in-out infinite;
}
.deco--a { top: -18px; left: -26px; }
.deco--b { bottom: -6px; right: -20px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #3f5364 0%, #152532 100%);
  color: var(--white);
  padding: 72px 0;
}
.cta__glow {
  position: absolute;
  top: 50%;
  width: 720px;
  height: 493px;
  max-width: 62%;
  opacity: 0.55;
  transform: translateY(-50%);
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 40% 45%, rgba(142, 202, 230, 0.34) 0%, rgba(142, 202, 230, 0) 70%),
    radial-gradient(45% 45% at 70% 60%, rgba(6, 141, 208, 0.22) 0%, rgba(6, 141, 208, 0) 72%);
  filter: blur(6px);
}
.cta__glow--left { left: -140px; }
.cta__glow--right { right: -140px; transform: translateY(-50%) scaleX(-1); }
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cta__title { font-size: clamp(26px, 3.4vw, 36px); color: var(--white); max-width: 760px; }
.cta__text { font-size: 18px; font-weight: 500; line-height: 1.5; color: rgba(255, 255, 255, 0.92); }
.cta__inner .btn { margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); padding: 56px 0 28px; }
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.site-footer .brand { font-size: 23px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 22px;
  color: var(--muted);
}
.footer-list svg { width: 18px; height: 18px; flex: none; color: var(--blue); }
.footer-list a:hover { color: var(--blue); }
.site-footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
}
.legal-links { display: flex; align-items: center; gap: 8px; }
.legal-links a:hover { color: var(--blue); }

/* ---------- Zielgruppen-Umschalter im Header ---------- */
.audience-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
}
.audience-nav a {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--slate);
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.audience-nav a:hover { color: var(--navy-deep); }
.audience-nav a[aria-current="page"] {
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ---------- Startseite: Zielgruppen-Weiche ---------- */
.chooser { padding: 72px 0 88px; background: var(--bg-soft); }
.chooser__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 48px;
}
.chooser__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 36px 32px;
  background: var(--white);
  border: 1px solid rgba(226, 228, 233, 0.9);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 141, 208, 0.35);
  box-shadow: var(--shadow-md);
}
.audience-card__shot {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(226, 228, 233, 0.9);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}
.audience-card__title { font-size: 26px; line-height: 1.25; color: var(--ink); }
.audience-card__text { font-size: 16px; line-height: 1.55; color: var(--slate); flex: 1; }
.audience-card__list { display: flex; flex-wrap: wrap; gap: 8px; }
.audience-card__list li {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-pale);
  color: var(--navy-deep);
}
.audience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 700;
  color: var(--blue);
}
.audience-card:hover .audience-card__cta svg { transform: translateX(3px); }
.audience-card__cta svg { width: 16px; height: 16px; transition: transform 0.2s ease; }

/* ---------- Merkmalslisten mit Häkchen ---------- */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--slate);
}
.feature-list svg {
  width: 20px; height: 20px;
  flex: none;
  margin-top: 2px;
  color: var(--teal);
}

/* ---------- Kontaktformular ---------- */
.contact { padding: 80px 0; background: var(--bg-soft); }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: start;
}
.contact__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact__text { font-size: 18px; line-height: 1.55; color: var(--slate); }
.contact__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy-deep);
}
.contact__mail svg { width: 20px; height: 20px; color: var(--blue); }

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(226, 228, 233, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form__group { display: flex; flex-direction: column; gap: 7px; }
.form__group label { font-size: 14px; font-weight: 700; color: var(--ink); }
.form__group input,
.form__group textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray); }
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(6, 141, 208, 0.15);
}
.form .btn { width: 100%; }
.form__note { font-size: 13px; line-height: 1.5; color: var(--gray); }

/* ---------- Footer-Spalten ---------- */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 20px 56px;
}
.footer-nav h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; color: var(--muted); }
.footer-nav a:hover { color: var(--blue); }

/* ---------- Produktzeile im Hero ---------- */
.product-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.product-mark img { width: 34px; height: 38px; object-fit: contain; }
.product-mark span { font-size: 18px; font-weight: 700; color: var(--navy-deep); }

@media (max-width: 1100px) {
  .contact__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 860px) {
  .audience-nav {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    margin-top: 10px;
  }
  .audience-nav a { text-align: center; border-radius: 8px; }
}

@media (max-width: 760px) {
  .chooser__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .audience-card { padding: 24px 22px 26px; }
  .audience-card__title { font-size: 22px; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
  .contact { padding: 56px 0; }
  .form { padding: 22px; }
}

/* ---------- Funktionsraster (Steuerberater) ---------- */
.func-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.func-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 26px 28px;
  background: var(--white);
  border: 1px solid rgba(226, 228, 233, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.func-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.func-card__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.func-card__title { font-size: 19px; font-weight: 700; line-height: 1.35; color: var(--ink); }
.func-card__text { font-size: 15px; line-height: 1.55; color: var(--slate); }

/* ---------- Fließtext in Abschnitten ---------- */
.section-text { font-size: 17px; line-height: 1.6; color: var(--slate); }
.feature-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 40px;
  margin-top: 8px;
  text-align: left;
  max-width: 760px;
}

/* ---------- Hero mit einzelnem Screenshot ---------- */
.hero__devices--single { display: flex; align-items: center; justify-content: center; }
.hero__shot {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(226, 228, 233, 0.9);
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer-Markenblock ---------- */
.site-footer__brand { display: flex; flex-direction: column; gap: 22px; }

@media (max-width: 1000px) {
  .func-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .func-grid { grid-template-columns: minmax(0, 1fr); }
  .feature-list--grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
}

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 80px;
}
.legal > .container { position: relative; z-index: 1; }
.legal__title {
  text-align: center;
  font-size: clamp(34px, 4.6vw, 55px);
  letter-spacing: -0.036em;
  line-height: 1.16;
  color: var(--ink);
}
.legal__body {
  max-width: 820px;
  margin-top: 56px;
}
.legal__body h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--teal);
  margin: 48px 0 16px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin: 28px 0 8px;
}
.legal__body p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  hyphens: auto;
}
.legal__body ul {
  margin: 0 0 20px;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__body li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.legal__body strong { font-weight: 700; color: var(--ink); }
.legal__body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.legal__body a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal__body a:hover { color: var(--navy-deep); }

@media (max-width: 680px) {
  .legal { padding: calc(var(--header-h) + 40px) 0 56px; }
  .legal__body { margin-top: 36px; }
  .legal__body h2 { font-size: 20px; margin-top: 36px; }
  .legal__body p, .legal__body h3, .legal__body li { font-size: 16px; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .split, .split--reverse { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split--reverse .split__content,
  .split--reverse .split__media { order: 0; }
  .split__content { align-items: center; text-align: center; max-width: 720px; margin: 0 auto; }
  .split__content .tab { text-align: left; }
  .stage__circle { display: none; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); text-align: center; padding-bottom: 90px; }
  .hero__inner { display: flex; flex-direction: column; align-items: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .cycle__item { text-align: center; }
  .hero__devices { min-height: 0; margin-top: 48px; }
  .hero__laptop { width: 100%; margin-left: 0; }
  .hero__phone { position: static; width: 46%; margin: -12% auto 0; }
  .tab-row { --cols: 1 !important; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 20px 20px;
    background: var(--white);
    box-shadow: var(--shadow-nav);
    transform: translateY(-140%);
    transition: transform 0.28s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 12px 8px; font-size: 16px; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav .header-cta--mobile { display: inline-flex; margin-top: 10px; }
}

@media (min-width: 861px) {
  .nav .header-cta--mobile { display: none; }
}

@media (max-width: 680px) {
  :root { --header-h: 68px; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .feature-section { padding: 56px 0; }
  .overview { padding: 56px 0 40px; }
  .container { padding: 0 16px; }
  .deco { width: 62px; }
  .deco--a { left: -10px; top: -10px; }
  .deco--b { right: -8px; }
  .cta { padding: 56px 0; }
  .quote__text { font-size: 17px; }
}

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