/* ==========================================================================
   D&T Lead Solution — Editorial-Designsystem v2
   Trust-Blau + Navy auf Weiß/Warm-Offwhite · Bricolage Grotesque + Inter
   ========================================================================== */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/BricolageGrotesque-Variable.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0a4fd6;
  --blue-hover: #0843b4;
  --blue-light: #e8effc;
  --navy: #0b2a5b;
  --navy-deep: #08172e;
  --ink: #1a2432;
  --muted: #5b6675;
  --paper: #f6f4ef;
  --paper-line: #e6e1d6;
  --line: #e2e7ef;
  --accent: #0e6f79;   /* Türkis aus dem Logo */
  --star: #d9a218;     /* Bewertungssterne bleiben golden */
  --success: #1a8f5c;
  --r: 6px;
  --font-display: 'Bricolage Grotesque', 'Avenir Next', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 0.55em;
  font-weight: 640;
  letter-spacing: -0.012em;
  /* KEINE automatische Silbentrennung: sonst entstehen Umbrüche wie
     "Ausbil-dung", "Trai-ning" oder zerschnittene Eigennamen.
     break-word ist nur ein Notnagel für extrem lange Komposita und
     setzt KEINEN Bindestrich. */
  hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: balance;
  font-variation-settings: 'opsz' 40;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; line-height: 1.25; }
