/* ---------------------------------------------------------------
   CargoCloud — Shared Shell-CSS
   Extrahiert aus index.html (Zeilen 16-1055) + Erweiterungen.
   Design-Sprache: ruhig, typo-first, hell (Light-Mode).
   Letzte Anpassung: 2026-04-19 (v4) — Rebrand Tuerkis/Blau -> Orange/Graphit
   gemaess DESIGN_SYSTEM_COLORS.md. --accent jetzt #FF5A1F (Signal-Orange),
   --accent-2 #E04A12 (Hover), --bg-dark-2 #18181B (Graphit statt Navy).
   Kein Blau mehr im produktiven CSS.
   @since 2026-04-19  @author Claude (claude-opus-4-7) + bea-frontend
   --------------------------------------------------------------- */

:root {
  /* Farben — Rebrand Orange/Graphit (v4, Design-Spec §2) */
  --bg-dark: #0A0A0B;
  --bg-dark-2: #18181B;
  --bg-light: #FFFFFF;
  --bg-zinc: #F4F4F5;
  --ink-dark: #0A0A0B;
  --ink-light: #FAFAFA;
  --muted-dark: #A1A1AA;
  --muted-light: #52525B;
  --accent: #FF5A1F;
  --accent-2: #E04A12;
  --accent-ink: #0A0A0B;
  --accent-pressed: #C93F0C;
  --accent-soft: #FFE5D9;
  --highlight: #FFD60A;
  --highlight-ink: #0A0A0B;
  --highlight-soft: #FFF4B8;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: #E4E4E7;
  --border-dark-strong: rgba(255,255,255,0.14);

  /* Layout */
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 40px);
  --section-py: clamp(56px, 9vw, 120px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 700ms;

  /* Typo */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", "Inter", serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-dark);
  background: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

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

/* Utility-Wrapper */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  width: 100%;
}

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

.section--dark {
  background: #f8f9fa;
  color: var(--ink-dark);
}
.section--dark::before {
  /* subtiler Farb-Akzent für ehemalige dunkle Sektionen */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 70% 0%, rgba(255, 90, 31, 0.04), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(224, 74, 18, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.section--dark > * { position: relative; z-index: 1; }

.section--zinc { background: var(--bg-zinc); }

/* Typo-Skala */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-light);
  margin: 0 0 24px;
}
.section--dark .eyebrow { color: var(--muted-light); }
.eyebrow span.dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(255,90,31,0.15);
}

.display {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0;
  font-size: clamp(44px, 9vw, 104px);
}

.display--hero { font-size: clamp(44px, 7.5vw, 92px); line-height: 0.98; }

.section-title {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 68px);
}

.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--muted-light);
  max-width: 56ch;
  margin: 0;
}
.section--dark .lead { color: var(--muted-light); }

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

/* --------- Nav + Mega-Menü -------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: background 400ms var(--ease), backdrop-filter 400ms var(--ease), border-color 400ms var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.nav.is-scrolled,
.nav.has-open {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom-color: var(--border-light);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
  font-size: 18px;
}
.nav__brand svg { width: 32px; height: 32px; }

.nav__links {
  display: none;
  gap: 4px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav__links > li { position: static; }
.nav__link,
.nav__btn {
  color: var(--muted-light);
  font-size: 14.5px;
  font-family: inherit;
  font-weight: 500;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
  line-height: 1;
}
.nav__link:hover,
.nav__btn:hover,
.nav__btn[aria-expanded="true"] { color: var(--ink-dark); background: rgba(0,0,0,0.05); }
.nav__btn svg.chev { width: 12px; height: 12px; transition: transform 200ms var(--ease); }
.nav__btn[aria-expanded="true"] svg.chev { transform: rotate(180deg); }
.nav__link--active { color: var(--ink-dark); }
.nav__link--active::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 6px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav__login {
  color: var(--muted-light);
  font-size: 14.5px;
}
.nav__login:hover { color: var(--ink-dark); }

.nav__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--ink-dark);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
}
.nav__hamburger svg { width: 20px; height: 20px; }

/* Mega-Panel */
.mega {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
  z-index: 49;
}
.mega[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega__grid {
  display: grid;
  gap: 28px;
  padding-block: 32px 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .mega__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .mega__grid { grid-template-columns: repeat(3, 1fr); }
}
.mega__col h5 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 600;
  margin: 0 0 14px;
}
.mega__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mega__item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-dark);
  transition: background 180ms var(--ease);
}
.mega__item:hover,
.mega__item:focus-visible { background: rgba(0,0,0,0.05); }
.mega__item-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
  margin-bottom: 2px;
}
.mega__item-desc {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted-light);
}

