/* ================================================================
   Businessplan-Ersteller — Ratgeber Design System (v2)
   Matches the existing class names from the Ratgeber HTML pages,
   restyled to align with businessplan-ersteller.de brand:
   - Manrope grotesk
   - Brand teal #028587 / #033432
   - Halftone dot patterns, soft rounded cards, floating UI
================================================================ */

/* Self-hosted Manrope (variable woff2) — kein render-blocking @import mehr.
   JetBrains Mono fällt auf System-Monospace zurück (nur winzige Uppercase-Labels). */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --teal: #02787A;
  --teal-2: #03a7a9;
  --teal-deep: #014e50;
  --teal-darker: #033432;
  --teal-darkest: #022826;
  --teal-soft: #e6f4f4;
  --teal-tint: #f1f9f9;

  --ink: #033432;
  --ink-2: #1e3a3c;
  --ink-mute: #5a6e70;
  --ink-faint: #8a9b9c;
  --rule: #e4ebec;
  --rule-soft: #eff3f3;

  --paper: #ffffff;
  --paper-2: #f6f9f9;
  --paper-3: #eef3f3;
  --gray-bg: #F2F4F4;

  --warn: #d63a3a;
  --warn-soft: #fde9e9;
  --warn-tint: #fef4f4;
  --ok: #0a8a5a;
  --gold: #f4b91a;

  --dots-light: radial-gradient(rgba(3,52,50,0.08) 1.2px, transparent 1.6px);
  --dots-dark: radial-gradient(rgba(255,255,255,0.08) 1.2px, transparent 1.6px);

  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(3, 52, 50, 0.04), 0 6px 18px -6px rgba(3, 52, 50, 0.08);
  --shadow-float: 0 4px 10px rgba(3, 52, 50, 0.08), 0 20px 48px -20px rgba(3, 52, 50, 0.20);
  --shadow-lift: 0 16px 40px -16px rgba(3, 52, 50, 0.30);
}

/* ================================================================
   Base
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Defensiver Schutz gegen horizontales Scrollen auf Mobile (fixe Breiten, Overflow) */
html, body { overflow-x: hidden; max-width: 100%; }
*, *::before, *::after { min-width: 0; }
/* Lange deutsche Komposita (z.B. "Tragfähigkeitsbescheinigung") sauber umbrechen statt rausragen */
h1, h2, h3, h4, .hero h1, .hero-subtitle, .section-title, p, li, summary, .faq-q {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--teal); color: #fff; }

/* ================================================================
   Layout
================================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 22px; }
}

/* ================================================================
   Navbar
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.25s, backdrop-filter 0.25s, box-shadow 0.25s;
  pointer-events: none;
}

/* Transparente Navbar-Fläche lässt Klicks durch (z.B. zum Breadcrumb darunter) — nur echte Bedienelemente fangen Klicks */
.navbar.scrolled { pointer-events: auto; }
.nav-logo, .nav-cta, .nav-links { pointer-events: auto; }

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.navbar-logo img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.navbar.scrolled .nav-links a { color: var(--ink-2); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-darker);
  border-radius: var(--r-pill);
  padding: 11px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--teal-darker);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.navbar.scrolled .nav-cta {
  background: var(--teal-darker);
  color: #fff;
}

.navbar.scrolled .nav-cta:hover { background: var(--teal); }

