/* ==========================================================================
   B Media — Main Stylesheet
   ========================================================================== */

:root {
  --anthracite: #0F1B2D;
  --sand: #EFE9DC;
  --sand-100: #F7F4EE;
  --sand-200: #E5DFD2;
  --copper: #B87333;
  --copper-dark: #8E5826;
  --stone-400: #8B8579;
  --stone-600: #4A4640;
  --stone-800: #2A2723;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--sand);
  color: var(--anthracite);
  font-family: var(--sans);
  font-size: 17px; line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--anthracite); color: var(--sand); }
a { color: inherit; text-decoration: none; }
img, video, svg { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px;
  width: auto; height: auto;
  background: var(--anthracite); color: var(--sand);
  padding: 12px 18px; z-index: 200;
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 720px) { .wrap, .wrap-narrow { padding: 0 24px; } }

/* ==========================================================================
   Typography
   ========================================================================== */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper);
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  line-height: 1.1;
  margin: 0;
}
h1 em, h2 em, h3 em {
  font-style: italic; color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
h1 { font-size: clamp(40px, 6.5vw, 78px); line-height: 1.02; }
h2 { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.1; }
h3 { font-size: 26px; letter-spacing: -0.01em; }
h4 { font-size: 20px; letter-spacing: -0.01em; }
p { margin: 0; color: var(--stone-600); }
p.lead { font-size: 21px; line-height: 1.55; max-width: 720px; }

/* ==========================================================================
   Logo
   ========================================================================== */
.b-media-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.b-media-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.b-media-logo__wordmark {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.02em;
}
.site-footer .b-media-logo svg { width: 28px; height: 28px; }

/* ==========================================================================
   Navigation + Mega-Menu
   ========================================================================== */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(239, 233, 220, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(229, 223, 210, 0.6);
}
nav.top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
nav.top .nav-brand { display: flex; align-items: center; gap: 12px; }
nav.top .nav-links { display: flex; gap: 8px; align-items: center; }

.nav-trigger {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--stone-600);
  padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
}
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"],
.nav-trigger.is-current { color: var(--anthracite); }
.nav-trigger .chev {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 2px;
  transition: transform 0.25s ease, margin-top 0.25s;
}
.nav-trigger[aria-expanded="true"] .chev {
  transform: rotate(-135deg);
  margin-top: 3px;
}
/* Accent-Variante für "Für Gründer" — leichter Kupfer-Touch */
.nav-trigger--accent {
  color: var(--copper) !important;
}
.nav-trigger--accent:hover,
.nav-trigger--accent.is-current { color: var(--anthracite) !important; }
.mobile-link--accent {
  color: var(--copper) !important;
}

.nav-trigger::after {
  content: ""; position: absolute;
  bottom: -1px; left: 50%; right: 50%;
  height: 1.5px; background: var(--copper);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after { left: 14px; right: 14px; }

nav.top .nav-cta {
  background: var(--anthracite); color: var(--sand) !important;
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  transition: background 0.2s;
  margin-left: 12px;
}
nav.top .nav-cta:hover { background: var(--copper) !important; }
nav.top .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
nav.top .nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--anthracite); margin: 5px 0;
  transition: transform 0.2s;
}
@media (max-width: 1024px) {
  nav.top .nav-links { display: none; }
  nav.top .nav-burger { display: block; }
}

/* ==========================================================================
   Mega-Menu Panel
   ========================================================================== */
.mega-backdrop {
  position: fixed; inset: 70px 0 0 0;
  z-index: 95;
  background: rgba(15, 27, 45, 0);
  pointer-events: none;
  transition: background 0.3s ease;
}
.mega-backdrop.is-open {
  background: rgba(15, 27, 45, 0.4);
  pointer-events: auto;
}

.mega {
  position: fixed; left: 0; right: 0;
  top: 70px;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-200);
  box-shadow: 0 30px 60px -30px rgba(15, 27, 45, 0.2);
  z-index: 96;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega.is-open {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 56px 64px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 56px;
}
@media (max-width: 1100px) {
  .mega-inner { padding: 48px 32px; gap: 40px; }
}
@media (max-width: 1024px) { .mega, .mega-backdrop { display: none !important; } }

.mega-col {
  display: flex; flex-direction: column;
}
.mega-col .eyebrow {
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 11px;
}
.mega-col-title {
  font-family: var(--serif); font-size: 24px;
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--anthracite);
  margin-bottom: 8px;
}
.mega-col-sub {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 28px;
}

.mega-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.mega-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-200);
  text-decoration: none;
  color: var(--anthracite);
  transition: padding 0.25s ease;
  position: relative;
}
.mega-link:hover { padding-left: 8px; }
.mega-link:hover .mega-link-title { color: var(--copper); }
.mega-list li:last-child .mega-link { border-bottom: none; }
.mega-link-title {
  font-family: var(--serif); font-size: 17px;
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--anthracite);
  margin-bottom: 4px;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.mega-link-tag {
  font-family: var(--sans); font-size: 9px;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--copper);
  padding: 2px 6px; background: rgba(184, 115, 51, 0.1);
}
.mega-link-desc {
  font-family: var(--sans); font-size: 13px;
  color: var(--stone-600); line-height: 1.5;
}