/* Mobile off-canvas */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 60;
  padding: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease), visibility 220ms;
  overflow-y: auto;
}
.mobile-nav[aria-hidden="false"] { opacity: 1; visibility: visible; }
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav__close {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--ink-dark);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__close svg { width: 20px; height: 20px; }
.mobile-nav__body {
  padding: 12px var(--pad-x) 32px;
  color: var(--ink-dark);
}
.mobile-nav details {
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav details > summary {
  list-style: none;
  padding: 18px 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-nav details > summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--ink-dark);
  border-bottom: 2px solid var(--ink-dark);
  transform: rotate(45deg);
  transition: transform 200ms var(--ease);
  opacity: 0.5;
}
.mobile-nav details[open] > summary::after { transform: rotate(-135deg); }
.mobile-nav details ul {
  list-style: none;
  padding: 0 4px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav details ul a {
  display: block;
  padding: 10px 4px;
  color: var(--muted-light);
  font-size: 15px;
}
.mobile-nav details ul a strong {
  display: block;
  color: var(--ink-dark);
  font-weight: 500;
  margin-bottom: 2px;
}
.mobile-nav__flat {
  display: block;
  padding: 18px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-dark);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav__cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .nav__links { display: inline-flex; }
  .nav__hamburger { display: none; }
  .mobile-nav { display: none; }
}
@media (max-width: 899px) {
  .nav__cta .nav__login,
  .nav__cta .btn--primary { display: none; }
  .mega { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mega, .mobile-nav { transition: opacity 100ms linear, visibility 100ms; }
  .mega[aria-hidden="false"] { transform: none; }
}

/* --------- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 980px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink-light);
  border-color: var(--border-dark-strong);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,0.06); }
.btn--ghost-light {
  background: transparent;
  color: var(--ink-dark);
  border-color: var(--border-light);
}
.btn--ghost-light:hover { background: rgba(0,0,0,0.04); }
.btn--small { padding: 10px 18px; font-size: 14px; min-height: 38px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
}
.arrow-link svg { width: 14px; height: 14px; transition: transform 250ms var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* --------- Skip-Link -------------------------------------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 100;
}
.skip:focus { left: 16px; }

/* --------- Hero ------------------------------------------- */
.hero {
  padding-top: clamp(112px, 14vh, 160px);
  padding-bottom: clamp(56px, 7vh, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__copy {
  max-width: 960px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero__mockup-wrap {
  margin-top: clamp(40px, 6vw, 72px);
  position: relative;
}
.mockup-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2px;
}
.mockup-card__inner {
  background: linear-gradient(180deg, #f8f9fa 0%, #f1f5f9 100%);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 28px);
  min-height: clamp(260px, 36vw, 460px);
}

/* Dashboard-SVG Skelett */
.dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  height: 100%;
  min-height: 380px;
}
.dash__side {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash__side-item {
  height: 32px;
  border-radius: 8px;
  background: rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  font-size: 12.5px;
  color: var(--muted-light);
}
.dash__side-item--active {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid rgba(255,90,31,0.24);
}
.dash__side-item .sq {
  width: 14px; height: 14px; border-radius: 4px; background: rgba(0,0,0,0.1);
}
.dash__side-item--active .sq { background: var(--accent); }

.dash__main {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-width: 0;
}
.dash__top {
  display: flex; justify-content: space-between; align-items: center;
}
.dash__title {
  font-weight: 600; font-size: 15px; color: var(--ink-dark);
  letter-spacing: -0.01em;
}
.dash__chip {
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,90,31,0.25);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.dash__kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.dash__kpi {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px;
  min-width: 0;
}
.dash__kpi .v {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-dark);
}
.dash__kpi .l {
  font-size: 11px; color: var(--muted-light);
  margin-top: 2px;
}
.dash__chart {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px;
  min-height: 160px;
  display: flex; flex-direction: column; gap: 10px;
}
.dash__chart-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted-light);
}

@media (max-width: 720px) {
  .dash { grid-template-columns: 1fr; }
  .dash__side { display: none; }
  .dash__kpis { grid-template-columns: repeat(2, 1fr); }
}

/* --------- Trust-Bar -------------------------------------- */
.trust {
  padding-block: 48px;
  background: #f3f4f6;
  color: var(--ink-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust__label {
  text-align: center;
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  align-items: center;
  justify-items: center;
  opacity: 0.72;
}
.trust__logo {
  color: var(--muted-light);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 200ms var(--ease), opacity 200ms var(--ease);
}
.trust__logo:hover { color: var(--ink-dark); }
.trust__logo svg { width: 22px; height: 22px; color: currentColor; }

@media (min-width: 720px) {
  .trust__logos { grid-template-columns: repeat(7, 1fr); }
}

/* --------- Feature-Grid ----------------------------------- */
.features__header {
  max-width: 780px;
  margin-bottom: clamp(24px, 3vw, 48px);
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .features__grid { grid-template-columns: 1fr 1fr; } }

.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: clamp(20px, 2.2vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease);
}
.feature-card:hover { transform: translateY(-2px); border-color: rgba(0,0,0,0.18); }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255,90,31,0.15), rgba(224,74,18,0.1));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(255,90,31,0.25);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.feature-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 16.5px;
  line-height: 1.55;
}