@media (max-width: 900px) {
  .navbar { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 13px; font-weight: 700; background: #028587; color: #fff; box-shadow: 0 4px 14px rgba(2,133,135,0.32); }
  .nav-cta:hover { background: #033432; color: #fff; }
  .navbar.scrolled .nav-cta { background: #028587; color: #fff; }
  .nav-logo img { height: 34px !important; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 14px; height: 64px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; gap: 6px; letter-spacing: -0.01em; }
  .nav-logo, .navbar-logo { height: auto; }
  .nav-logo img, .navbar-logo img { height: 26px !important; }
}

/* ================================================================
   Hero
================================================================ */
.hero {
  min-height: 86vh;
  background:
    radial-gradient(ellipse 140% 90% at 60% 0%, #028587 0%, #4ab5b5 26%, #c0e8e8 56%, #f0fafa 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 0 96px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-light);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.85;
}

.hero-watermark {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 800;
  color: rgba(3,52,50,0.05);
  white-space: nowrap;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(3,52,50,0.18);
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: 9px 20px 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-darker);
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(3,52,50,0.06);
}

.hero-badge svg { color: var(--teal); }

.hero h1 {
  font-size: clamp(36px, 5.6vw, 62px);
  font-weight: 800;
  color: var(--teal-darker);
  line-height: 1.04;
  letter-spacing: -0.032em;
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 22ch;
  margin-inline: auto;
}

.hero h1 span,
.hero h1 .accent { color: var(--teal); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(3,52,50,0.66);
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-body {
  font-size: 16px;
  color: var(--teal-darker);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-body strong { font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ================================================================
   Stat grid (in hero)
================================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stat-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(3,52,50,0.10);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.2s;
}

.stat-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-darker);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 500;
}

.stat-note {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   Buttons
================================================================ */
.btn-dark, .btn-teal, .btn-white, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-dark {
  background: var(--teal-darker);
  color: #fff;
  padding: 15px 32px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(3,52,50,0.22);
}

.btn-dark:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(3,52,50,0.30);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(2,133,135,0.24);
}

.btn-teal:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2,133,135,0.32);
}

.btn-white {
  background: #fff;
  color: var(--teal-darker);
  padding: 13px 26px;
  font-size: 14px;
  border-color: rgba(3,52,50,0.12);
  box-shadow: 0 1px 4px rgba(3,52,50,0.06);
}

.btn-white:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(3,52,50,0.10);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(37,211,102,0.30);
}

.btn-whatsapp:hover {
  background: #1eb958;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37,211,102,0.36);
}

/* ================================================================
   Section headings
================================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--teal-darker);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-title .accent { color: var(--teal); position: relative; }

.section-subtitle {
  font-size: 17px;
  color: var(--ink-mute);
  margin-bottom: 56px;
  max-width: 64ch;
  line-height: 1.55;
}

.dark-section .section-label { color: rgba(255,255,255,0.55); }
.dark-section .section-title { color: #fff; }
.dark-section .section-title .accent { color: var(--teal-2); }
.dark-section .section-subtitle { color: rgba(255,255,255,0.72); }

/* ================================================================
   Answer box (GEO TL;DR)
================================================================ */
.answer-box-section { background: #fff; padding: 0; }

.answer-box-section .container {
  padding-top: 0;
  padding-bottom: 0;
}

.answer-box-section > .container > div {
  padding: 72px 0 !important;
}

.answer-box {
  background: linear-gradient(160deg, #ffffff 0%, var(--teal-tint) 100%);
  border: 1px solid rgba(2,133,135,0.18);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-card);
  max-width: 940px;
  margin: 0 auto;
}

.answer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.answer-box h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--teal-darker);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.answer-box p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
}

.answer-box p strong { color: var(--teal-darker); font-weight: 700; }

.answer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.answer-card {
  background: #fff;
  border: 1px solid rgba(2,133,135,0.18);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: all 0.2s;
}

.answer-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.answer-card-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.answer-card-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.answer-card-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.4;
}

@media (max-width: 900px) { .answer-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .answer-cards { grid-template-columns: 1fr; } }

/* ================================================================
   Gray section (Voraussetzungen + FAQ)
================================================================ */
.gray-section {
  background: var(--gray-bg);
  position: relative;
}

.gray-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-light);
  background-size: 28px 28px;
  opacity: 0.40;
  pointer-events: none;
}

.gray-section > .container { position: relative; z-index: 1; }

/* ================================================================
   Check items
================================================================ */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(2,133,135,0.14);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(3,52,50,0.03);
}

.check-item:hover {
  border-color: var(--teal);
  transform: translateX(2px);
}

.check-icon-wrap {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(2,133,135,0.24);
}