.mega-feature {
  background: var(--anthracite);
  color: var(--sand);
  padding: 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.mega-feature::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18), transparent 70%);
  pointer-events: none;
}
.mega-feature:hover { transform: translateY(-4px); }
.mega-feature .eyebrow { color: var(--copper); position: relative; z-index: 1; }
.mega-feature-title {
  font-family: var(--serif); font-size: 22px;
  color: var(--sand); margin: 16px 0;
  letter-spacing: -0.01em; line-height: 1.25;
  position: relative; z-index: 1;
  font-weight: 500;
}
.mega-feature-title em { color: var(--copper); font-style: italic; }
.mega-feature-desc {
  font-family: var(--sans); font-size: 13px;
  color: var(--stone-400); line-height: 1.55;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.mega-feature-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.05em;
  position: relative; z-index: 1;
  transition: gap 0.25s ease;
}
.mega-feature:hover .mega-feature-arrow { gap: 14px; }

/* Mobile Menu — komplett überarbeitet */
.mobile-menu {
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--sand);
  padding: 32px 0 48px;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
/* hidden-Attribut respektieren — überschreibt display: flex */
.mobile-menu[hidden] { display: none; }
/* Auf Desktop-Breite Mobile-Menu IMMER ausblenden, egal ob hidden oder nicht */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu[hidden] { display: none !important; }
}
.mobile-menu .wrap { display: flex; flex-direction: column; gap: 0; }
.mobile-section {
  border-bottom: 1px solid var(--sand-200);
}
.mobile-section summary {
  list-style: none; cursor: pointer;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--anthracite);
}
.mobile-section summary::-webkit-details-marker { display: none; }
.mobile-section summary::after {
  content: "+"; color: var(--copper); font-size: 24px;
}
.mobile-section[open] summary::after { content: "−"; }
.mobile-section-body {
  padding: 4px 0 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-section-body a {
  font-family: var(--sans); font-size: 15px;
  color: var(--stone-600);
  padding: 10px 0 10px 16px;
  border-left: 2px solid var(--sand-200);
}
.mobile-section-body a:hover { color: var(--copper); border-color: var(--copper); }
.mobile-menu .btn-primary { margin-top: 24px; align-self: flex-start; }
.mobile-link {
  padding: 20px 0;
  border-bottom: 1px solid var(--sand-200);
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--anthracite);
  text-decoration: none;
}

.mobile-menu {
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--sand);
  padding: 48px 0;
  overflow-y: auto;
}
.mobile-menu .wrap { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu__list a {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--anthracite); letter-spacing: -0.02em;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.crumb {
  padding-top: 100px; padding-bottom: 0;
  font-family: var(--sans); font-size: 12px;
  color: var(--stone-400); letter-spacing: 0.05em;
}
.crumb a {
  color: var(--stone-600);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.crumb a:hover { border-bottom-color: var(--copper); }
.crumb span.sep { color: var(--sand-200); margin: 0 10px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  background: var(--anthracite); color: var(--sand) !important;
  padding: 16px 28px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s;
  border: none; cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { background: var(--copper); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  color: var(--anthracite);
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--copper); }

/* ==========================================================================
   Section base
   ========================================================================== */
section { padding: 100px 0; border-top: 1px solid var(--sand-200); }
section:first-of-type { border-top: none; }
.section-head { max-width: 800px; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 24px; }
.section-head p { font-size: 21px; line-height: 1.55; max-width: 680px; }

/* ==========================================================================
   HERO (Front Page & Pages)
   ========================================================================== */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero { padding: 130px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 { margin: 24px 0 32px; max-width: 1100px; }
.hero .cta-row { margin-top: 40px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, rgba(15,27,45,0) 0%, rgba(15,27,45,0.3) 100%),
    linear-gradient(140deg, #2a2723 0%, #4a4640 40%, #8b8579 100%);
  position: relative; overflow: hidden;
}
.hero-photo--has-image {
  background: var(--anthracite);
}
.hero-photo--has-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo-caption {
  margin-top: 16px;
  font-family: var(--sans); font-size: 12px;
  color: var(--stone-400); letter-spacing: 0.05em;
}

/* Sales-Page Hero (single-leistung) */
.sales-hero { padding: 60px 0 100px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--anthracite); color: var(--copper);
  padding: 8px 14px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-tag .dot {
  width: 6px; height: 6px; background: var(--copper); border-radius: 50%;
  animation: bm-pulse 2s ease-in-out infinite;
}
@keyframes bm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-meta {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--sand-200);
  display: flex; gap: 64px; flex-wrap: wrap;
}
.hero-meta div span { display: block; }
.hero-meta .label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone-400); font-weight: 600; margin-bottom: 6px;
}
.hero-meta .value {
  font-family: var(--serif); font-size: 20px;
  color: var(--anthracite); font-weight: 500;
}

/* ==========================================================================
   Trust-Strip
   ========================================================================== */
.trust-strip {
  background: var(--anthracite);
  color: var(--sand-200);
  padding: 32px 0;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px; align-items: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item .label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--copper);
}
.trust-item .name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--sand); letter-spacing: -0.01em;
}
.trust-item .meta { font-size: 12px; color: var(--stone-400); }
@media (max-width: 900px) {
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ==========================================================================
   Pillars (3 Säulen)
   ========================================================================== */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--sand-200);
  border: 1px solid var(--sand-200);
}
.pillar {
  background: var(--sand-100);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  min-height: 480px;
  transition: background 0.3s;
}
.pillar:hover { background: var(--sand); }
.pillar .num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--copper); margin-bottom: 32px; }
.pillar h3 { font-size: 32px; margin-bottom: 16px; }
.pillar .funding {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 20px;
}
.pillar p { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.pillar ul { list-style: none; padding: 0; margin: 0 0 0 0; margin-top: auto; }
.pillar li {
  padding: 12px 0;
  border-top: 1px solid var(--sand-200);
  font-size: 14px; color: var(--stone-600);
  display: flex; gap: 12px;
}
.pillar li::before { content: "—"; color: var(--copper); }
.pillar .arrow {
  margin-top: 24px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--anthracite);
  display: flex; align-items: center; gap: 8px;
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
}