/* --------- Showcase --------------------------------------- */
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (min-width: 960px) {
  .showcase__grid { grid-template-columns: 1fr 1.15fr; }
}
.showcase__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.showcase__list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--ink-dark);
  font-size: 17px;
}
.showcase__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(255,90,31,0.14);
  border: 1px solid rgba(255,90,31,0.35);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='%23FF5A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --------- Steps ------------------------------------------ */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 48px);
  counter-reset: steps;
}
@media (min-width: 860px) {
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
}
.step {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.step__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-dark);
}
.step__title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.step p {
  color: var(--muted-light);
  margin: 0;
  font-size: 16.5px;
}

/* --------- Stats ------------------------------------------ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 48px);
}
@media (min-width: 820px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.stat__num {
  font-weight: 600;
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink-dark);
}
.stat__label {
  color: var(--muted-light);
  font-size: 14.5px;
  letter-spacing: 0.01em;
  max-width: 22ch;
}

/* --------- Pricing ---------------------------------------- */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(24px, 3vw, 48px);
}
@media (min-width: 820px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.plan--feature {
  background: var(--ink-dark);
  color: #f5f5f7;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.plan--feature .plan__price { color: #ffffff; }
.plan--feature .plan__features li { color: #d1d1d6; }
.plan--feature .plan__price-detail { color: #94a3b8; }

.plan__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.plan__name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
  color: var(--muted-light);
}
.plan--feature .plan__name { color: #94a3b8; }
.plan__price {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.plan__price sup {
  font-size: 0.35em;
  font-weight: 500;
  color: var(--muted-light);
  margin-right: 4px;
  vertical-align: middle;
  top: -0.5em;
}
.plan__price-detail {
  font-size: 14px;
  color: var(--muted-light);
  margin-top: -8px;
}
.plan__features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15.5px;
  color: var(--ink-dark);
}
.plan__features li {
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.plan__features li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='%23FF5A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.plan__cta { margin-top: auto; }

/* --------- Final-CTA -------------------------------------- */
.final-cta {
  padding-block: clamp(64px, 9vw, 120px);
  text-align: center;
}
.final-cta .display { margin-inline: auto; max-width: 18ch; }
.final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.final-cta__note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted-light);
}

/* --------- Footer ----------------------------------------- */
.footer {
  background: #f3f4f6;
  color: var(--ink-dark);
  padding-block: 56px 32px;
  border-top: 1px solid var(--border-light);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr repeat(4, 1fr); }
}
.footer__brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
  color: var(--ink-dark);
}
.footer__brand svg { width: 32px; height: 32px; }
.footer__about {
  margin-top: 14px;
  color: var(--muted-light);
  font-size: 14.5px;
  max-width: 36ch;
  line-height: 1.55;
}
.footer__col h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dark);
  font-weight: 600;
  margin: 0 0 14px;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__col a {
  color: var(--muted-light);
  font-size: 14.5px;
  transition: color 200ms var(--ease);
}
.footer__col a:hover { color: var(--ink-dark); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  color: var(--muted-light);
  font-size: 13px;
}
@media (min-width: 720px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__lang {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 4px;
}
.footer__lang button {
  background: transparent;
  color: var(--muted-light);
  font-family: inherit;
  font-size: 13px;
  border: 0;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.footer__lang button[aria-pressed="true"] {
  background: rgba(0,0,0,0.08);
  color: var(--ink-dark);
}

/* --------- Reveal ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .feature-card:hover, .arrow-link:hover svg { transform: none; }
}

/* ============================================================
   Erweiterungen für Unterseiten (ergänzt 2026-04-18)
   Content-Sektionen, Formulare, Cards, FAQ, Jobs, Blog
   ============================================================ */

/* Sub-Page Hero (kompakter als Start-Hero) */
.sub-hero {
  padding-top: clamp(112px, 14vh, 148px);
  padding-bottom: clamp(32px, 5vw, 64px);
}
.sub-hero .display {
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.0;
}
.sub-hero .lead { margin-top: 20px; max-width: 62ch; }

/* Breadcrumb */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--muted-light);
  margin-bottom: 16px;
}
.crumbs a { color: var(--muted-light); }
.crumbs a:hover { color: var(--ink-dark); }
.crumbs .sep { opacity: 0.4; }