.check-icon-wrap svg { width: 15px; height: 15px; color: #fff; }

.check-item-body p {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-darker);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.check-item-body small {
  font-size: 13px;
  color: var(--ink-mute);
  display: block;
  margin-top: 5px;
  line-height: 1.55;
}

.info-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(160deg, #fff 0%, var(--teal-tint) 100%);
  border: 1px solid rgba(2,133,135,0.20);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-top: 16px;
}

.info-hint svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-hint p {
  font-size: 14px;
  color: var(--teal-darker);
  line-height: 1.6;
}

.info-hint p strong { color: var(--teal); font-weight: 700; }

/* ================================================================
   Module cards
================================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 30px;
  cursor: default;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  border-color: rgba(2,133,135,0.30);
}

.module-card:hover::before { transform: scaleX(1); }

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(2,133,135,0.20);
}

.module-icon svg { width: 24px; height: 24px; color: #fff; }

.module-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.module-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.018em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.module-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.module-tag {
  font-family: var(--mono);
  font-size: 11px;
  background: var(--teal-tint);
  color: var(--teal);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) { .module-grid { grid-template-columns: 1fr; } }

/* ================================================================
   Dark section (process steps)
================================================================ */
.dark-section {
  background: var(--teal-darker);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    var(--dots-dark),
    radial-gradient(circle at 80% 20%, rgba(3,167,169,0.22) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(3,167,169,0.12) 0%, transparent 50%);
  background-size: 22px 22px, auto, auto;
  pointer-events: none;
}

.dark-section > .container { position: relative; z-index: 1; }

/* Steps */
.steps-list { display: grid; gap: 0; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 44px;
  position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  font-family: var(--mono);
  font-size: 52px;
  font-weight: 500;
  color: var(--teal-2);
  opacity: 0.85;
  line-height: 0.95;
  min-width: 64px;
  letter-spacing: -0.02em;
}

.step-line {
  flex: 1;
  width: 1px;
  background: rgba(3,167,169,0.25);
  margin: 12px auto 0;
}

.step:last-child .step-line { display: none; }

.step-body { padding-top: 8px; }

.step-title {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.step-text {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 60ch;
}

.step-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #82e6e7;
  background: rgba(3,167,169,0.16);
  border: 1px solid rgba(3,167,169,0.25);
  border-radius: var(--r-pill);
  padding: 5px 14px;
}

.step-tip svg { width: 12px; height: 12px; }

/* ================================================================
   CTA section
================================================================ */
.cta-section {
  background: var(--teal);
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.6px),
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(3,52,50,0.40) 0%, transparent 70%);
  background-size: 26px 26px, auto;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 1;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.cta-section p {
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
}

/* ================================================================
   FAQ accordion
================================================================ */
.faq-item {
  border-top: 1px solid var(--rule);
  background: #fff;
  transition: background 0.2s;
}

.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-item:hover { background: var(--paper-2); }

.faq-item input[type="checkbox"] { display: none; }

.faq-label {
  display: block;
  cursor: pointer;
  padding: 24px 28px;
  transition: background 0.2s;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-num {
  font-family: var(--mono);
  color: var(--teal);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  min-width: 32px;
}

.faq-dash { color: var(--ink-faint); }

.faq-q {
  flex: 1;
  font-weight: 600;
  color: var(--teal-darker);
  font-size: 16px;
  letter-spacing: -0.012em;
  line-height: 1.35;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--teal-darker);
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 0.25s;
  flex-shrink: 0;
}

input[type="checkbox"]:checked ~ .faq-label .faq-toggle {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px 0 78px;
}

input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .faq-label { padding: 20px 22px; }
  .faq-header { gap: 12px; }
  .faq-answer { padding: 0 22px 0 22px; }
}

/* ================================================================
   Internal link cards
================================================================ */
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.link-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  border-color: var(--teal);
}

.link-card-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-tint);
  border: 1px solid rgba(2,133,135,0.20);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.link-card:hover .link-card-icon {
  background: var(--teal);
  border-color: var(--teal);
}

.link-card-icon svg { width: 24px; height: 24px; color: var(--teal); transition: color 0.2s; }
.link-card:hover .link-card-icon svg { color: #fff; }

.link-card-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.link-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.018em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.link-card-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

.link-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.2s;
}

.link-card:hover .link-card-arrow { gap: 12px; }

