/* ============================================================
   Timo Clasen — Strukturpartner · Landing Page
   Design-System (offiziell): Navy #022D75 + Grün #008037,
   kühle Neutraltöne, Schrift Raleway.
   ============================================================ */

/* Lokal gehostete Schriften (DSGVO – keine Google-Fonts-CDN) */
@import url('fonts/fonts.css');

:root {
  /* Navy-Rampe – Kern #022D75 */
  --navy-900: #011a4d;
  --navy-800: #022D75;
  --navy-700: #0d3585;
  --navy-600: #1a408e;

  --ink: #141a24;          /* Fließtext (neutral-900) */
  --paper: #f7f9fc;        /* Seitenhintergrund (neutral-50) */
  --paper-2: #eef1f6;      /* abgesetzte Fläche (neutral-100) */
  --paper-card: #ffffff;   /* Karten (weiß) */
  --white: #FFFFFF;

  /* Akzent = Grün (Design-System) */
  --accent: #008037;
  --accent-2: #006a2d;
  --accent-soft: #f0faf5;

  --muted: #4e5a70;        /* neutral-600 */
  --muted-2: #6f7d94;      /* neutral-500 */
  --line: #e0e5ee;         /* neutral-200 */
  --line-strong: #c8d0dd;  /* neutral-300 */
  --line-navy: rgba(255,255,255,0.14);
  --good: #1f9d76;         /* success-500 */
  --bad: #e0483b;          /* danger-500 */

  --font-display: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-sans: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(2,45,117,0.06), 0 2px 8px rgba(2,45,117,0.05);
  --shadow: 0 4px 14px rgba(2,45,117,0.08), 0 18px 40px -22px rgba(2,45,117,0.22);
  --shadow-lg: 0 30px 70px -30px rgba(2,45,117,0.42);

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -0.015em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2); white-space: nowrap;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.on-navy { color: var(--accent); }
.eyebrow.center { justify-content: center; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 52px); margin-top: 18px; }
.section-head .lead { margin-top: 18px; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); text-wrap: balance; }

.kicker-num { font-family: var(--font-display); font-weight: 700; color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  padding: 16px 26px; border-radius: 999px; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; cursor: pointer; text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--accent); color: #ffffff; box-shadow: 0 8px 22px -8px rgba(0,128,55,0.7); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,128,55,0.75); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy-800); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px var(--line-navy); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 19px 34px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy-800); border-bottom: 2px solid var(--accent); padding-bottom: 3px; transition: gap .18s ease; }
.btn-link:hover { gap: 13px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(247,249,252,0.88); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(2,45,117,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; border-radius: 9px; background: var(--navy-800); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; flex: none; }
.brand-mark span { color: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; }
.brand-sub { font-size: 11.5px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink); padding: 9px 14px; border-radius: 8px; transition: background .15s, color .15s; white-space: nowrap; }
.nav a:hover { background: rgba(17,27,83,0.06); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--navy-800); }
.menu-toggle:hover { background: rgba(17,27,83,0.06); }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(11,19,64,0.4); backdrop-filter: blur(2px); z-index: 70; opacity: 0; pointer-events: none; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 80;
  background: var(--paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  display: flex; flex-direction: column; padding: 20px;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a { font-family: var(--font-display); font-weight: 600; font-size: 21px; padding: 14px 12px; border-radius: 10px; border-bottom: 1px solid var(--line); }
.drawer nav a:active { background: rgba(17,27,83,0.06); }
.drawer .btn { margin-top: 22px; }
.drawer-contact { margin-top: auto; padding-top: 18px; font-size: 14px; color: var(--muted); }
.drawer-contact a { display: block; font-weight: 600; color: var(--navy-800); margin-top: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 120px; padding-bottom: clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 30%, transparent 75%); opacity: .55; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--paper-card); border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 7px 7px 16px; font-size: 13.5px; font-weight: 600; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(47,125,91,0.16); }
.hero-badge b { background: var(--navy-800); color: #fff; font-weight: 600; font-size: 12px; padding: 4px 11px; border-radius: 999px; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); margin-top: 22px; letter-spacing: -0.025em; }
.hero h1 .accent { color: var(--accent-2); }
.hero h1 .nb { white-space: nowrap; }
.hero-sub { margin-top: 24px; font-size: clamp(17px, 1.7vw, 21px); color: var(--muted); max-width: 540px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-reassure { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 18px; font-size: 14.5px; color: var(--muted); }
.hero-reassure span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.hero-reassure svg { width: 17px; height: 17px; color: var(--good); flex: none; }

.hero-visual { position: relative; }
.hero-photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--paper-2); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,19,64,0.18)); }
.hero-float {
  position: absolute; background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 16px; display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-float-name { left: -8px; bottom: 24px; }
.hero-float .ava { width: 42px; height: 42px; border-radius: 10px; background: var(--navy-800); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; flex: none; }
.hero-float .ava span { color: var(--accent); }
.hero-float-name .t1 { font-weight: 700; font-size: 15px; font-family: var(--font-display); }
.hero-float-name .t2 { font-size: 12.5px; color: var(--muted); }
.hero-float-stat { right: -10px; top: 30px; flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 18px; }
.hero-float-stat .big { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--navy-800); line-height: 1; }
.hero-float-stat .big small { color: var(--accent-2); font-size: 20px; }
.hero-float-stat .lbl { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ---------- trust logo strip (Auto-Infinite-Marquee) ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); overflow: hidden; }
.trust-inner { display: flex; align-items: center; gap: clamp(20px, 4vw, 56px); padding-block: 22px; }
.trust-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); flex: none; }