/* Zweispaltiger Content-Block ohne Mockup */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.2vw, 48px);
  align-items: start;
}
@media (min-width: 900px) {
  .prose-grid { grid-template-columns: 1.2fr 1fr; }
  .prose-grid--reverse { grid-template-columns: 1fr 1.2fr; }
  .prose-grid--reverse > :first-child { order: 2; }
}
.prose-grid h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 16px;
}
.prose-grid p {
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.section--dark .prose-grid p { color: var(--muted-light); }
.prose-grid ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 16px;
  color: var(--ink-dark);
}
.section--dark .prose-grid ul { color: var(--ink-dark); }
.prose-grid ul li {
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.prose-grid ul li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='%23FF5A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}

.illu-card {
  border: 1px solid var(--border-light);
  background: linear-gradient(180deg, #fafafa, #f2f2f4);
  border-radius: 20px;
  padding: clamp(20px, 2.6vw, 32px);
  min-height: 280px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
}
.section--dark .illu-card {
  background: #ffffff;
  border-color: var(--border-light);
}
.illu-card__rows {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 10px;
}
.illu-row {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-dark);
}
.section--dark .illu-row {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.06);
  color: var(--ink-dark);
}
.illu-row strong { font-weight: 600; }
.illu-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.illu-tag--ok { background: var(--accent-soft); color: var(--accent-pressed); border: 1px solid rgba(255,90,31,0.3); }
.section--dark .illu-tag--ok { color: var(--accent-pressed); }
.illu-tag--warn { background: var(--highlight-soft); color: #7C5E00; border: 1px solid rgba(255,214,10,0.45); }
.illu-tag--info { background: var(--bg-zinc); color: var(--ink-dark); border: 1px solid var(--border-light); }

/* FAQ */
.faq {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: clamp(20px, 3vw, 40px) auto 0;
}
.faq details {
  border-top: 1px solid var(--border-light);
  padding: 18px 4px;
}
.section--dark .faq details { border-top-color: var(--border-light); }
.faq details:last-of-type { border-bottom: 1px solid var(--border-light); }
.section--dark .faq details:last-of-type { border-bottom-color: var(--border-light); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: -0.01em;
  color: var(--ink-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.section--dark .faq summary { color: var(--ink-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 200ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.6;
  max-width: 68ch;
}
.section--dark .faq details p { color: var(--muted-light); }

/* Category-Grid (Lösungen, Integrationen) */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(20px, 3vw, 40px);
}
@media (min-width: 700px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.section--dark .cat-card {
  background: #ffffff;
  border-color: var(--border-light);
  color: var(--ink-dark);
}
.cat-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.cat-card__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.cat-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cat-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 14.5px;
  line-height: 1.55;
}
.section--dark .cat-card p { color: var(--muted-light); }
.cat-card__list {
  list-style: none;
  padding: 0; margin: 6px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.cat-card__list li {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--ink-dark);
}
.section--dark .cat-card__list li {
  background: rgba(0,0,0,0.05);
  color: var(--ink-dark);
}

/* Logo-Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: clamp(20px, 2.8vw, 36px);
}
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logo-grid { grid-template-columns: repeat(6, 1fr); } }
.logo-tile {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  background: var(--bg-light);
  text-align: center;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.section--dark .logo-tile {
  background: #ffffff;
  border-color: var(--border-light);
}
.logo-tile:hover { transform: translateY(-2px); border-color: var(--accent); }
.logo-tile__img {
  /* Phase 3: echtes Brand-Logo in logo-tile */
  width: auto; height: 32px; max-width: 90%;
  object-fit: contain;
  margin-bottom: 4px;
}
.logo-tile__name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
}
.section--dark .logo-tile__name { color: var(--ink-dark); }
.logo-tile__meta { font-size: 11px; color: var(--muted-light); }
.section--dark .logo-tile__meta { color: var(--muted-light); }

/* Blog-Cards
   Thumbnail-Varianten: Rebrand 2026-04-19 — alle in Schwarz/Graphit-Skala
   mit Orange-/Gelb-Akzenten gemaess DESIGN_SYSTEM_COLORS.md §6. Kein Blau,
   kein Cyan mehr. Kleine Kontrastwechsel zwischen Varianten fuer visuelle
   Rhythmus-Unterscheidung. */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: clamp(28px, 3.5vw, 48px);
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 300ms var(--ease);
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0A0A0B 0%, #18181B 45%, #27272A 100%);
  position: relative;
  overflow: hidden;
}
.blog-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 30% 30%, rgba(255,90,31,0.35), transparent 60%);
}
/* Monochrome Anthrazit mit Graphit-Hauch */
.blog-card__thumb--2 { background: linear-gradient(135deg, #0A0A0B 0%, #18181B 45%, #3F3F46 100%); }
/* Graphit-Stahl, etwas heller */
.blog-card__thumb--3 { background: linear-gradient(135deg, #18181B 0%, #27272A 45%, #52525B 100%); }
/* Orange-intensiver Verlauf, Marken-Akzent */
.blog-card__thumb--4 { background: linear-gradient(135deg, #0A0A0B 0%, #C93F0C 55%, #FF5A1F 100%); }
/* Stahl mit hellem Highlight */
.blog-card__thumb--5 { background: linear-gradient(135deg, #18181B 0%, #52525B 45%, #A1A1AA 100%); }
/* Hell-grau Finish (z.B. Whitepaper) */
.blog-card__thumb--6 { background: linear-gradient(135deg, #27272A 0%, #71717A 45%, #E4E4E7 100%); }
.blog-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.blog-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-dark);
}
.blog-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.blog-card__meta {
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted-light);
  margin-top: 4px;
}

/* Jobs-List */
.jobs {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 40px);
}
.job {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px 22px;
  background: var(--bg-light);
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.job:hover { border-color: var(--accent); transform: translateY(-1px); }
@media (min-width: 720px) {
  .job { grid-template-columns: 2fr 1fr 1fr auto; align-items: center; gap: 16px; }
}
.job__title {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
}
.job__team, .job__loc {
  color: var(--muted-light);
  font-size: 14px;
}
.job__apply {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px;
}
.job__apply::after { content: "→"; }

/* Stat-Grid light */
.stats-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
  margin-top: clamp(24px, 3vw, 48px);
}
@media (min-width: 820px) { .stats-light { grid-template-columns: repeat(4, 1fr); } }
.stat-l {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.stat-l__num {
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-dark);
}
.stat-l__label {
  color: var(--muted-light);
  font-size: 14px;
  max-width: 22ch;
}

/* Auth-Formular */
.auth-shell {
  min-height: 100vh;
  padding-top: clamp(96px, 12vh, 140px);
  padding-bottom: 48px;
  display: flex; align-items: flex-start; justify-content: center;
  background:
    radial-gradient(60% 60% at 70% 0%, rgba(255, 90, 31, 0.06), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(224, 74, 18, 0.04), transparent 60%),
    #f8f9fa;
  color: var(--ink-dark);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.auth-card h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.auth-card .subtitle {
  margin: 0 0 22px;
  color: var(--muted-light);
  font-size: 15px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 600;
}
.form-field input {
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--ink-dark);
  padding: 13px 14px;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
  min-height: 46px;
  width: 100%;
}
.form-field input:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255,90,31,0.18);
}
.form-field input::placeholder { color: #94a3b8; }
.form-field__help {
  font-size: 12.5px;
  color: var(--muted-light);
  margin-top: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--muted-light);
  margin: 4px 0 18px;
  line-height: 1.45;
}
.form-checkbox input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--accent); }
.form-checkbox a { color: var(--accent); }
.form-submit { width: 100%; }
.form-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-light);
  text-align: center;
}
.form-note a { color: var(--accent); font-weight: 600; }