.link-card-arrow svg { width: 14px; height: 14px; }

@media (max-width: 900px) { .link-cards-grid { grid-template-columns: 1fr; } }

/* ================================================================
   Footer
================================================================ */
.footer {
  background: var(--teal-darker);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    var(--dots-dark),
    linear-gradient(to bottom, rgba(3,52,50,0.18) 0%, rgba(2,20,20,0.75) 100%),
    url('footer-pattern.jpg');
  background-size: 22px 22px, auto, cover;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: 0 0, 0 0, center top;
  pointer-events: none;
}

.footer > .container { position: relative; z-index: 1; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { display: flex; align-items: center; }
.footer-logo img {
  height: 44px !important;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}

.footer-contact-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 0 0 24px;
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social a {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-social a:hover { color: #fff; }
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-nav { gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   Reveal animations
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   Reading progress bar
================================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal));
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(2,133,135,0.4);
}

/* ================================================================
   Floating proof pill (rating)
================================================================ */
.proof-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  background: var(--teal-darker);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-float);
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.proof-pill .stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }
.proof-pill b { font-weight: 700; }

@media (max-width: 600px) {
  .proof-pill { font-size: 11px; padding: 6px 14px 6px 10px; }
}

/* ================================================================
   Tweaks panel container (component handles its own UI)
================================================================ */
:root.tweak-tighter { --gut: 24px; }

