/* ============================================================
   SchuldnerBeratung Werner Ehre — wernerehre.de
   Helles Design in der Farbwelt der Kampagnen-Bilder:
   Eisblau/Weiß der Büros, Royal-Blau als Markenfarbe,
   Fast-Schwarz für Headlines, Navy für Footer/CTA-Flächen.
   Grün nur als dezentes Häkchen (Schuldenfrei-Motiv).
   ============================================================ */

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eef1f6;
  --bg-soft: #e7ecf3;
  --white: #ffffff;
  --ink: #181c24;
  --navy: #17253c;
  --navy-2: #1c2f4d;
  --navy-deep: #101d31;
  --text: #242b38;
  --muted: #525e70;
  --faint: #7c8899;
  --line: #d9e0ea;
  --line-strong: #c5cfdd;
  --blue: #1a55d6;
  --blue-deep: #1240a8;
  --blue-bright: #2f6ae8;
  --blue-pale: #e6edfb;
  --blue-pale-line: #c9d8f4;
  --green: #12a869;
  --red: #b02a40;
  --red-pale: #f9e8eb;
  --gold: #c9962e;
  --gold-pale: #f9f1e0;
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Nunito Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 14px 40px rgba(24, 38, 62, 0.12);
  --shadow-soft: 0 6px 22px rgba(24, 38, 62, 0.08);
  --shadow-blue: 0 10px 26px rgba(26, 85, 214, 0.32);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: clip;
  background-image: linear-gradient(180deg, #f4f6fa 0%, var(--bg) 40%);
  background-repeat: no-repeat;
}

/* große, weiche Diagonalflächen wie im Banner-Bild */
body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1050px;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(135deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.65) 42%, rgba(255, 255, 255, 0.65) 58%, transparent 58%),
    linear-gradient(135deg, transparent 0%, transparent 64%, rgba(255, 255, 255, 0.4) 64%, rgba(255, 255, 255, 0.4) 74%, transparent 74%),
    linear-gradient(135deg, transparent 0%, transparent 22%, rgba(197, 211, 232, 0.35) 22%, rgba(197, 211, 232, 0.35) 30%, transparent 30%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 95%);
}

main, footer.site-footer { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Akzentwort in Überschriften — flächiges Royal-Blau wie „Beratung“ */
.accent { color: var(--blue); }

/* Zusammenhalte-Einheit: erlaubt Umbruch nur zwischen den Einheiten */
.nowrap { white-space: nowrap; }

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-130%);
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 100;
  transition: transform 0.15s ease;
}
.skip-link:focus { transform: translateY(0); text-decoration: none; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(24, 38, 62, 0.06);
  transition: box-shadow 0.25s ease;
}
/* Frost-Hintergrund als eigene Ebene hinter dem Header-Inhalt.
   Verhindert den iOS-Safari-Bug, dass ein absolut positioniertes Kind
   (das aufgeklappte Burger-Menü) eines backdrop-filter-Elements durchsichtig wird. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
/* beim Scrollen leicht durchsichtig, bleibt aber sichtbar */
.site-header.scrolled::before {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(24, 38, 62, 0.10);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

/* Marke: SB-Badge links + Textmarke („Schuldner“ ink, „Beratung“ blau) */
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.15;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 5px 16px rgba(26, 85, 214, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  padding: 6px;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.brand-name b { color: var(--blue); font-weight: 800; }
.brand-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  padding: 9px 13px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.main-nav a.active { color: var(--blue); background: var(--blue-pale); }

.nav-cta {
  margin-left: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%) !important;
  box-shadow: 0 4px 14px rgba(26, 85, 214, 0.30);
  font-weight: 700 !important;
}
.nav-cta:hover { filter: brightness(1.06); }

.nav-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s, box-shadow 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { flex: 0 0 auto; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 12px 32px rgba(26, 85, 214, 0.4); }

.btn-ghost {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* helle Ghost-Variante für dunkle Panels */
.cta-panel .btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.cta-panel .btn-ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; border-color: #fff; }

/* ---------- Hero (Startseite) ---------- */
.hero {
  padding: 64px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 6.6vw, 78px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1.6px;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero-title b { color: var(--blue); font-weight: 800; }
.hero-name {
  display: block;
  font-size: 0.68em;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--ink);
  margin-top: 4px;
}

.hero-role {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--blue);
  margin-top: 10px;
}

.hero-rule {
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: var(--blue);
  margin: 20px 0 18px;
}

.hero-tagline {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--blue-pale-line);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.kicker.red { color: var(--red); background: var(--red-pale); border-color: #efcdd4; }
.kicker.red::before { background: var(--red); }
.kicker.blue { color: var(--blue); background: var(--blue-pale); border-color: var(--blue-pale-line); }
.kicker.blue::before { background: var(--blue); }

h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  color: var(--ink);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 14px;
  font-weight: 600;
}

/* Banner rechtsbündig, weißer Foto-Rahmen */
.hero-banner {
  justify-self: end;
  width: 100%;
  max-width: 560px;
  position: relative;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: -26px 0 auto auto;
  width: 72%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(26, 85, 214, 0.16), transparent);
  filter: blur(12px);
  z-index: -1;
}
.hero-banner img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-banner figcaption {
  margin-top: 12px;
  text-align: right;
  font-size: 13.5px;
  color: var(--faint);
  letter-spacing: 0.3px;
}