.form-alert {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.45;
  border: 1px solid transparent;
}
.form-alert--error { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #dc2626; }
.form-alert--ok { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: #059669; }

.form-divider {
  position: relative;
  text-align: center;
  margin: 18px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.form-divider::before, .form-divider::after {
  content: "";
  position: absolute; top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--border-light);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.auth-aside {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  font-size: 13.5px;
  color: var(--muted-light);
}
.auth-aside svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }

/* ============================================================
   Differenzierungs-Update 2026-04-18 — Eigenständigkeits-Pass
   - Fraunces auf Section-Titles (weg von Standard-Sans)
   - Cookie-Banner (DSGVO)
   - Newsletter-Opt-in im Footer
   - Trust-Badge im Hero
   - Kontaktformular auf /unternehmen/#kontakt
   - Routing-Graph-Mockup als Alternative zum KPI-Dashboard
   - Build-Log-Feed-Block
   @since 2026-04-18  @author Claude (Opus 4.7) + bea-frontend
   ============================================================ */

/* Fraunces konsequent auf allen Display- und Section-Titles */
.section-title,
.plan__price,
.stat__num,
.stat-l__num {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-weight: 500;
}
.display,
.display--hero {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.04em;
}

/* ---------- Trust-Badge im Hero ------------------------------------------ */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 16px 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  font-size: 13.5px;
  color: var(--muted-light);
}
.trust-badge__stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}
.trust-badge__stars svg { width: 14px; height: 14px; }
.trust-badge strong { color: var(--ink-dark); font-weight: 600; }
.trust-badge__divider { width: 1px; height: 16px; background: var(--border-light); }