/* ==========================================================================
   Manifest (Anthracite Block)
   ========================================================================== */
.manifest {
  background: var(--anthracite);
  color: var(--sand);
  border-top: none;
}
.manifest .section-head h2 { color: var(--sand); }
.manifest .section-head p { color: var(--stone-400); }
.manifest h2 em { color: var(--copper); }
.manifest-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .manifest-grid { grid-template-columns: 1fr; gap: 48px; } }
.manifest-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35; color: var(--sand);
  font-weight: 400;
}
.manifest-quote em { color: var(--copper); font-style: italic; }
.manifest-points { padding-top: 8px; }
.manifest-point { padding: 24px 0; border-bottom: 1px solid rgba(239, 233, 220, 0.12); }
.manifest-point:last-child { border-bottom: none; }
.manifest-point .h { font-family: var(--serif); font-size: 20px; color: var(--sand); margin-bottom: 8px; font-weight: 500; }
.manifest-point .p { font-size: 15px; color: var(--stone-400); line-height: 1.55; }

/* ==========================================================================
   Leistungs-Grid (auf Startseite)
   ========================================================================== */
.leistungen-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--sand-200);
  border: 1px solid var(--sand-200);
}
@media (max-width: 900px) { .leistungen-grid { grid-template-columns: 1fr; } }
.cluster {
  background: var(--sand-100);
  padding: 56px 48px 40px;
  display: flex; flex-direction: column;
}
@media (max-width: 600px) { .cluster { padding: 40px 28px 32px; } }
.cluster-head { margin-bottom: 40px; }
.cluster-num { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--copper); margin-bottom: 20px; display: block; }
.cluster-head h3 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 16px; letter-spacing: -0.02em; }
.cluster-sub { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-400); margin-bottom: 20px; }
.cluster-head p { font-size: 15px; line-height: 1.55; max-width: 460px; }
.services { display: flex; flex-direction: column; }
.service { padding: 22px 0; border-top: 1px solid var(--sand-200); position: relative; display: block; text-decoration: none; color: inherit; transition: background 0.2s; }
.service:hover { background: var(--sand); }
.service:hover .service-name { color: var(--copper); }
.service:last-child { border-bottom: 1px solid var(--sand-200); }
.service.highlight {
  background: var(--sand);
  padding-left: 20px; padding-right: 20px;
  margin-left: -20px; margin-right: -20px;
  border-top-color: var(--copper);
  border-bottom-color: var(--copper) !important;
}
.service.highlight::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--copper);
}
.service-tag {
  display: inline-block;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 8px; padding: 3px 8px; background: rgba(184, 115, 51, 0.1);
}
.service-name { font-family: var(--serif); font-size: 21px; color: var(--anthracite); font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; line-height: 1.25; transition: color 0.2s; }
.service-desc { font-size: 14px; color: var(--stone-600); line-height: 1.55; max-width: 460px; }

/* ==========================================================================
   Förderlogik
   ========================================================================== */
.foerder-visual {
  background: var(--sand-100);
  padding: 64px 56px; margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; position: relative;
}
@media (max-width: 900px) {
  .foerder-visual { grid-template-columns: 1fr; padding: 40px 28px; }
}
.foerder-item { padding: 32px; background: var(--sand-100); display: flex; flex-direction: column; position: relative; }
.foerder-item:not(:last-child)::after {
  content: "+"; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--copper);
  background: var(--sand-100); padding: 4px 8px; z-index: 1;
}
@media (max-width: 900px) { .foerder-item:not(:last-child)::after { display: none; } }
.foerder-item .badge { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--copper); margin-bottom: 16px; }
.foerder-item h4 { font-family: var(--serif); font-size: 22px; color: var(--anthracite); margin-bottom: 12px; letter-spacing: -0.01em; font-weight: 500; }
.foerder-item p { font-size: 14px; line-height: 1.55; color: var(--stone-600); }
.foerder-item .rate { margin-top: 16px; font-family: var(--serif); font-size: 36px; color: var(--anthracite); font-weight: 500; letter-spacing: -0.02em; }
.foerder-item .rate-meta { font-family: var(--sans); font-size: 12px; color: var(--stone-400); }

/* ==========================================================================
   Über René
   ========================================================================== */
.rene { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .rene { grid-template-columns: 1fr; gap: 40px; } }
.rene-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, rgba(15,27,45,0) 60%, rgba(15,27,45,0.4) 100%),
    linear-gradient(150deg, #4a4640 0%, #2a2723 70%);
  position: relative;
}
.rene-photo--has-image { background: var(--anthracite); }
.rene-photo--has-image img { width: 100%; height: 100%; object-fit: cover; }
.rene h2 { margin-bottom: 24px; }
.rene p { font-size: 17px; line-height: 1.65; margin-bottom: 20px; max-width: 580px; }
.rene .signature { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--anthracite); margin-top: 32px; }
.rene .role { font-family: var(--sans); font-size: 13px; color: var(--stone-400); letter-spacing: 0.05em; margin-top: 4px; }
.rene .credentials { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--sand-200); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.credential .num { font-family: var(--serif); font-size: 36px; color: var(--copper); font-weight: 500; letter-spacing: -0.02em; }
.credential .desc { font-size: 13px; color: var(--stone-600); line-height: 1.4; }