/* ================================================================
   Responsive overrides
================================================================ */
@media (max-width: 900px) {
  .hero { padding: 100px 0 64px; min-height: auto; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .answer-box { padding: 28px 24px; }
  .answer-box-section > .container > div { padding: 56px 0 !important; }
  .step { gap: 16px; margin-bottom: 32px; }
  .step-num { font-size: 36px; min-width: 48px; }
  .step-title { font-size: 18px; }
  .module-card { padding: 24px; }
  .link-card { padding: 22px; }
}

@media (max-width: 600px) {
  .hero { padding: 80px 0 48px; }
  section { padding: 56px 0; }
  /* Alle Hero-CTA-Container stapeln + Buttons full-width (Daumen-freundlich) */
  .hero-ctas, .hero-btns, .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas > a, .hero-btns > a, .hero-buttons > a { width: 100%; justify-content: center; }
  .hero h1 { font-size: 32px; }
  /* Hero-Body straffen: kleinere Schrift, weniger Marge, max. 4 Zeilen → CTA sitzt höher */
  .hero-body { font-size: 15px; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-subtitle { font-size: 16px; margin-bottom: 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; margin-top: 28px; }
  /* Antwort-Box: jede fixe Breite überschreiben (auch alte gecachte width:970px-HTML) */
  .answer-box { max-width: 100% !important; width: 100% !important; }
  .answer-box-section .container { padding-left: 20px; padding-right: 20px; }
}

/* ================================================================
   Print
================================================================ */
@media print {
  .navbar, .footer, .cta-section, .reading-progress, .tweaks-panel { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { background: #fff; min-height: auto; padding: 24px 0; }
  .hero h1, .section-title { color: #000; }
  .dark-section { background: #fff !important; color: #000 !important; }
  .dark-section .step-title, .dark-section .section-title { color: #000 !important; }
  .dark-section .step-text, .dark-section .section-subtitle { color: #444 !important; }
}


/* ================================================================
   Index page additions (article cards, über-grid, trust bar)
================================================================ */
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  color: var(--teal-darker);
  border-radius: var(--r-pill);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(3,52,50,0.16);
  transition: all 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
}

.btn-outline-hero:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(3,52,50,0.10);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-darker);
  border-radius: var(--r-pill);
  padding: 15px 32px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.btn-cta-white:hover {
  background: var(--teal-darker);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
}

/* Trust bar */
.trust-bar {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(3,52,50,0.14);
  padding-top: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(3,52,50,0.72);
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(2,133,135,0.16);
}

.trust-divider {
  color: rgba(3,52,50,0.20);
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .trust-bar { gap: 18px; padding-top: 22px; }
  .trust-divider { display: none; }
}

/* Section header wrap (centered) */
.section-header-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label-tag::before,
.section-label-tag::after {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Articles section (Ratgeber grid) */
.articles-section {
  background: var(--paper-2);
  position: relative;
}

.articles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-light);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.articles-section > .container { position: relative; z-index: 1; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-color: rgba(2,133,135,0.30);
}

.article-card:hover::before { transform: scaleX(1); }

.article-card.special {
  background: var(--teal-darker);
  border-color: var(--teal-darker);
}

.article-card.special::before { background: var(--gold); transform: scaleX(1); }

.article-card-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-tint);
  border: 1px solid rgba(2,133,135,0.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.2s;
}

.article-card:hover .article-card-icon {
  background: var(--teal);
  border-color: var(--teal);
}

.article-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  transition: color 0.2s;
}

.article-card:hover .article-card-icon svg { color: #fff; }

.article-card.special .article-card-icon {
  background: rgba(244,185,26,0.14);
  border-color: rgba(244,185,26,0.30);
}

.article-card.special .article-card-icon svg { color: var(--gold); }

.article-card-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card.special .article-card-tag { color: var(--gold); }

.article-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.018em;
  margin-bottom: 10px;
  line-height: 1.18;
}

.article-card.special .article-card-title { color: #fff; }

.article-card-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.article-card.special .article-card-desc { color: rgba(255,255,255,0.78); }

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.article-card.special .article-card-link { color: var(--gold); font-weight: 700; }

.article-card:hover .article-card-link { gap: 12px; }

.article-card-link svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .article-grid { grid-template-columns: 1fr; }
}

/* Über uns grid */
.ueber-section { background: #fff; }

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ueber-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--teal-darker);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.ueber-text p {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 56ch;
}

.ueber-text p strong { color: var(--teal-darker); font-weight: 600; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stats-grid .stat-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-grid .stat-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(2,133,135,0.10);
  transform: translateY(-2px);
}

.stats-grid .stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.stats-grid .stat-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .ueber-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Section labels in CTA section override */
.cta-section .section-label,
.cta-section .section-label-tag {
  color: rgba(255,255,255,0.55);
}


/* ================================================================
   Tweaks: halftone dots toggle
================================================================ */
body.tweak-no-dots .hero::before,
body.tweak-no-dots .dark-section::before,
body.tweak-no-dots .footer::before,
body.tweak-no-dots .gray-section::before,
body.tweak-no-dots .cta-section::before,
body.tweak-no-dots .articles-section::before { display: none !important; }


/* ================================================================
   POLISHED COMPONENTS FOR RATGEBER PAGES
   (restyled versions of all per-page utilities)
================================================================ */

/* Section backgrounds */
.section-bg-white { background: #fff; }
.section-bg-gray {
  background: var(--gray-bg);
  position: relative;
}
.section-bg-gray::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-light);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}
.section-bg-gray > .container { position: relative; z-index: 1; }

/* Section header (centered variant for in-section heads) */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

/* Nav logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
}

/* Hero button group (alias of hero-ctas) */
.hero-btns, .hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Standalone card-icon (used in unterlagen, hero stat blocks, etc) */
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2,133,135,0.22);
}
.card-icon svg { width: 22px; height: 22px; color: #fff; }

/* Unterlagen list (required documents) */
.unterlagen-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.unterlagen-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  transition: all 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.unterlagen-item:hover {
  border-color: var(--teal);
  transform: translateX(3px);
  box-shadow: var(--shadow-float);
}

.unterlagen-text { flex: 1; }

.unterlagen-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-darker);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.unterlagen-text p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 0;
}

/* Warning section (Fehler / Mistakes) */
.warning-section {
  background: var(--paper-2);
  position: relative;
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.warning-card {
  background: #fff;
  border: 1px solid rgba(214, 58, 58, 0.18);
  border-top: 3px solid var(--warn);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 2px 8px rgba(214,58,58,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.22s;
}

.warning-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(214,58,58,0.10);
  border-color: rgba(214,58,58,0.30);
}

.warning-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--warn);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.warning-title, .warning-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}

.warning-text, .warning-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 0;
}