/* Laufband: Maske für weiche Ränder, zwei identische Logo-Sätze,
   die per Translate um -50 % endlos durchlaufen. */
.trust-marquee {
  position: relative; flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trust-track { display: flex; width: max-content; animation: trustScroll 32s linear infinite; }
.trust-logos { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 26px); padding-right: clamp(14px, 2.6vw, 26px); flex: none; }
/* Einheitliche Chip-Badges: gleiche Höhe, Rahmen, Typo – ruhiges, konsistentes Logo-Band. */
.trust-logos .tl {
  display: inline-flex; align-items: center; height: 40px; padding: 0 18px;
  border: 1px solid var(--line-strong); border-radius: 999px; background: var(--paper-card);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy-800); white-space: nowrap; flex: none;
  transition: border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.trust-logos .tl.thin { font-weight: 600; font-size: 13px; letter-spacing: 0.1em; }
.trust-marquee:hover .tl { border-color: var(--line); }
.trust-logos .tl:hover { border-color: var(--accent); color: var(--accent-2); box-shadow: 0 3px 12px rgba(2,45,117,0.08); }
.trust-marquee:hover .trust-track { animation-play-state: paused; }
@keyframes trustScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; } }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 50px; }
.pain { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-card); transition: transform .2s, box-shadow .2s, border-color .2s; }
.pain:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.pain-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; flex: none; }
.pain-ic svg { width: 22px; height: 22px; }
.pain p { font-size: 16.5px; font-weight: 500; color: var(--ink); }
.pain.span2 { grid-column: span 2; background: var(--navy-800); border-color: var(--navy-800); color: #fff; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.pain.span2 .ptext { display: flex; gap: 16px; align-items: center; }
.pain.span2 p { color: #fff; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); font-weight: 600; }
.pain.span2 .pain-ic { background: var(--accent-soft); color: var(--accent-2); }

/* ============================================================
   BUYER TYPES (Käufertypen)
   ============================================================ */
.buyers { background: var(--paper); }
.buyers .section-head { max-width: 860px; }
.buyers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
.buyer { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.buyer:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.buyer::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.buyer-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--navy-800); color: #ffffff; display: grid; place-items: center; margin-bottom: 18px; }
.buyer-ic svg { width: 25px; height: 25px; }
.buyer h3 { font-size: 20px; hyphens: auto; overflow-wrap: break-word; }
.buyer .role { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2); margin-top: 6px; }
.buyer p { font-size: 15px; color: var(--muted); margin-top: 12px; }

/* ============================================================
   BENEFITS / Leistungen
   ============================================================ */
.benefits { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.benefits .hero-grid-bg { mask-image: radial-gradient(ellipse 80% 60% at 30% 0%, #000 20%, transparent 70%); opacity: .5;
  background-image: linear-gradient(var(--line-navy) 1px, transparent 1px), linear-gradient(90deg, var(--line-navy) 1px, transparent 1px); }
.benefits .section-head h2, .benefits .eyebrow { color: #fff; }
.benefits .section-head .lead { color: rgba(255,255,255,0.66); }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; position: relative; z-index: 2; }
.ben-card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid var(--line-navy); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; transition: transform .22s, border-color .22s, background .22s; }
.ben-card:hover { transform: translateY(-5px); border-color: rgba(0,128,55,0.5); background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)); }
.ben-num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--accent); letter-spacing: 0.1em; }
.ben-ic { width: 56px; height: 56px; border-radius: 15px; background: var(--accent); color: #ffffff; display: grid; place-items: center; margin: 0 0 22px; }
.ben-ic svg { width: 28px; height: 28px; }
.ben-card h3 { font-size: 23px; margin-bottom: 8px; }
@media (min-width: 761px) { .ben-card h3 { min-height: calc(2 * 23px * 1.04); display: flex; align-items: flex-start; }
  /* 3. Kachel-Titel "Sparring & Umsetzung" zweizeilig, damit er zu den anderen passt */
  .ben-grid .ben-card:nth-child(3) h3 { max-width: 9ch; } }
.ben-promise { color: var(--accent); font-weight: 600; font-size: 15px; margin-bottom: 18px; min-height: 2.5em; }
.ben-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid var(--line-navy); padding-top: 20px; }
.ben-list li { display: flex; gap: 11px; font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.4; }
.ben-list svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 1px; }