/* ==========================================================================
   Cases
   ========================================================================== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }
.case { background: var(--sand-100); padding: 40px 36px; display: flex; flex-direction: column; min-height: 380px; }
.case .industry { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; }
.case h4 { font-family: var(--serif); font-size: 24px; color: var(--anthracite); margin-bottom: 16px; letter-spacing: -0.01em; font-weight: 500; line-height: 1.2; }
.case p { font-size: 15px; line-height: 1.55; flex: 1; }
.case .result { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--sand-200); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.case .result-num { font-family: var(--serif); font-size: 28px; color: var(--anthracite); font-weight: 500; letter-spacing: -0.02em; }
.case .result-label { font-size: 11px; color: var(--stone-400); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }

/* ==========================================================================
   Prozess
   ========================================================================== */
.prozess-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--sand-200);
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
}
@media (max-width: 900px) { .prozess-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .prozess-row { grid-template-columns: 1fr; } }
.prozess-step {
  background: var(--sand);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.prozess-step .step-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--copper); margin-bottom: 16px; }
.prozess-step h4 { font-family: var(--serif); font-size: 22px; color: var(--anthracite); margin-bottom: 12px; line-height: 1.2; font-weight: 500; }
.prozess-step p { font-size: 14px; line-height: 1.5; }
.prozess-step .step-time { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-400); margin-top: auto; padding-top: 16px; }

/* Sales-Page Prozess (5 Schritte) */
.prozess-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--sand-200); border: 1px solid var(--sand-200); margin-top: 64px; }
@media (max-width: 900px) { .prozess-line { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .prozess-line { grid-template-columns: 1fr; } }
.prozess-line .prozess-step { background: var(--sand-100); padding: 32px 24px; min-height: 220px; }
.prozess-line .step-num { font-family: var(--mono); font-size: 11px; color: var(--copper); letter-spacing: 0.1em; margin-bottom: 12px; }
.prozess-line h4 { font-size: 18px; }
.prozess-line p { font-size: 13px; }
.prozess-line .time { margin-top: auto; padding-top: 16px; font-family: var(--mono); font-size: 10px; color: var(--stone-400); letter-spacing: 0.1em; text-transform: uppercase; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--sand-200); padding: 28px 0; cursor: pointer; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif); font-size: 22px;
  color: var(--anthracite); font-weight: 500;
  letter-spacing: -0.01em; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  font-family: var(--sans); font-weight: 400;
  font-size: 28px; color: var(--copper);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 16px; font-size: 16px; line-height: 1.65; }

/* ==========================================================================
   AI Visibility Mock
   ========================================================================== */
.ai-vis-block { background: var(--anthracite); color: var(--sand); padding: 80px 0; }
.ai-vis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .ai-vis-grid { grid-template-columns: 1fr; gap: 40px; } }
.ai-vis-block h2 { color: var(--sand); }
.ai-vis-block p { color: var(--stone-400); }
.ai-vis-card {
  background: rgba(239, 233, 220, 0.04);
  border: 1px solid rgba(239, 233, 220, 0.1);
  padding: 32px; font-family: var(--mono);
}
.ai-vis-card .prompt { font-size: 12px; color: var(--stone-400); margin-bottom: 8px; }
.ai-vis-card .query { color: var(--sand); font-size: 14px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(239, 233, 220, 0.1); }
.ai-vis-card .response { font-family: var(--sans); font-size: 14px; line-height: 1.6; color: var(--sand-200); }
.ai-vis-card .response mark { background: var(--copper); color: var(--anthracite); padding: 2px 6px; font-weight: 600; }
.ai-vis-card .platform-bar { margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(239, 233, 220, 0.1); display: flex; justify-content: space-between; font-size: 11px; color: var(--stone-400); }
.ai-vis-card .platform-bar .platform { color: var(--copper); font-weight: 600; }

/* ==========================================================================
   Pain Points (Sales Page)
   ========================================================================== */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card { background: var(--sand-100); padding: 40px 36px; border-top: 3px solid var(--copper); }
.pain-card .num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--copper); margin-bottom: 24px; }
.pain-card h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 16px; line-height: 1.3; }
.pain-card p { font-size: 15px; line-height: 1.55; }

/* ==========================================================================
   Was wir tun (Sales Page)
   ========================================================================== */