/* ---------- Cookie-Banner ------------------------------------------------- */
.cc-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 540px;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 20px 22px;
  color: var(--ink-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: none;
  font-size: 14px;
  line-height: 1.5;
}
.cc-cookie[data-open="true"] { display: block; animation: cc-slide-up 300ms var(--ease); }
@keyframes cc-slide-up {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cc-cookie__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.cc-cookie__head strong { font-weight: 600; font-size: 15px; color: var(--ink-dark); }
.cc-cookie__head svg { width: 18px; height: 18px; color: var(--accent); }
.cc-cookie p { margin: 0 0 14px; color: var(--muted-light); }
.cc-cookie a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cc-cookie__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cc-cookie__btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.cc-cookie__btn--primary { background: var(--accent); color: var(--accent-ink); }
.cc-cookie__btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.cc-cookie__btn--ghost { background: transparent; color: var(--muted-light); border-color: var(--border-light); }
.cc-cookie__btn--ghost:hover { background: rgba(0,0,0,0.04); color: var(--ink-dark); }

.cc-cookie__custom {
  margin-top: 12px; padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: none;
}
.cc-cookie[data-expanded="true"] .cc-cookie__custom { display: block; }
.cc-cookie__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 13px;
  gap: 12px;
}
.cc-cookie__row + .cc-cookie__row { border-top: 1px dashed var(--border-light); }
.cc-cookie__row label { display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.cc-cookie__row input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; }
.cc-cookie__row input:disabled + span { color: var(--muted-light); }
.cc-cookie__row em { font-style: normal; color: var(--muted-light); font-size: 12px; }