.warning-fix {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--teal-tint);
  border-left: 2px solid var(--teal);
  border-radius: 6px;
  font-size: 13px;
  color: var(--teal-darker);
  line-height: 1.55;
  font-weight: 500;
}

.warning-fix::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .warning-grid { grid-template-columns: 1fr; }
}

/* Phase cards (e.g. Gründungszuschuss phases) */
.phase-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.phase-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.22s;
}

.phase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  border-color: rgba(2,133,135,0.30);
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}

.phase-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.phase-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-darker);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}

.phase-duration {
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 500;
}

.phase-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

@media (max-width: 700px) { .phase-cards { grid-template-columns: 1fr; } }

/* Data table */
.table-section { background: #fff; }
.table-wrap {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
}

.data-table, .compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.compare-table th {
  background: var(--teal-darker);
  color: #fff;
  padding: 16px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-family: var(--sans);
}

.data-table td,
.compare-table td {
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  color: var(--ink-2);
  line-height: 1.55;
}

.data-table tr:nth-child(even) td,
.compare-table tr:nth-child(even) td {
  background: var(--paper-2);
}

.data-table tr:hover td,
.compare-table tr:hover td {
  background: var(--teal-tint);
}

.data-table strong, .compare-table strong { color: var(--teal-darker); font-weight: 600; }

.table-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 14px;
  font-style: italic;
  line-height: 1.55;
}

/* Info box */
.info-box {
  background: linear-gradient(160deg, #fff 0%, var(--teal-tint) 100%);
  border: 1px solid rgba(2,133,135,0.18);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--teal-darker);
  line-height: 1.7;
}

.info-box strong { color: var(--teal); font-weight: 700; }

.info-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 14px;
  font-style: italic;
  line-height: 1.55;
  padding-left: 12px;
  border-left: 2px solid var(--rule);
}

/* Checklist (generic — used in businessplan etc) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--teal-darker);
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: all 0.2s;
}

.checklist li:hover {
  border-color: var(--teal);
  transform: translateX(2px);
}

.check-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 700;
}

.check-mark svg { width: 12px; height: 12px; color: #fff; }

.check-item-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-darker);
  line-height: 1.5;
}

.check-item-text small {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.55;
}

/* Checklist columns */
.checklist-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 32px;
}

.checklist-group-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) { .checklist-cols { grid-template-columns: 1fr; gap: 24px; } }

/* FAQ extras */
.faq-section {
  background: var(--gray-bg);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-light);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.faq-section > .container { position: relative; z-index: 1; }

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-container .faq-item:first-child { border-top: 0; }
.faq-container .faq-item:last-child { border-bottom: 0; }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faq-answer-inner { padding: 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  flex-wrap: wrap;
  /* Abstand zur fixierten Navbar (72px) — sonst überlappt Breadcrumb das Logo */
  padding-top: 88px;
}
@media (max-width: 768px) {
  .breadcrumb { padding-top: 80px; }
}
/* Auf Breadcrumb-Seiten hat die Breadcrumb die Navbar schon freigeräumt
   → Hero braucht keine große Top-Clearance mehr (sonst Doppel-Gap) */
.breadcrumb + main .hero { padding-top: 28px; min-height: auto; }
@media (max-width: 900px) { .breadcrumb + main .hero { padding-top: 20px; } }

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-list a { color: var(--ink-mute); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--ink-faint); }

/* Internal links section */
.links-section { background: #fff; }
.internal-links {
  padding: 80px 0;
}
@media (max-width: 700px) { .internal-links { padding: 56px 0; } }

/* Trust icon */
.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

/* Badge teal */
.badge-teal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-tint);
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

/* CTA helpers */
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.66);
  margin-top: 16px;
  font-style: italic;
}

/* Step content (process step inner) */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ================================================================
   QUIZ (Fördercheck)
================================================================ */
.quiz-section { background: var(--gray-bg); position: relative; }
.quiz-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-light);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.quiz-section > .container { position: relative; z-index: 1; }

.quiz-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-float);
  position: relative;
}

@media (max-width: 600px) {
  .quiz-box { padding: 28px 22px; border-radius: var(--r-lg); }
}