/* ---------- Stats-Leiste ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 0;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue-deep));
}
.stat b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--blue);
}
.stat span { color: var(--muted); font-size: 14.5px; }

/* ---------- Sektionen ---------- */
.section { padding: 72px 0; }
.section.tight { padding: 46px 0; }

.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(26px, 3.3vw, 37px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-head p { color: var(--muted); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.wide { max-width: 1040px; }

/* ---------- Karten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-bright);
  box-shadow: var(--shadow);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-deep));
  opacity: 0;
  transition: opacity 0.25s;
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 18px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-pale-line);
}
.card-icon.blue { background: var(--blue-pale); border-color: var(--blue-pale-line); }
.card-icon.red { background: var(--red-pale); border-color: #efcdd4; }
.card-icon.gold { background: var(--gold-pale); border-color: #ecdcb4; }

.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.2px; color: var(--ink); }
.card p { color: var(--muted); font-size: 15.5px; }
.card ul { margin: 10px 0 0 0; padding: 0; list-style: none; }
.card li {
  color: var(--muted);
  font-size: 15px;
  padding: 6px 0 6px 26px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.card li:last-child { border-bottom: none; }
.card li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  color: var(--blue);
}

/* ---------- Split-Sektionen (Bild + Text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}
.split.rev .split-media { order: 2; }
.split.rev .split-body { order: 1; }

.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--blue-pale-line);
  border-radius: var(--radius);
  z-index: -1;
}
.split-media.red::after { border-color: #efcdd4; }
.split-media.blue::after { border-color: var(--blue-pale-line); }

/* Überschrift direkt über dem Bild (Overlay mit Verlaufs-Scrim) */
.split-media.has-overlay img { position: relative; z-index: 0; }
.media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(20px, 4.5%, 44px);
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(to top,
    rgba(14, 26, 45, 0.95) 0%,
    rgba(14, 26, 45, 0.74) 42%,
    rgba(14, 26, 45, 0.20) 82%,
    transparent 100%);
}
.media-overlay h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(20px, 2.7vw, 31px);
  line-height: 1.18;
  letter-spacing: -0.4px;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.media-overlay .kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.media-overlay .kicker::before { background: #fff; }

/* Überschrift OBERHALB des Bildes (in der Media-Spalte, nicht darauf) */
.split-media .media-title {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 0 0 20px;
}
.split-media.no-frame::after { display: none; }
/* Lead-Überschrift im Textblock */
.split-body .body-lead {
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 12px;
}

.split-body h2 {
  font-size: clamp(25px, 3.1vw, 35px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--ink);
}
.split-body p { color: var(--muted); margin-bottom: 14px; }
.split-body .btn { margin-top: 12px; }

/* ---------- Zitat ---------- */
.quote {
  border: 1px solid var(--blue-pale-line);
  border-left: 4px solid var(--blue);
  background: linear-gradient(135deg, var(--blue-pale), #f2f7ff);
  border-radius: var(--radius-sm);
  padding: 26px 30px;
  font-size: 19.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
  position: relative;
  margin: 24px 0;
}
.quote footer { margin-top: 12px; font-size: 14.5px; font-weight: 700; color: var(--blue); }

/* ---------- Ablauf / Schritte ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 9px; color: var(--ink); }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- CTA-Panel (Navy-Balken wie in den Bildern) ---------- */
.cta-panel {
  border-radius: 22px;
  border: 1px solid var(--navy-deep);
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(47, 106, 232, 0.30), transparent 60%),
    radial-gradient(600px 300px at 90% 110%, rgba(26, 85, 214, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy-2), var(--navy-deep));
  padding: 54px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0%, transparent 55%, rgba(255, 255, 255, 0.05) 55%, rgba(255, 255, 255, 0.05) 70%, transparent 70%);
  pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel h2 {
  font-size: clamp(25px, 3.3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: #fff;
}
.cta-panel h2 .accent { color: #8fb5ff; }
.cta-panel p { color: #c3d1e8; max-width: 62ch; margin: 0 auto 28px; font-size: 17px; }
.cta-panel .kicker {
  color: #9dbdff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(157, 189, 255, 0.35);
}
.cta-panel .kicker::before { background: #9dbdff; }
.cta-panel .btn-primary { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--blue);
}
.contact-card .label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-card .value { font-size: 19px; font-weight: 800; color: var(--ink); word-break: break-word; }
.contact-card .value a { color: var(--ink); }
.contact-card .value a:hover { color: var(--blue); text-decoration: none; }
.contact-card .hint { margin-top: 8px; color: var(--muted); font-size: 14px; }

/* ---------- Fließtext-Seiten (Datenschutz, Impressum) ---------- */
.prose { max-width: 820px; }
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 38px 0 12px;
  padding-top: 8px;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.prose h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 12px;
  background: var(--blue);
}
.prose h3 { font-size: 18px; font-weight: 800; margin: 24px 0 8px; color: var(--ink); }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); }
.prose address { font-style: normal; color: var(--muted); }

.info-box {
  background: var(--blue-pale);
  border: 1px solid var(--blue-pale-line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 20px 0;
}
.info-box p { color: var(--text); }
.info-box p:last-child { margin-bottom: 0; }

/* ---------- Page-Header (Unterseiten) ---------- */
.page-head {
  padding: 60px 0 30px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 320px at 80% -40%, rgba(26, 85, 214, 0.10), transparent 65%),
    linear-gradient(180deg, #f7f9fc, var(--bg));
}
.page-head h1 { margin-bottom: 12px; }
.page-head .lead { margin-bottom: 6px; }

/* ---------- Footer (Navy wie der Balken im Kampagnen-Bild) ---------- */
.site-footer {
  border-top: 4px solid var(--blue);
  background: linear-gradient(135deg, var(--navy-2), var(--navy-deep));
  padding: 52px 0 30px;
  margin-top: 40px;
  color: #c3d1e8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand-name b { color: #7fa9ff; }
.site-footer .brand-sub { color: #8fa5c4; }
.footer-brand p { color: #a9bad6; font-size: 14.5px; margin-top: 12px; max-width: 40ch; }
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7fa9ff;
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block;
  color: #c3d1e8;
  font-size: 15px;
  padding: 5px 0;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: #a9bad6;
  font-size: 13.5px;
}
.footer-bottom a { color: #a9bad6; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll-Reveal (progressiv: Default sichtbar) ---------- */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.pre { opacity: 0; transform: translateY(22px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.pre { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-banner { justify-self: stretch; max-width: 640px; margin-left: auto; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 34px; }
  .split.rev .split-media { order: 1; }
  .split.rev .split-body { order: 2; }
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav-toggle { display: grid; place-items: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--line-strong);
    box-shadow: 0 14px 30px rgba(24, 38, 62, 0.14);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; font-size: 16px; }
  .nav-cta { margin-left: 0; text-align: center; justify-content: center; display: flex; }
  .hero { padding: 38px 0 26px; }
  .hero-title { font-size: clamp(24px, 8.2vw, 34px); letter-spacing: -0.8px; }
  .section { padding: 50px 0; }
  .cta-panel { padding: 40px 24px; }
  .quote { padding: 22px 20px; font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}