/* ---------- Newsletter-Opt-in im Footer ---------------------------------- */
.footer__newsletter {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 820px) {
  .footer__newsletter { grid-template-columns: 1fr auto; gap: 40px; }
}
.footer__newsletter-text h4 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-dark);
  font-family: var(--font-display);
}
.footer__newsletter-text p {
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  max-width: 54ch;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: stretch;
}
.footer__newsletter-form input[type="email"] {
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  color: var(--ink-dark);
  padding: 12px 18px;
  min-width: 240px;
  transition: border-color 180ms var(--ease);
}
.footer__newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent); }
.footer__newsletter-form input[type="email"]::placeholder { color: #94a3b8; }
.footer__newsletter-form button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.footer__newsletter-form button:hover { background: var(--accent-2); transform: scale(1.02); }
.footer__newsletter-status { font-size: 13px; color: var(--muted-dark); min-height: 18px; margin-top: 6px; flex-basis: 100%; }
.footer__newsletter-status--ok { color: #34d399; }
.footer__newsletter-status--err { color: #fca5a5; }

/* Honeypot (bot trap) */
.cc-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Funktionaler Language-Switcher — visuelles Feedback beim Umschalten */
.footer__lang button:active { transform: scale(0.96); }

/* ---------- Kontaktformular (/unternehmen/#kontakt) --------------------- */
.contact-form-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: clamp(24px, 3vw, 40px);
  align-items: start;
}
@media (min-width: 900px) { .contact-form-block { grid-template-columns: 1fr 1.2fr; gap: 40px; } }
.contact-form-block__intro h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.contact-form-block__intro p {
  color: var(--muted-light);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.contact-form-block__intro ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px;
}
.contact-form-block__intro ul li {
  display: flex; gap: 10px;
  color: var(--ink-dark);
}
.contact-form-block__intro ul strong { font-weight: 600; min-width: 80px; }
.contact-form-block__intro ul a { color: var(--accent-2); font-weight: 600; }

/* ============================================================
   PHASE 3 — BRAND-LOGO UTILITIES (Marketing-Site)
   Quelle: DESIGN_SYSTEM_CONTENT.md Kap. 4.3
   Erstellt: 2026-04-19, bea-frontend / Claude Opus 4.7
   ============================================================ */
.brand-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--panel-muted, #f4f4f5);
  border: 1px solid var(--border, #E4E4E7);
  color: var(--accent);
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.brand-logo--sm { width: 24px; height: 24px; border-radius: 6px; font-size: 10px; }
.brand-logo--md { width: 40px; height: 40px; border-radius: 10px; font-size: 13px; }
.brand-logo--lg { width: 80px; height: 80px; border-radius: 14px; font-size: 22px; }

.brand-inline {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink-dark, #0A0A0B);
}
.brand-inline img {
  width: 20px; height: 20px; object-fit: contain;
  opacity: 0.85;
  flex-shrink: 0;
}
.brand-inline--color img { opacity: 1; }
.brand-inline--lg { font-size: 15px; }
.brand-inline--lg img { width: 28px; height: 28px; }

/* Homepage-Logo-Wall (ersetzt .logo-tile-Text-Only durch Logo-Row) */
.brand-tile {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px;
  padding: 0 14px;
  color: var(--ink-dark, #0A0A0B);
  opacity: 0.75;
  transition: opacity 160ms ease;
}
.brand-tile:hover { opacity: 1; }
.brand-tile img { height: 28px; width: auto; object-fit: contain; max-width: 120px; }