/* Korrekte Überschriftenebene bei kompakter Optik (z.B. Formular-/Rechtstexte) */
h2.h-compact, h3.h-compact { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0 0 1em; }
p.lead { font-size: 1.16rem; line-height: 1.65; color: var(--muted); max-width: 34em; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 56px 0; }
.bg-alt { background: var(--paper); }
.bg-blue { background: var(--navy); color: #fff; }
.bg-blue h2, .bg-blue h3 { color: #fff; }
.bg-blue p { color: #bccbe6; }

/* --------------------------------------------------------------------------
   Label (ersetzt Pill-Kicker): — VERSAL-LABEL mit Linie
   -------------------------------------------------------------------------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 22px;
}
.label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}
.bg-blue .label { color: #9fc0f5; }
.bg-blue .label::before { background: var(--accent); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head p { color: var(--muted); font-size: 1.1rem; max-width: 36em; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .label::before { display: none; }
.section-head.center .label::after { display: none; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none !important;
  line-height: 1.3;
}
.btn::after {
  content: "→";
  font-family: var(--font-display);
  font-weight: 500;
  transition: transform 0.25s var(--ease-out);
}
.btn:hover::after { transform: translateX(5px); }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--paper); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 17px 32px; font-size: 1.04rem; }
.btn-quiet::after { content: none; }

/* Text-Link mit Pfeil (sekundäre CTA) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none !important;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}
.link-arrow::after {
  content: "→";
  font-family: var(--font-display);
  transition: transform 0.25s var(--ease-out);
}
.link-arrow:hover::after { transform: translateX(5px); }

.btn-note { display: block; font-size: 0.83rem; color: var(--muted); margin-top: 12px; }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
/* Echtes Logo */
.brand-logo { height: 42px; width: auto; display: block; }
.footer .brand-logo { height: 46px; filter: brightness(0) invert(1); }
@media (max-width: 480px) { .brand-logo { height: 34px; } }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name strong { font-family: var(--font-display); color: var(--navy); font-size: 1.05rem; font-weight: 650; }
.brand-name span { color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink);
  font-weight: 550;
  font-size: 0.94rem;
  text-decoration: none !important;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); border-bottom-color: var(--accent); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; border-bottom: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-links .mobile-cta { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (Editorial-Split)
   -------------------------------------------------------------------------- */
.hero { padding: 72px 0 88px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 72px;
  align-items: center;
}
/* verhindert, dass lange Komposita die Spalte über den Viewport hinaus dehnen */
.hero-grid > *, .split > * { min-width: 0; }
.hero h1 { margin-bottom: 0.5em; }
.hero .lead { margin-bottom: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 34px; }

.proof-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}
.proof-line .stars { color: var(--star); letter-spacing: 2px; }
.proof-line strong { color: var(--navy); font-weight: 650; }
.proof-line .sep { color: var(--line); }

/* Bild-Komponenten */
.figure {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure.ratio-45 { aspect-ratio: 4 / 5; }
.figure.ratio-32 { aspect-ratio: 3 / 2; }
.figure.ratio-11 { aspect-ratio: 1 / 1; }
.figure.ratio-169 { aspect-ratio: 16 / 9; }

.hero-figure { position: relative; }
.hero-figure .figure { aspect-ratio: 4 / 5; }
.hero-figure .figure img { object-position: center 22%; }
.hero-chip {
  position: absolute;
  left: -28px;
  bottom: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 16px 22px;
  box-shadow: 0 14px 40px rgba(11, 42, 91, 0.12);
  max-width: 250px;
}
.hero-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.2;
}
.hero-chip span { font-size: 0.84rem; color: var(--muted); line-height: 1.45; display: block; margin-top: 2px; }

/* Mask-Reveal für Bilder: Cover-Overlay gleitet weg (IO-sicher, kein clip-path) */
.mask-reveal { position: relative; }
.mask-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform-origin: right center;
  transition: transform 1s var(--ease-out);
  z-index: 1;
}
.bg-alt .mask-reveal::after { background: #efece4; }
.mask-reveal.in::after { transform: scaleX(0); }

/* --------------------------------------------------------------------------
   Kennzahlen-Band
   -------------------------------------------------------------------------- */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.bg-alt.stats-band { border-color: var(--paper-line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { border-left: 1px solid var(--paper-line); padding-left: 24px; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 650;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat .num em { font-style: normal; color: var(--accent); }
.stat .label-s { color: var(--muted); font-size: 0.9rem; margin-top: 6px; line-height: 1.5; }
.bg-blue .stat .num { color: #fff; }
.bg-blue .stat .label-s { color: #bccbe6; }
.bg-blue .stat { border-color: rgba(255,255,255,0.16); }

/* --------------------------------------------------------------------------
   Editorial-Liste (ersetzt Icon-Card-Grids)
   -------------------------------------------------------------------------- */
.edit-list { border-top: 1px solid var(--line); }
.edit-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1.6fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none !important;
  color: inherit;
  transition: background 0.2s ease;
}
a.edit-row:hover { background: var(--paper); }
.bg-alt .edit-list, .bg-alt .edit-row { border-color: var(--paper-line); }
a.bg-alt .edit-row:hover { background: #fff; }
.edit-row .no {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
}
.edit-row h3 { margin: 0; font-size: 1.45rem; }
.edit-row p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.edit-row .go {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  transition: transform 0.25s var(--ease-out);
}
a.edit-row:hover .go { transform: translateX(6px); color: var(--blue); }

/* --------------------------------------------------------------------------
   Split-Layouts & nummerierte Schritte
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.split > .sticky-col { position: sticky; top: 110px; }

.steps-flow { display: grid; gap: 0; }
.step-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.bg-alt .step-row { border-color: var(--paper-line); }
.step-row:first-child { border-top: none; padding-top: 0; }
.step-row .big-no {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue);
}
.step-row h3 { margin-bottom: 8px; }
.step-row p { color: var(--muted); margin: 0; max-width: 44em; }

/* Vertikale Timeline (Karriereleiter) */
.timeline { position: relative; max-width: 780px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 1.5px;
  background: linear-gradient(var(--blue), var(--accent));
}
.tl-item { position: relative; padding: 0 0 48px 96px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--blue);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-item.tl-accent .tl-dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.tl-item .tl-tag {
  display: block;
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}
.tl-item h3 { font-size: 1.5rem; margin-bottom: 8px; }
.tl-item p { color: var(--muted); margin: 0; max-width: 46em; }

/* --------------------------------------------------------------------------
   Branchen: Foto-Kacheln + Marquee
   -------------------------------------------------------------------------- */
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.img-tile {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  text-decoration: none !important;
  color: #fff;
}
.img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.img-tile:hover img { transform: scale(1.04); }
.img-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 23, 46, 0.82) 0%, rgba(8, 23, 46, 0.25) 45%, rgba(8, 23, 46, 0) 70%);
}
.img-tile .tile-text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
}
.img-tile .tile-text h3 { color: #fff; font-size: 1.6rem; margin-bottom: 4px; }
.img-tile .tile-text p { color: #cdd9ee; font-size: 0.95rem; margin: 0; }
.img-tile .tile-cta {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.25s var(--ease-out);
}
.img-tile:hover .tile-cta { background: var(--blue); transform: rotate(-45deg); }

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marq 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 550;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span::after { content: "·"; color: var(--accent); margin-left: 56px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Zitate / Testimonials (editorial)
   -------------------------------------------------------------------------- */
.quote-xl { position: relative; padding-left: 56px; max-width: 800px; }
.quote-xl::before {
  content: "„";
  position: absolute;
  left: 0;
  top: -24px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 640;
  color: var(--accent);
  line-height: 1;
}
.quote-xl blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 550;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.quote-who { display: flex; align-items: center; gap: 14px; }
.quote-who .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-who strong { color: var(--navy); font-size: 0.98rem; display: block; line-height: 1.3; }
.quote-who span { color: var(--muted); font-size: 0.85rem; }

.quote-list { display: grid; gap: 0; border-top: 1px solid var(--paper-line); }
.quote-item { padding: 26px 0; border-bottom: 1px solid var(--paper-line); }
.quote-item blockquote { margin: 0 0 12px; font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.quote-item .quote-who .avatar { width: 38px; height: 38px; font-size: 0.8rem; }

.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.rating-line .stars { color: var(--star); letter-spacing: 2px; }

/* Testimonial-Grid (echte Teilnehmer-Ergebnisse) */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tgrid > * { min-width: 0; }
.tcard {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 26px 24px;
}
.bg-alt .tcard { border-color: var(--paper-line); }
.tcard .stars { color: var(--star); letter-spacing: 2px; font-size: 0.9rem; }
.tcard blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  flex-grow: 1;
}
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-family: var(--font-display); font-weight: 650; font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tcard .who strong { display: block; color: var(--navy); font-size: 0.95rem; line-height: 1.3; }
.tcard .who span { color: var(--muted); font-size: 0.82rem; }

/* Disclaimer (Einzelergebnisse) */
.disclaimer {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--paper-line);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62em;
}
@media (max-width: 1024px) { .tgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tgrid { grid-template-columns: 1fr; } }

/* Beleg-Screenshots (echte Benachrichtigungen und Original-Nachrichten) */
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shot-grid.chats { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
.shot-grid > * { min-width: 0; }
.shot {
  display: block;
  background: #101114;
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.shot:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(8,23,46,0.16); }
.shot img { width: 100%; height: auto; display: block; }
.shot.tall img { aspect-ratio: 3 / 5; object-fit: cover; object-position: top; }
.shot figcaption,
.shot .cap {
  display: block;
  background: #fff;
  border-top: 1px solid var(--paper-line);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.shot .cap strong { color: var(--navy); display: block; font-weight: 650; }
@media (max-width: 900px) { .shot-grid, .shot-grid.chats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shot-grid, .shot-grid.chats { grid-template-columns: 1fr; } }

/* Provisions-Eingänge (echte Zahlen, in unserem Design — keine Fake-Belege) */
.proof-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proof-cards > * { min-width: 0; }
.proofcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
}
.bg-alt .proofcard { border-color: var(--paper-line); }
.proofcard .pc-label {
  display: block;
  font-size: 0.72rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.proofcard .pc-amount {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 650;
  color: var(--success);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.proofcard .pc-note { display: block; margin-top: 6px; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 900px) { .proof-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proof-cards { grid-template-columns: 1fr; } }

/* Trustpilot-Link (erbt Farbe, dezenter Hover) */
.tp-link { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
.tp-link:hover { text-decoration: none; border-bottom-color: currentColor; }

/* Partner-Karten (Immobilien-Referenzen, ohne Kontaktdaten/Logos) */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner-grid > * { min-width: 0; }
.partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  padding: 26px 28px;
}
.partner-avatar {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.partner-body h3 { font-size: 1.25rem; margin: 0 0 2px; }
.partner-body .partner-company { display: block; font-weight: 650; color: var(--blue); font-size: 0.95rem; margin-bottom: 6px; }
.partner-body p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
@media (max-width: 768px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Karriere-Band (dezent, wiederkehrend)
   -------------------------------------------------------------------------- */
.career-band { padding: 0; border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); background: var(--paper); }
.career-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.career-band-inner .cb-text strong { display: block; font-family: var(--font-display); font-size: 1.12rem; font-weight: 640; color: var(--navy); }
.career-band-inner .cb-text span { color: var(--muted); font-size: 0.94rem; }

/* --------------------------------------------------------------------------
   Vorteile-Raster ohne Icons (2×2 Linienraster)
   -------------------------------------------------------------------------- */
.line-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.line-cell { padding: 34px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-alt .line-grid, .bg-alt .line-cell { border-color: var(--paper-line); }
.line-cell .no { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--accent); display: block; margin-bottom: 12px; }
.line-cell h3 { font-size: 1.2rem; margin-bottom: 8px; }
.line-cell p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* --------------------------------------------------------------------------
   FAQ (Linien statt Karten)
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.bg-alt .faq, .bg-alt .faq-item { border-color: var(--paper-line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  padding: 24px 4px;
  cursor: pointer;
}
.faq-q .chev { flex-shrink: 0; color: var(--accent); font-size: 1rem; transition: transform 0.3s var(--ease-out); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-a-inner { padding: 0 4px 26px; color: var(--muted); font-size: 0.98rem; max-width: 46em; }

/* --------------------------------------------------------------------------
   Formulare
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--r);
  padding: 44px;
  max-width: 680px;
}
.form-card.centered { margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid > * { min-width: 0; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.85rem; color: var(--navy); letter-spacing: 0.01em; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 14px;
  border: 1px solid #cfd6e2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s ease;
}
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: var(--muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
  border-color: var(--blue);
}
.form-card .btn { width: 100%; margin-top: 24px; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 14px 0 0; }
.form-success {
  display: none;
  background: #eaf7f0;
  color: var(--success);
  border: 1px solid #bfe8d4;
  border-radius: 4px;
  padding: 14px 18px;
  font-weight: 600;
  margin-top: 18px;
}
.form-success.visible { display: block; }

/* Spam-Falle: für Menschen unsichtbar, aber im DOM vorhanden,
   damit Bots sie ausfüllen. Bewusst KEIN display:none. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Finale CTA-Sektion mit Foto
   -------------------------------------------------------------------------- */
.final-cta { position: relative; overflow: hidden; padding: 120px 0; }
.final-cta .cta-bg { position: absolute; inset: 0; }
.final-cta .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 23, 46, 0.94) 30%, rgba(8, 23, 46, 0.72) 70%, rgba(11, 42, 91, 0.55) 100%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 15em; }
.final-cta p { color: #bccbe6; max-width: 36em; margin-bottom: 32px; }
.final-cta .hero-ctas { margin-top: 0; }

/* --------------------------------------------------------------------------
   Team (Editorial)
   -------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.team-card .portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.team-card .portrait span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.02em;
}
/* Echtes Foto füllt den 4:5-Rahmen */
.team-card .portrait.has-photo { background: var(--paper); }
.team-card .portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.team-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: 0.88rem; margin-bottom: 14px; }
.team-card p { color: var(--muted); font-size: 0.98rem; }
.team-card ul { padding-left: 18px; color: var(--muted); font-size: 0.94rem; margin: 12px 0 0; }
.team-card ul li { margin-bottom: 5px; }

/* Werte als Typo-Statements */
.value-rows { border-top: 1px solid var(--line); }
.value-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.bg-alt .value-rows, .bg-alt .value-row { border-color: var(--paper-line); }
.value-row h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0; }
.value-row p { margin: 0; color: var(--muted); align-self: center; max-width: 40em; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--navy-deep); color: #a7b7d4; padding: 72px 0 32px; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-grid > * { min-width: 0; }
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #a7b7d4; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .brand-mark { background: rgba(255,255,255,0.12); }
.footer .brand-name strong { color: #fff; }
.footer .brand-name span { color: #7e91b5; }
.footer-brand p { margin-top: 18px; max-width: 300px; line-height: 1.65; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #7e91b5;
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   Reveal & Motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

.parallax img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mask-reveal::after { display: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .btn::after, .link-arrow::after, .img-tile img, .edit-row .go { transition: none; }
  .parallax img { transform: none !important; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid, .split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .edit-row { grid-template-columns: 64px 1fr auto; }
  .edit-row p { grid-column: 2 / 3; }
  .team-grid { gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-figure { order: 2; }
  .hero-figure .figure { aspect-ratio: 4 / 3; }
  .hero-chip { left: 16px; bottom: -22px; max-width: 230px; padding: 13px 18px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn { white-space: normal; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .split > .sticky-col { position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat { border-left: none; padding-left: 0; }
  .tile-grid { grid-template-columns: 1fr; }
  .line-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .quote-xl { padding-left: 0; padding-top: 44px; }
  .quote-xl::before { top: -10px; }

  .edit-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .edit-row .no { font-size: 1rem; }
  .edit-row p { grid-column: auto; }
  .edit-row .go { display: none; }
  .step-row { grid-template-columns: 64px 1fr; gap: 18px; padding: 26px 0; }
  .step-row .big-no { font-size: 2.4rem; }
  .tl-item { padding-left: 76px; padding-bottom: 40px; }
  .tl-item .tl-dot { width: 48px; height: 48px; font-size: 1.05rem; }
  .timeline::before { left: 23px; }

  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(11, 42, 91, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links li { border-bottom: 1px solid var(--paper); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 15px 4px; border-bottom: none; font-size: 1.02rem; }
  .nav-links .mobile-cta { display: block; padding-top: 16px; }
  .nav-links .mobile-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  /* Überschriften kleiner, damit lange deutsche Komposita
     ("Vertriebsdienstleister") ohne Trennung in die Zeile passen */
  h1 { font-size: clamp(1.68rem, 7.2vw, 2.3rem); }
  h2 { font-size: clamp(1.45rem, 5.6vw, 1.9rem); }
  .funnel-hero h1 { font-size: clamp(1.68rem, 7.2vw, 2.3rem); }
  .advertorial h1 { font-size: clamp(1.68rem, 7.2vw, 2.3rem); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { gap: 14px; }
  .final-cta { padding: 84px 0; }
}