.what { padding: 120px 0; background: var(--sand-100); }
.what-blocks { display: grid; gap: 24px; margin-top: 56px; }
.what-block { background: var(--sand); padding: 48px; display: grid; grid-template-columns: 80px 1fr; gap: 48px; align-items: start; }
@media (max-width: 720px) { .what-block { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; } }
.what-num { font-family: var(--serif); font-style: italic; font-size: 64px; color: var(--copper); font-weight: 400; line-height: 0.9; }
.what-block h3 { margin-bottom: 16px; }
.what-block p { font-size: 16px; line-height: 1.6; }
.what-block ul { margin-top: 20px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.what-block li { font-family: var(--sans); font-size: 12px; font-weight: 500; padding: 6px 12px; background: var(--sand-200); color: var(--stone-600); }

/* ==========================================================================
   Outcomes (Sales Page, invertiert)
   ========================================================================== */
.outcome { padding: 120px 0; background: var(--anthracite); color: var(--sand); }
.outcome h2 { color: var(--sand); }
.outcome p { color: var(--stone-400); }
.outcome-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(239, 233, 220, 0.1); border: 1px solid rgba(239, 233, 220, 0.1); }
@media (max-width: 720px) { .outcome-grid { grid-template-columns: 1fr; } }
.outcome-item { background: var(--anthracite); padding: 40px; }
.outcome-item .num { font-family: var(--serif); font-size: 56px; color: var(--copper); font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin-bottom: 16px; }
.outcome-item h4 { color: var(--sand); margin-bottom: 8px; font-size: 20px; }
.outcome-item p { font-size: 14px; line-height: 1.55; color: var(--stone-400); }

/* ==========================================================================
   Förder-Rechner (Sales Page)
   ========================================================================== */
.foerder-calc { background: var(--sand-100); padding: 56px; margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .foerder-calc { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; } }
.calc-table { width: 100%; }
.calc-row { display: grid; grid-template-columns: 1fr auto; padding: 14px 0; border-bottom: 1px solid var(--sand-200); font-family: var(--sans); font-size: 15px; }
.calc-row.headline { border-bottom: 2px solid var(--anthracite); padding-top: 0; font-weight: 600; }
.calc-row.discount { color: var(--copper); font-weight: 600; }
.calc-row.total { border-bottom: none; padding-top: 24px; margin-top: 8px; border-top: 2px solid var(--anthracite); font-family: var(--serif); font-size: 28px; color: var(--anthracite); font-weight: 500; }
.calc-value { font-variant-numeric: tabular-nums; text-align: right; }
.calc-disclaimer { margin-top: 24px; font-size: 12px; color: var(--stone-400); line-height: 1.5; }

/* ==========================================================================
   Case Block (Sales Page)
   ========================================================================== */
.case-block { background: var(--sand); padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; }
@media (max-width: 900px) { .case-block { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; } }
.case-meta { font-family: var(--sans); font-size: 11px; color: var(--copper); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.case-block h3 { font-size: 32px; margin-bottom: 24px; line-height: 1.2; }
.case-block .quote { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--anthracite); border-left: 3px solid var(--copper); padding-left: 24px; margin: 32px 0; }
.case-block .quote-attr { margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--stone-400); display: block; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.case-stat .num { font-family: var(--serif); font-size: 40px; color: var(--anthracite); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 4px; }
.case-stat .label { font-size: 11px; color: var(--stone-400); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* ==========================================================================
   Disqualifikation
   ========================================================================== */
.disqualify-block { background: var(--sand-100); padding: 56px; border-left: 3px solid var(--copper); max-width: 880px; margin-top: 48px; }
@media (max-width: 720px) { .disqualify-block { padding: 40px 28px; } }
.disqualify-block h3 { font-size: 24px; margin-bottom: 32px; }
.disqualify-list { list-style: none; padding: 0; }
.disqualify-list li { padding: 18px 0; border-bottom: 1px solid var(--sand-200); font-size: 16px; line-height: 1.55; color: var(--stone-600); display: grid; grid-template-columns: 60px 1fr; gap: 16px; }
.disqualify-list li:last-child { border-bottom: none; }
.disqualify-list li::before { content: "Nicht"; font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--copper); align-self: start; margin-top: 3px; }
.disqualify-block .footnote { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--sand-200); font-style: italic; font-size: 14px; color: var(--stone-600); }

/* ==========================================================================
   CTA Final
   ========================================================================== */
.cta-final { padding: 120px 0; background: var(--anthracite); color: var(--sand); position: relative; overflow: hidden; border-top: none; }
.cta-final::before {
  content: ""; position: absolute; top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18) 0%, transparent 70%);
}
.cta-final .wrap { position: relative; z-index: 1; }
.cta-final h2 { color: var(--sand); font-size: clamp(36px, 5vw, 64px); max-width: 900px; margin-bottom: 32px; }
.cta-final h2 em { color: var(--copper); }
.cta-final p { color: var(--stone-400); font-size: 19px; max-width: 600px; margin-bottom: 48px; }
.cta-final-row { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.cta-final .btn-primary { background: var(--copper); color: var(--sand) !important; padding: 20px 36px; font-size: 16px; }
.cta-final .btn-primary:hover { background: var(--sand); color: var(--anthracite) !important; }
.cta-final .alt { color: var(--stone-400); font-size: 14px; }
.cta-final .alt a { color: var(--copper); border-bottom: 1px solid var(--copper); padding-bottom: 2px; }

/* ==========================================================================
   Sticky CTA (Sales Page)
   ========================================================================== */
.sticky-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  background: var(--copper); color: var(--sand);
  padding: 14px 24px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  box-shadow: 0 20px 50px -20px rgba(15, 27, 45, 0.4);
  transition: all 0.25s;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  text-decoration: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--anthracite); transform: translateY(-2px); }
@media (max-width: 600px) { .sticky-cta { display: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--stone-800); color: var(--stone-400); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(239, 233, 220, 0.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--stone-400); max-width: 300px; }
.footer-col h5 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--sand-200); transition: color 0.2s; }
.footer-col a:hover { color: var(--copper); }