/* ============================================================
   FUNDING / 80 %
   ============================================================ */
.funding { background: var(--paper); }
.funding-card { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--paper-card); }
.funding-main { padding: clamp(32px, 4vw, 56px); }
.funding-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: var(--accent-2); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.funding-main h2 { font-size: clamp(28px, 3.6vw, 44px); margin-top: 20px; }
.funding-main h2 em { font-style: normal; color: var(--navy-800); }
.funding-main p { margin-top: 18px; color: var(--muted); font-size: 17px; max-width: 460px; }
.funding-checks { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.funding-checks div { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; font-weight: 500; }
.funding-checks svg { width: 20px; height: 20px; color: var(--good); flex: none; margin-top: 2px; }
.funding-note { margin-top: 26px; font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.funding-side { background: var(--navy-800); color: #fff; padding: clamp(32px,4vw,52px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; }
.funding-side .ring { font-family: var(--font-display); font-weight: 800; font-size: clamp(72px, 12vw, 120px); line-height: 0.9; letter-spacing: -0.04em; }
.funding-side .ring small { font-size: 0.42em; color: var(--accent); }
.funding-side .ring-lbl { font-size: 16px; color: rgba(255,255,255,0.78); margin-top: 8px; max-width: 240px; }
.funding-badges-row { margin-top: 30px; display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.funding-badges-row img { height: 76px; width: auto; background: #fff; border-radius: 10px; padding: 8px; }

/* ============================================================
   PROCESS / Ablauf
   ============================================================ */
.process { background: var(--white); }
.process-wrap { margin-top: 56px; position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.process-line { position: absolute; top: 38px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); z-index: 0; }
.pstep { position: relative; z-index: 1; }
.pstep-num { width: 76px; height: 76px; border-radius: 20px; background: var(--paper-card); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--navy-800); position: relative; }
.pstep-num::after { content: attr(data-tag); position: absolute; bottom: -9px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #ffffff; font-family: var(--font-sans); font-weight: 700; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.pstep h3 { font-size: 22px; margin-top: 28px; }
.pstep p { margin-top: 12px; color: var(--muted); font-size: 16px; }
/* Desktop: Schritt 2 zentriert, Schritt 3 rechtsbündig – für einen ruhigen, gestaffelten Ablauf. */
@media (min-width: 761px) {
  .process-steps .pstep:nth-child(3) { text-align: center; }
  .process-steps .pstep:nth-child(3) .pstep-num { margin-inline: auto; }
  .process-steps .pstep:nth-child(4) { text-align: right; }
  .process-steps .pstep:nth-child(4) .pstep-num { margin-left: auto; }
}
.process-foot { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.process-chip { display: inline-flex; align-items: center; gap: 9px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px; font-size: 14.5px; font-weight: 600; color: var(--navy-800); }
.process-chip svg { width: 17px; height: 17px; color: var(--accent-2); }

/* ============================================================
   ABOUT / Wer ich bin
   ============================================================ */
.about { background: var(--paper); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.about-visual { position: relative; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badges { position: absolute; right: -14px; bottom: -18px; display: flex; gap: 10px; background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; }
.about-badges img { height: 64px; width: auto; border-radius: 7px; }
.about h2 { font-size: clamp(28px, 4vw, 46px); margin-top: 18px; }
.about-lead { margin-top: 22px; font-size: 18.5px; color: var(--ink); font-weight: 500; }
.about p.body { margin-top: 16px; color: var(--muted); font-size: 16.5px; }
.about-cred { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-cred .cred { display: flex; gap: 13px; align-items: flex-start; }
.about-cred .cred svg { width: 22px; height: 22px; color: var(--accent-2); flex: none; margin-top: 2px; }
.about-cred .cred b { font-weight: 700; }
.about-cred .cred span { color: var(--muted); }
.about-listed { margin-top: 26px; padding: 18px 20px; border-radius: var(--radius); background: var(--paper-card); border: 1px solid var(--line-strong); border-left: 4px solid var(--accent); font-size: 15px; }
.about-listed b { color: var(--navy-800); }

/* ============================================================
   FIT / Für wen — Nicht für wen
   ============================================================ */
.fit { background: var(--white); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.fit-col { border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); border: 1px solid var(--line); }
.fit-col.yes { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.fit-col.no { background: var(--paper-card); }
.fit-col h3 { font-size: 22px; display: flex; align-items: center; gap: 12px; }
.fit-col.yes h3 .tic, .fit-col.no h3 .tic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.fit-col.yes h3 .tic { background: rgba(0,128,55,0.2); color: var(--accent); }
.fit-col.no h3 .tic { background: var(--paper-2); color: var(--bad); }
.fit-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 15px; }
.fit-list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.45; }
.fit-list li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.fit-col.yes .fit-list li { color: rgba(255,255,255,0.86); }
.fit-col.yes .fit-list svg { color: var(--accent); }
.fit-col.no .fit-list li { color: var(--muted); }
.fit-col.no .fit-list svg { color: var(--muted-2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--paper); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.tcard { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tstars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 18px; }
.tstars svg { width: 18px; height: 18px; }
.tcard blockquote { margin: 0; font-size: 17.5px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.tcard .quote-mark { font-family: var(--font-display); font-size: 56px; line-height: 0.4; color: var(--accent); opacity: .35; height: 24px; }
.tperson { margin-top: 24px; display: flex; align-items: center; gap: 13px; }
.tperson .ava { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-800); color: var(--accent); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; flex: none; }
.tperson > div { min-width: 0; }
.tperson .pn { font-weight: 700; font-size: 15.5px; line-height: 1.25; }
.tperson .pr { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   FINAL CTA / Booking
   ============================================================ */
.final { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.final .hero-grid-bg { background-image: linear-gradient(var(--line-navy) 1px, transparent 1px), linear-gradient(90deg, var(--line-navy) 1px, transparent 1px); mask-image: radial-gradient(ellipse 70% 80% at 80% 50%, #000 10%, transparent 70%); opacity: .6; }
.final-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.final h2 { font-size: clamp(32px, 4.8vw, 56px); margin-top: 20px; }
.final .eyebrow { color: var(--accent); }
.final-sub { margin-top: 20px; font-size: 19px; color: rgba(255,255,255,0.74); max-width: 480px; }
.final-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.final-meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 20px; font-size: 14.5px; color: rgba(255,255,255,0.66); }
.final-meta span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.final-meta svg { width: 17px; height: 17px; color: var(--accent); }
.final-card { background: rgba(255,255,255,0.05); border: 1px solid var(--line-navy); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); }
.final-card h3 { font-size: 21px; }
.final-card .fc-sub { color: rgba(255,255,255,0.6); font-size: 14.5px; margin-top: 6px; }
.fc-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 16px; }
.fc-list li { display: flex; gap: 14px; }
.fc-list .n { width: 30px; height: 30px; border-radius: 9px; background: rgba(0,128,55,0.16); color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: 14px; display: grid; place-items: center; flex: none; }
.fc-list .ft { font-weight: 600; font-size: 15.5px; }
.fc-list .fd { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.final-card .btn { margin-top: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.7); border-top: 1px solid var(--line-navy); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 64px 44px; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,0.55); }
.footer-about { margin-top: 18px; font-size: 14.5px; max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-fund { padding-block: 28px; border-top: 1px solid var(--line-navy); display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-fund img { height: 54px; width: auto; background: #fff; border-radius: 8px; padding: 8px 12px; }
.footer-fund p { font-size: 12.5px; color: rgba(255,255,255,0.55); max-width: 420px; line-height: 1.5; }
.footer-bottom { padding-block: 22px; border-top: 1px solid var(--line-navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(247,249,252,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); display: none; transform: translateY(120%); }
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(11,19,64,0.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; overflow-y: auto; }
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: min(560px, 100%); max-height: calc(100vh - 40px); overflow: hidden; display: flex; flex-direction: column; margin: auto; }
.modal-backdrop.open .modal { transform: none; }
.modal-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; background: var(--paper-card); }
.modal-head .mh-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); }
.modal-head h3 { font-size: 22px; margin-top: 4px; }
.modal-head .mh-meta { font-size: 13.5px; color: var(--muted); margin-top: 6px; display: flex; gap: 14px; flex-wrap: wrap; }
.modal-head .mh-meta span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.modal-head .mh-meta svg { width: 15px; height: 15px; color: var(--accent-2); }
.modal-close { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--muted); flex: none; transition: background .15s; }
.modal-close:hover { background: var(--paper-2); }
.modal-body { padding: 24px; overflow-y: auto; }
.modal-foot { padding: 18px 24px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--paper-card); }

.steps-ind { display: flex; align-items: center; gap: 8px; }
.steps-ind .sdot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }
.steps-ind .sdot.active { background: var(--accent); width: 22px; border-radius: 999px; }
.steps-ind .sdot.done { background: var(--navy-800); }

.book-label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.day-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.day-cell { border: 1.5px solid var(--line); background: var(--paper-card); border-radius: var(--radius-sm); padding: 12px 8px; text-align: center; }
.day-cell:hover { border-color: var(--navy-600); }
.day-cell.sel { border-color: var(--accent); background: var(--accent-soft); }
.day-cell .dow { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--muted); }
.day-cell .dnum { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-800); margin-top: 2px; }
.day-cell .dmon { font-size: 11.5px; color: var(--muted-2); }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; }
.time-cell { border: 1.5px solid var(--line); background: var(--paper-card); border-radius: var(--radius-sm); padding: 13px 6px; text-align: center; font-weight: 600; font-size: 15.5px; color: var(--navy-800); }
.time-cell:hover { border-color: var(--navy-600); }
.time-cell.sel { border-color: var(--accent); background: var(--accent-soft); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--bad); }
.field input, .field textarea { width: 100%; border: 1.5px solid var(--line-strong); background: var(--paper-card); border-radius: var(--radius-sm); padding: 13px 14px; font-family: inherit; font-size: 15.5px; color: var(--ink); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,128,55,0.18); }
.field input.err, .field textarea.err { border-color: var(--bad); }
.field .errmsg { color: var(--bad); font-size: 12.5px; margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-summary { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.book-summary .bs-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--navy-800); color: var(--accent); display: grid; place-items: center; flex: none; }
.book-summary .bs-d { font-weight: 700; font-size: 15.5px; font-family: var(--font-display); }
.book-summary .bs-t { font-size: 13.5px; color: var(--muted); }
.book-summary button { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent-2); }