.quiz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-tint);
  color: var(--teal);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.progress-bar-wrap {
  height: 6px;
  background: var(--paper-3);
  border-radius: var(--r-pill);
  margin-bottom: 36px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-2), var(--teal));
  border-radius: var(--r-pill);
  transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 0 12px rgba(2,133,135,0.40);
}

.quiz-step { display: none; animation: fadeUp 0.4s ease both; }
.quiz-step.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.quiz-step > p {
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 22px;
  line-height: 1.55;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid var(--rule);
  border-radius: var(--r-md);
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s;
  user-select: none;
}

.option-card:hover {
  border-color: var(--teal);
  background: var(--teal-tint);
  transform: translateX(3px);
}

.option-card:has(input:checked),
.option-card.selected {
  border-color: var(--teal);
  background: var(--teal-tint);
  box-shadow: 0 0 0 3px rgba(2,133,135,0.10);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.option-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--rule);
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}

.option-card:hover .option-dot { border-color: var(--teal); }

.option-card.selected .option-dot,
.option-card:has(input:checked) .option-dot {
  border-color: var(--teal);
  background: var(--teal);
}

.option-card.selected .option-dot::after,
.option-card:has(input:checked) .option-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
}

.option-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-darker);
  line-height: 1.4;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.btn-back, .btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.22s;
}

.btn-back {
  background: transparent;
  color: var(--ink-mute);
  border-color: var(--rule);
}

.btn-back:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-back:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-next {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(2,133,135,0.24);
}

.btn-next:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(2,133,135,0.32);
}

.btn-next:disabled {
  background: var(--paper-3);
  color: var(--ink-faint);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.quiz-restart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 18px;
  background: transparent;
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid var(--rule);
  transition: all 0.2s;
}

.quiz-restart:hover { border-color: var(--teal); color: var(--teal); }

/* Result card */
.result-card {
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.result-card.teal {
  background: linear-gradient(160deg, var(--teal-tint) 0%, #fff 100%);
  border: 2px solid var(--teal);
}

.result-card.amber {
  background: linear-gradient(160deg, #fef9eb 0%, #fff 100%);
  border: 2px solid var(--gold);
}

.result-card.warn {
  background: linear-gradient(160deg, var(--warn-tint) 0%, #fff 100%);
  border: 2px solid rgba(214,58,58,0.4);
}

.result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(2,133,135,0.24);
}

.result-card.amber .result-icon { background: var(--gold); box-shadow: 0 6px 18px rgba(244,185,26,0.30); }
.result-card.warn .result-icon { background: var(--warn); box-shadow: 0 6px 18px rgba(214,58,58,0.30); }

.result-icon svg { width: 28px; height: 28px; color: #fff; }

.result-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.result-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 50ch;
  margin: 0 auto 20px;
}

.result-text strong { color: var(--teal-darker); font-weight: 700; }

.result-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Answer card extra fields */
.answer-card-key {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.answer-card-val {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-darker);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.answer-card-sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.4;
}


/* ================================================================
   Rounded section transitions (matches main-site rhythm)
   Section's top-left/top-right corners curve up, creating a soft
   "drawer" effect over the previous section.
================================================================ */
.section-bg-gray,
.gray-section,
.articles-section,
.faq-section,
.warning-section,
.quiz-section,
.cta-section,
.dark-section,
.footer {
  border-top-left-radius: clamp(20px, 3.5vw, 40px);
  border-top-right-radius: clamp(20px, 3.5vw, 40px);
  /* lift over previous section so the curve reads */
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

/* The hero never gets a top radius */
.hero,
.article-hero { border-top-left-radius: 0; border-top-right-radius: 0; margin-top: 0; }

/* If two rounded sections sit adjacent, the second one is allowed
   to overlap a touch — already handled by margin-top: -28px */

/* Footer always sits flush against whatever comes before it; keep
   the curve but slightly less aggressive negative margin */
.footer { margin-top: -16px; }

/* Print: remove the negative margins so PDF doesn't clip */
@media print {
  .section-bg-gray, .gray-section, .articles-section, .faq-section,
  .warning-section, .quiz-section, .cta-section, .dark-section, .footer {
    border-radius: 0; margin-top: 0;
  }
}

/* ================================================================
   Autorenbox (E-E-A-T)
================================================================ */
.author-box {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
  padding: 26px 30px;
  background: var(--teal-tint);
  border: 1px solid rgba(2,133,135,0.16);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-lg);
}
.author-box img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(3,52,50,0.18);
}
.author-box-text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--ink-mute);
}
.author-box-text strong { color: var(--teal-darker); font-weight: 700; }
.author-box-text a { color: var(--teal); font-weight: 600; text-decoration: none; }
.author-box-text a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .author-box { flex-direction: column; text-align: center; gap: 14px; padding: 24px 20px; }
}