.footer-social .social-icons {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.footer-social .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--sand-200);
  background: rgba(239, 233, 220, 0.05);
  border: 1px solid rgba(239, 233, 220, 0.12);
  transition: all 0.2s ease;
}
.footer-social .social-icons a:hover {
  color: var(--anthracite);
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
}
.footer-social .social-icons svg {
  width: 18px; height: 18px;
}

/* ==========================================================================
   Kontakt-Formular
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

.contact-form-wrap { position: relative; }
.contact-form-title { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 12px; letter-spacing: -0.02em; }
.contact-form-sub { font-size: 16px; color: var(--stone-600); margin-bottom: 40px; max-width: 480px; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; flex-direction: column; }
.form-row--cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 600px) { .form-row--cols { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 8px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--sans); font-size: 16px;
  color: var(--anthracite);
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--copper);
  background: white;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--stone-400); opacity: 1; }
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--copper);
  background: rgba(184, 115, 51, 0.04);
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--stone-600);
  border-bottom: 1.5px solid var(--stone-600);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.form-field select { padding-right: 40px; cursor: pointer; }

/* Honeypot — visuell verstecken, aber für Screenreader/Bots im DOM */
.form-field-honey {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap;
  border: 0;
}

.checkbox-field {
  display: flex; gap: 12px; align-items: flex-start;
  cursor: pointer;
  font-size: 14px; line-height: 1.5;
  color: var(--stone-600);
}
.checkbox-field input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--sand-200);
  background: var(--sand-100);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 2px;
}
.checkbox-field input[type="checkbox"]:checked {
  background: var(--anthracite);
  border-color: var(--anthracite);
}
.checkbox-field input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border-right: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
  transform: rotate(45deg);
}
.checkbox-field a { color: var(--anthracite); border-bottom: 1px solid var(--copper); }
.checkbox-field a:hover { color: var(--copper); }

.form-row--actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 16px;
}
.form-meta { font-size: 12px; color: var(--stone-400); line-height: 1.55; max-width: 340px; }
.form-meta strong { color: var(--anthracite); font-weight: 600; }

#cf-submit {
  position: relative;
  min-width: 200px;
  justify-content: center;
}
#cf-submit[disabled] { opacity: 0.6; cursor: wait; }
#cf-submit .cf-submit-loading { display: inline-flex; }

.form-feedback {
  margin-top: 8px;
  padding: 16px 20px;
  background: rgba(184, 115, 51, 0.08);
  border-left: 3px solid var(--copper);
  font-size: 14px; line-height: 1.5;
  color: var(--copper-dark);
}
.form-feedback ul { list-style: none; padding: 0; margin: 0; }
.form-feedback li + li { margin-top: 4px; }

/* Success-State */
.contact-form-success { padding-top: 24px; }
.contact-success-card {
  background: var(--anthracite);
  color: var(--sand);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.contact-success-card::before {
  content: "";
  position: absolute; top: -100px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18), transparent 70%);
}
.contact-success-card .eyebrow { color: var(--copper); }
.contact-success-card h3 {
  color: var(--sand); font-size: clamp(28px, 3.5vw, 40px);
  margin: 16px 0 24px; font-weight: 500;
}
.contact-success-card h3 em { color: var(--copper); }
.contact-success-card p { color: var(--stone-400); font-size: 16px; line-height: 1.6; max-width: 480px; }
.contact-success-meta { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(239, 233, 220, 0.12); font-size: 13px !important; }
.contact-success-meta a { color: var(--copper); border-bottom: 1px solid var(--copper); }

/* Aside (Direktkontakt) */
.contact-aside {
  background: var(--sand-100);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  position: sticky; top: 100px;
}
@media (max-width: 900px) { .contact-aside { position: static; padding: 40px 32px; } }
.contact-aside-block { padding: 24px 0; border-bottom: 1px solid var(--sand-200); }
.contact-aside-block:first-child { padding-top: 0; }
.contact-aside-block:last-child { padding-bottom: 0; border-bottom: none; }
.contact-aside-block h3 { font-size: 22px; margin-bottom: 16px; }
.contact-aside-block h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone-400); margin-bottom: 12px;
}
.contact-aside-block p { font-size: 14px; line-height: 1.65; color: var(--stone-600); }
.aside-person { margin-bottom: 20px; }
.aside-person strong { color: var(--anthracite); font-weight: 600; }
.aside-contact { display: flex; flex-direction: column; gap: 12px; }
.aside-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--anthracite);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.2s;
}
.aside-link:hover { color: var(--copper); }
.aside-link svg { flex-shrink: 0; color: var(--copper); }
.contact-aside-trust ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-aside-trust li {
  font-size: 13px; color: var(--anthracite); font-weight: 500;
  padding-left: 18px; position: relative;
}
.contact-aside-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px;
  background: var(--copper);
  border-radius: 50%;
  transform: translateY(-50%);
}
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; }
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: var(--stone-400); }
.footer-bottom .legal a:hover { color: var(--copper); }

/* ==========================================================================
   Content (Single Page / Post body content)
   ========================================================================== */
.page-content { padding: 140px 0 100px; }
.page-content .wrap-narrow > * + * { margin-top: 24px; }
.page-content h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 32px; }
.page-content h2 { font-size: clamp(28px, 3.5vw, 40px); margin-top: 64px; }
.page-content h3 { margin-top: 48px; }
.page-content p { font-size: 18px; line-height: 1.7; }
.page-content ul, .page-content ol { padding-left: 24px; font-size: 18px; line-height: 1.7; }
.page-content blockquote { font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.4; border-left: 3px solid var(--copper); padding-left: 24px; margin: 32px 0; }
.page-content a { color: var(--anthracite); border-bottom: 1px solid var(--copper); }
.page-content a:hover { color: var(--copper); }