.book-success { text-align: center; padding: 16px 8px 8px; }
.book-success .succ-ic { width: 76px; height: 76px; border-radius: 50%; background: var(--accent-soft); color: var(--good); display: grid; place-items: center; margin: 0 auto 22px; }
.book-success .succ-ic svg { width: 40px; height: 40px; }
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.book-success h3 { font-size: 26px; }
.book-success p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.succ-detail { margin-top: 24px; background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.succ-detail .sd-row { display: flex; gap: 12px; align-items: center; font-size: 14.5px; }
.succ-detail .sd-row svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; }
.succ-detail .sd-row b { color: var(--ink); }

/* ============================================================
   FOERDERCHECK QUIZ TEASER
   ============================================================ */
.quiz-teaser { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.quiz-card { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy-800); border: 1px solid rgba(255,255,255,0.08); }
.quiz-card-copy { padding: clamp(32px, 4vw, 56px); }
.quiz-card-copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin-top: 18px; color: #fff; }
.quiz-card-copy p { margin-top: 16px; color: rgba(255,255,255,0.78); font-size: 17px; max-width: 460px; }
.quiz-card-copy .btn { margin-top: 26px; }
.quiz-card-steps { background: rgba(255,255,255,0.04); padding: clamp(28px, 3.6vw, 44px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.quiz-mini-step { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.quiz-mini-step .n { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #ffffff; font-weight: 700; font-family: var(--font-display); display: grid; place-items: center; flex: none; font-size: 13px; }

.quiz-choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.quiz-choice { border: 1.5px solid var(--line-strong); background: var(--paper-card); border-radius: var(--radius-sm); padding: 16px 14px; text-align: center; font-weight: 600; font-size: 15.5px; color: var(--navy-800); transition: border-color .15s, background .15s; }
.quiz-choice:hover { border-color: var(--navy-600); }
.quiz-choice.sel { border-color: var(--accent); background: var(--accent-soft); }
.book-success .succ-ic.warn { background: var(--accent-soft); color: var(--accent-2); }

/* ============================================================
   FUNDING CALC TABLE
   ============================================================ */
.funding-calc { margin-top: 26px; background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.funding-calc .fc-title { font-weight: 700; font-size: 14.5px; margin-bottom: 12px; color: var(--ink); }
.fc-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.fc-table th { text-align: left; color: var(--muted-2); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.fc-table td { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.fc-table tr:last-child td { border-bottom: none; }
.fc-table td b { color: var(--accent-2); font-family: var(--font-display); }
.fc-sum { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 12px; border-top: 1.5px solid var(--line-strong); }
.fc-sum span { font-size: 14px; color: var(--muted); }
.fc-sum b { font-family: var(--font-display); font-size: 22px; color: var(--navy-800); }
.funding-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 44px; }
.faq-group-title { font-size: 15px; font-weight: 700; color: var(--accent-2); margin-bottom: 14px; letter-spacing: 0.01em; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; text-align: left; font-weight: 600; font-size: 15.5px; color: var(--ink); }
.faq-chev { width: 18px; height: 18px; color: var(--muted-2); flex: none; transition: transform .2s; }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--accent-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 92%; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Reveal: content is ALWAYS visible (preview env freezes animations at t=0).
   The .in class is harmless; we keep DOM hooks but never hide content. */
.reveal { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; }
  .final-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta .btn-desktop { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 920px) {
  .buyers-grid { grid-template-columns: repeat(2, 1fr); }
  .ben-grid { grid-template-columns: 1fr; }
  .funding-card { grid-template-columns: minmax(0, 1fr); }
  .funding-side { order: -1; }
  .mobile-cta { display: block; }
  .quiz-card { grid-template-columns: minmax(0, 1fr); }
  .quiz-card > * { min-width: 0; }
  .faq-groups { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding-block: clamp(54px, 12vw, 80px); }
  /* FAQ mobil: gleichmäßiger Abstand über jeder Fragengruppe. */
  .faq-groups { gap: 20px; }
  .faq-group { padding-top: 8px; }
  .faq-group-title { margin-bottom: 6px; }
  /* Hero-Reassure mobil: zentriert übereinander statt nebeneinander. */
  .hero-reassure { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .problem-grid { grid-template-columns: 1fr; }
  .pain.span2 { grid-column: span 1; }
  .pain.span2 { flex-direction: column; align-items: flex-start; gap: 18px; }
  .buyers-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-line { display: none; }
  .fit-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-float-stat { right: 0; }
  .hero-float-name { left: 0; }
  .about-badges { right: 0; }
  .field-row { grid-template-columns: 1fr; }
  .modal-head h3 { font-size: 19px; }
}
@media (max-width: 420px) {
  .hero-float { display: none; }
  .hero h1 { font-size: 34px; }
}

/* ============================================================
   ANPASSUNGEN 2.0 — Hero/Trust/Teaser/Funding/Final + Mobile
   ============================================================ */

/* Funding: blaue Seite entfernt → volle Breite, echtes €-Symbol.
   minmax(0,1fr) + min-width:0 verhindert, dass Grid-Items über die
   Spaltenbreite hinauswachsen und von overflow:hidden abgeschnitten
   werden (klassischer CSS-Grid-min-content-Overflow). */
.funding-card { grid-template-columns: minmax(0, 1fr); }
.funding-card > * { min-width: 0; }
/* width:100% zwingt das Grid-Item auf die Spaltenbreite. */
.funding-main { width: 100%; min-width: 0; position: relative; }
.funding-main p { max-width: none; }
/* Desktop: Karte nutzt die volle Breite; die beiden Autorisierungs-Logos
   sitzen oben rechts in der Box mit angenehmem Padding. */
@media (min-width: 761px) {
  .funding-badges-row { position: absolute; top: clamp(28px, 3vw, 44px); right: clamp(28px, 3vw, 44px); margin-top: 0; gap: 16px; justify-content: flex-end; }
  .funding-badges-row img { height: 88px; }
  /* Textspalte bekommt rechts Platz, damit sie nicht unter die Logos läuft. */
  .funding-main > h2, .funding-main > p, .funding-main > .funding-tag { max-width: calc(100% - 250px); }
}
.funding-tag .euro-sym { font-family: var(--font-display); font-weight: 800; font-size: 15px; line-height: 1; }
/* Kernbenefits klarer strukturiert */
.funding-checks { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.funding-checks div { align-items: flex-start; }
.funding-badges-row { margin-top: 28px; justify-content: flex-start; }
.funding-badges-row img { height: 64px; }
.funding-cta-row { margin-top: 24px; }

/* Hero-Buttons immer nebeneinander */
.hero-actions { flex-wrap: nowrap; }

/* Fördercheck-Teaser: Box dezenter, Badge-Icon kleiner, Badge-Spacing */
.quiz-card { opacity: 0.95; }
.quiz-teaser .funding-tag { gap: 7px; padding: 6px 13px; margin-bottom: 4px; }
.quiz-teaser .funding-tag svg { width: 15px; height: 15px; }

/* FinalCTA-Buttons nebeneinander */
.final-actions { flex-wrap: nowrap; }
.final-actions .btn { flex: 1 1 auto; }

/* ---------- Mobile-Optimierung ---------- */
@media (max-width: 760px) {
  .funding-checks { grid-template-columns: 1fr; }
  .funding-badges-row { justify-content: center; }
  /* Spar-Tabelle: engere Spalten + Umbruch, damit nichts abgeschnitten
     wird. Programm-Zelle darf umbrechen, Zahlen bleiben kompakt. */
  .funding-calc { padding: 16px 14px; }
  /* Teaser-Karte: schmaleres Padding + Umbruch, kein Clipping */
  .quiz-card-copy { padding: 26px 20px; }
  .quiz-card-steps { padding: 22px 20px; }
  .quiz-card-copy h2, .quiz-card-copy p { overflow-wrap: break-word; }
  .fc-table { font-size: 13px; table-layout: fixed; }
  .fc-table th, .fc-table td { padding: 8px 4px; overflow-wrap: break-word; word-break: break-word; }
  .fc-table th:first-child, .fc-table td:first-child { width: 34%; }
  .fc-table th { font-size: 10.5px; letter-spacing: 0.02em; }
  .fc-sum b { font-size: 19px; }
  /* Button-Reihen kompakter, damit sie nebeneinander passen */
  .hero-actions, .final-actions, .funding-cta-row { align-items: stretch; }
  .hero-actions .btn, .final-actions .btn, .funding-cta-row .btn {
    padding: 14px 14px; font-size: 14.5px; flex: 1 1 0; min-width: 0;
    white-space: normal; line-height: 1.2;
  }
  .hero-actions .btn svg, .final-actions .btn svg { display: none; }
  /* Trust-Strip: Label über dem endlos laufenden Logo-Band */
  .trust-inner { align-items: flex-start; gap: 14px; flex-direction: column; }
  .trust-marquee { width: 100%; }
  .trust-track { animation-duration: 24s; }
}
@media (max-width: 420px) {
  .hero-actions .btn, .final-actions .btn, .funding-cta-row .btn { padding: 14px 12px; font-size: 14px; }
}

/* ============================================================
   COOKIE-HINWEIS
   ============================================================ */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--navy-800); color: #eef2fb;
  box-shadow: 0 -6px 24px rgba(2, 45, 117, 0.28);
  animation: cookieUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cookie-bar--hide { animation: cookieDown 0.3s ease forwards; }
/* Wenn das Quiz-/Buchungs-Overlay offen ist, Cookie-Bar ausblenden,
   damit sie das Modal (v.a. mobil) nicht überlagert. */
body.modal-open .cookie-bar { display: none; }
.cookie-bar-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-bar-text { margin: 0; font-size: 14px; line-height: 1.55; flex: 1 1 320px; }
.cookie-bar-text a { color: var(--green-300, #66c490); text-decoration: underline; }
.cookie-bar-btn {
  flex: 0 0 auto; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 11px 22px; border-radius: 10px; font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.cookie-bar-btn:hover { background: var(--accent-2); transform: translateY(-1px); }
@keyframes cookieUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes cookieDown { from { transform: translateY(0); } to { transform: translateY(100%); } }
@media (max-width: 560px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; gap: 10px; padding: 12px 16px; }
  .cookie-bar-text { font-size: 13px; }
  .cookie-bar-btn { width: 100%; padding: 12px 22px; }
}

/* ============================================================
   DEZENTE DESKTOP-ANIMATIONEN (nur >760px, respektiert Reduced Motion)
   ============================================================ */
@media (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  /* Sanftes Einblenden beim Scrollen — nutzt das bestehende .in-System
     der Reveal-Komponente (fügt .in beim Sichtbarwerden hinzu, mit
     Sicherheits-Fallback nach 1,6 s, damit Inhalt nie verborgen bleibt). */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
  .reveal.in { opacity: 1; transform: none; }

  /* Gestaffeltes Einblenden: die Reveal-Komponente vergibt d1/d2/d3
     an nebeneinanderliegende Karten, damit sie nacheinander erscheinen. */
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }

  /* Karten-Grids bekommen einen etwas kräftigeren Auftritt (mehr Weg +
     minimaler Scale), damit der Effekt nach dem Fold klar sichtbar ist. */
  .buyer.reveal, .ben-card.reveal, .tcard.reveal, .pain.reveal {
    transform: translateY(34px) scale(0.985);
  }
  .buyer.reveal.in, .ben-card.reveal.in, .tcard.reveal.in, .pain.reveal.in {
    transform: none;
  }

  /* Buttons: feiner Lift + Schatten */
  .btn { transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, filter 0.18s ease; }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary:hover { box-shadow: 0 10px 26px rgba(0,128,55, 0.32); }

  /* Karten: leichtes Anheben bei Hover */
  .funding-card, .quiz-card, .value-card, .step-card, .path-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  .funding-card:hover, .value-card:hover, .step-card:hover, .path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 19, 64, 0.12);
  }

  /* Trust-Logos: dezent aus Graustufe in Farbe */
  .trust-logos .tl img { filter: grayscale(1) opacity(0.8); transition: filter 0.3s ease; }
  .trust-logos .tl:hover img { filter: grayscale(0) opacity(1); }

  /* Portraits/Bilder: minimaler Zoom im Rahmen */
  .about-photo img, .speaking-photo img { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
  .about-photo:hover img, .speaking-photo:hover img { transform: scale(1.03); }
}