/* ================================================================
   Accessibility — Fokus & Skip-Link
================================================================ */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}
.dark-section :focus-visible,
.cta-section :focus-visible,
.footer :focus-visible,
.hero :focus-visible {
  outline-color: #ffffff;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 9999;
  background: var(--teal-darker);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 0;
}

/* =========================================================
   DECISION BOX — "Bist Du hier richtig?"
   ========================================================= */
.decision-box-section {
  padding: 0 0 64px;
  background: transparent;
}
.decision-box {
  max-width: 970px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid var(--teal, #028587);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 6px 22px rgba(3, 52, 50, 0.10);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}
.decision-box .decision-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal, #028587);
  background: rgba(2, 133, 135, 0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.decision-box h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 26px;
  color: var(--secondary, #033432);
  line-height: 1.2;
}
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.decision-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.decision-col.yes h4 { color: var(--teal, #028587); }
.decision-col.no h4 { color: #a3340b; }
.decision-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.decision-col li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: #1A1A1A;
  border-bottom: 1px solid rgba(3, 52, 50, 0.06);
}
.decision-col li:last-child { border-bottom: 0; }
.decision-col.yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--teal, #028587);
  font-weight: 800;
  font-size: 16px;
}
.decision-col.no li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 8px;
  color: #a3340b;
  font-weight: 800;
  font-size: 16px;
}
.decision-col a {
  color: var(--teal, #028587);
  text-decoration: underline;
  text-decoration-color: rgba(2, 133, 135, 0.35);
  text-underline-offset: 2px;
  font-weight: 600;
}
.decision-col a:hover {
  text-decoration-color: var(--teal, #028587);
}
@media (max-width: 700px) {
  .decision-box { padding: 24px 22px; }
  .decision-box h3 { font-size: 20px; }
  .decision-grid { grid-template-columns: 1fr; gap: 24px; }
}
/* =========================================================
   SOURCES BOX (Quellenbox) — §-Verweise pro Förderseite
   ========================================================= */
.sources-box {
  max-width: 970px;
  margin: 0 auto;
  background: rgba(2, 133, 135, 0.04);
  border-left: 4px solid var(--teal, #028587);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px;
  color: #4a5d5b;
  line-height: 1.6;
}
.sources-box strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal, #028587);
  margin-bottom: 8px;
  font-weight: 700;
}
.sources-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sources-box li {
  padding: 3px 0;
}
.sources-box a {
  color: var(--secondary, #033432);
  text-decoration: underline;
  text-decoration-color: rgba(2, 133, 135, 0.3);
}
.sources-box a:hover {
  text-decoration-color: var(--teal, #028587);
}
.sources-section { padding: 40px 0 64px; }
@media (max-width: 700px) {
  .sources-box { padding: 20px; font-size: 13px; }
}
/* =========================================================
   CHECKLIST ITEM TEXT — strong + span fix
   strong = title (block), span = description (block, muted)
   ========================================================= */
.checklist .check-item > div > strong,
.check-item-body strong {
  display: block;
  font-weight: 600;
  color: var(--teal-darker, #033432);
  margin-bottom: 4px;
  line-height: 1.4;
}
.checklist .check-item > div > span,
.check-item-body span {
  display: block;
  font-size: 13px;
  color: var(--ink-mute, #4a5d5b);
  font-weight: 400;
  line-height: 1.55;
}