/* ==========================================================================
   Beratungs-Themen-Grid
   ========================================================================== */
.beratung-themen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-200);
  border: 1px solid var(--sand-200);
}
@media (max-width: 900px) { .beratung-themen { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .beratung-themen { grid-template-columns: 1fr; } }
.thema {
  background: var(--sand-100);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.thema:hover { background: var(--sand); transform: translateY(-3px); }
.thema .thema-num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--copper);
  margin-bottom: 24px;
}
.thema h3 {
  font-size: 22px; margin-bottom: 12px;
  line-height: 1.25; letter-spacing: -0.01em;
}
.thema p {
  font-size: 14px; line-height: 1.6;
  color: var(--stone-600);
  flex: 1;
}
.thema .thema-meta {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--sand-200);
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.thema-tag {
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--copper);
  padding: 4px 10px;
  background: rgba(184, 115, 51, 0.08);
}

/* ==========================================================================
   Beratungs-Deliverables — "Was Sie aus der Beratung mitnehmen"
   ========================================================================== */
.deliverables-section {
  padding: 120px 0;
  background: var(--anthracite);
  color: var(--sand);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.deliverables-section::before {
  content: ""; position: absolute;
  top: 50%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
  transform: translateY(-50%);
}
.deliverables-section .section-head { position: relative; z-index: 1; }
.deliverables-section .section-head h2 { color: var(--sand); }
.deliverables-section .section-head h2 em { color: var(--copper); }
.deliverables-section .section-head p { color: var(--stone-400); }

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative; z-index: 1;
}
@media (max-width: 720px) { .deliverables-grid { grid-template-columns: 1fr; } }

.deliverable {
  background: rgba(239, 233, 220, 0.04);
  border: 1px solid rgba(239, 233, 220, 0.1);
  padding: 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: start;
  transition: background 0.3s, transform 0.4s;
}
.deliverable:hover {
  background: rgba(239, 233, 220, 0.07);
  transform: translateY(-3px);
}
@media (max-width: 600px) {
  .deliverable { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
}
.deliverable-icon {
  width: 60px; height: 60px;
  background: rgba(184, 115, 51, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}
.deliverable-icon svg { width: 28px; height: 28px; }
.deliverable h4 {
  font-family: var(--serif); font-size: 22px;
  color: var(--sand); margin-bottom: 12px;
  letter-spacing: -0.01em; font-weight: 500;
  line-height: 1.25;
}
.deliverable p {
  font-size: 14px; line-height: 1.6;
  color: var(--stone-400);
}
.deliverable .format {
  margin-top: 16px;
  font-family: var(--mono); font-size: 11px;
  color: var(--copper);
  letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 6px;
}
.deliverable .format::before {
  content: ""; width: 6px; height: 6px;
  background: var(--copper); border-radius: 50%;
}

/* Beratungs-Methode-Block */
.methode {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(239, 233, 220, 0.1);
  border: 1px solid rgba(239, 233, 220, 0.1);
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .methode { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .methode { grid-template-columns: 1fr; } }
.methode-step {
  background: var(--anthracite);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 200px;
}
.methode-step .roman {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--copper);
  margin-bottom: 18px;
}
.methode-step h4 {
  color: var(--sand); font-size: 18px;
  margin-bottom: 10px;
}
.methode-step p {
  font-size: 13px; line-height: 1.55;
  color: var(--stone-400);
}

/* ==========================================================================
   Animations — Foundation
   ========================================================================== */

/* Scroll-Reveal: alles im Hero und beim Scroll faden auf */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger-Children: jedes Kind faded mit 100ms Versatz */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 600ms; }

/* Hero-Choreography — sequenzielles Reveal der Headline-Bestandteile */
.hero-choreo > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-choreo.is-active > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.hero-choreo.is-active > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 350ms; }
.hero-choreo.is-active > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 700ms; }
.hero-choreo.is-active > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 950ms; }

.headline-line {
  display: block;
  overflow: hidden;
}
.headline-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.hero-choreo.is-active .headline-word { transform: translateY(0); }
.hero-choreo.is-active .headline-word:nth-child(1) { transition-delay: 200ms; }
.hero-choreo.is-active .headline-word:nth-child(2) { transition-delay: 320ms; }
.hero-choreo.is-active .headline-word:nth-child(3) { transition-delay: 440ms; }
.hero-choreo.is-active .headline-word:nth-child(4) { transition-delay: 560ms; }
.hero-choreo.is-active .headline-word:nth-child(5) { transition-delay: 680ms; }
.hero-choreo.is-active .headline-word:nth-child(6) { transition-delay: 800ms; }
.hero-choreo.is-active .headline-word:nth-child(7) { transition-delay: 920ms; }

/* Counter — Vorbereitung */
[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   AI-Visibility-Widget (Hero)
   ========================================================================== */
.hero-ai-widget {
  background: var(--anthracite);
  color: var(--sand);
  padding: 28px 28px 24px;
  font-family: var(--mono);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -30px rgba(15, 27, 45, 0.4);
}
.hero-ai-widget::before {
  content: "";
  position: absolute; top: -100px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.aiw-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(239, 233, 220, 0.12);
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone-400);
  position: relative;
  z-index: 1;
}
.aiw-platform {
  display: flex; align-items: center; gap: 8px;
  color: var(--copper);
  font-weight: 600;
  transition: opacity 0.4s;
}
.aiw-platform .live-dot {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  animation: bm-pulse 1.6s ease-in-out infinite;
}
.aiw-timestamp { opacity: 0.6; }

.aiw-prompt-label {
  font-size: 11px; color: var(--stone-400);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.aiw-prompt {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(239, 233, 220, 0.08);
  min-height: 38px;
}
.aiw-response {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--sand-200);
  flex: 1;
  position: relative;
  z-index: 1;
}
.aiw-response .highlight {
  background: var(--copper);
  color: var(--anthracite);
  padding: 2px 6px;
  font-weight: 600;
}
.aiw-response .cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--copper);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: bm-blink 0.8s infinite;
}
@keyframes bm-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.aiw-tabs {
  display: flex; gap: 4px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(239, 233, 220, 0.08);
}
.aiw-tab {
  flex: 1;
  height: 3px;
  background: rgba(239, 233, 220, 0.12);
  transition: background 0.3s;
  border-radius: 0;
}
.aiw-tab.is-active {
  background: var(--copper);
}

/* ==========================================================================
   Stimme von René — Audio-Persönlichkeit-Sektion
   ========================================================================== */
.voice-section {
  background: var(--anthracite);
  color: var(--sand);
  padding: 120px 0;
  border-top: none;
}
.voice-section .section-head h2 { color: var(--sand); }
.voice-section .section-head h2 em { color: var(--copper); }
.voice-section .section-head p { color: var(--stone-400); }

.voice-card {
  margin-top: 56px;
  background: rgba(239, 233, 220, 0.04);
  border: 1px solid rgba(239, 233, 220, 0.1);
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 720px) {
  .voice-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
}
.voice-play {
  width: 100px; height: 100px;
  background: var(--copper);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  color: var(--anthracite);
}
.voice-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  opacity: 0;
  animation: bm-ring 2s ease-out infinite;
}
@keyframes bm-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.voice-play:hover { background: var(--sand); transform: scale(1.05); }
.voice-play svg { width: 32px; height: 32px; margin-left: 4px; }

.voice-content { display: flex; flex-direction: column; gap: 16px; }
.voice-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper);
}
.voice-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--sand);
}
.voice-attr {
  font-size: 13px; color: var(--stone-400);
}
.voice-waveform {
  display: flex; align-items: center; gap: 3px;
  margin-top: 16px;
  height: 32px;
}
.voice-waveform .bar {
  width: 3px;
  background: var(--copper);
  border-radius: 2px;
  opacity: 0.6;
  animation: bm-wave 1.2s ease-in-out infinite;
}
.voice-waveform.is-paused .bar {
  animation-play-state: paused;
  opacity: 0.25;
}
@keyframes bm-wave {
  0%, 100% { height: 8px; }
  50% { height: 28px; }
}
.voice-waveform .bar:nth-child(1)  { animation-delay: 0.0s; height: 10px; }
.voice-waveform .bar:nth-child(2)  { animation-delay: 0.1s; height: 18px; }
.voice-waveform .bar:nth-child(3)  { animation-delay: 0.2s; height: 24px; }
.voice-waveform .bar:nth-child(4)  { animation-delay: 0.3s; height: 14px; }
.voice-waveform .bar:nth-child(5)  { animation-delay: 0.4s; height: 22px; }
.voice-waveform .bar:nth-child(6)  { animation-delay: 0.5s; height: 12px; }
.voice-waveform .bar:nth-child(7)  { animation-delay: 0.6s; height: 28px; }
.voice-waveform .bar:nth-child(8)  { animation-delay: 0.7s; height: 16px; }
.voice-waveform .bar:nth-child(9)  { animation-delay: 0.8s; height: 20px; }
.voice-waveform .bar:nth-child(10) { animation-delay: 0.9s; height: 10px; }
.voice-waveform .bar:nth-child(11) { animation-delay: 1.0s; height: 24px; }
.voice-waveform .bar:nth-child(12) { animation-delay: 1.1s; height: 14px; }
.voice-waveform .bar:nth-child(13) { animation-delay: 0.05s; height: 22px; }
.voice-waveform .bar:nth-child(14) { animation-delay: 0.15s; height: 18px; }
.voice-waveform .bar:nth-child(15) { animation-delay: 0.25s; height: 28px; }
.voice-waveform .bar:nth-child(16) { animation-delay: 0.35s; height: 14px; }
.voice-waveform .bar:nth-child(17) { animation-delay: 0.45s; height: 20px; }
.voice-waveform .bar:nth-child(18) { animation-delay: 0.55s; height: 10px; }

/* Trust-Strip — sticky-Variante beim Scrollen */
.trust-strip.is-sticky-hint {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: transform 0.4s ease;
}

/* Hover-Lift für Pillars/Cases */
.pillar, .case, .service {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.pillar:hover, .case:hover { transform: translateY(-4px); }

/* ==========================================================================
   Prefers Reduced Motion — alle Animationen abschalten
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .hero-choreo > *, .headline-word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .live-dot, .aiw-response .cursor, .voice-play::before, .voice-waveform .bar {
    animation: none !important;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.anchor-offset { scroll-margin-top: 80px; }
.screen-reader-text { position: absolute; left: -9999px; }
