/* =========================================================
   Balkanfit by drilic – Subpfad-Styles
   Ergänzt /style.css (drilic-Designsystem) um Balkanfit-Elemente.
   Erwartet, dass /style.css zuvor geladen wurde.
   ========================================================= */

:root {
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-700: #44403c;
  --emerald-50:  #ecfdf5;
  --emerald-700: #047857;
  --radius-card: 22px;
  --radius-card-lg: 28px;
  --radius-pill: 999px;
}

/* Scroll-Margin: Anker-Sprünge dürfen nicht von der sticky Nav verdeckt werden */
.bf-section[id], section[id] {
  scroll-margin-top: 80px;
}

/* ===== Container-Breite leicht weiter ===== */
.bf-container       { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.bf-container--wide { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ===== Hero: warmes Stone-50, Split mit Score-Preview ===== */
.bf-hero {
  background-color: var(--stone-50);
  background-image:
    linear-gradient(rgba(26,37,64,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,37,64,0.025) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bf-hero-canvas {
  position: absolute;
  top: 0; right: 0;
  width: 65%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  animation: bfHeroDrift 26s ease-in-out infinite alternate;
}
.bf-hero-canvas object,
.bf-hero-canvas svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.bf-hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--stone-50) 0%,
    rgba(250,250,249,0.88) 30%,
    rgba(250,250,249,0.30) 55%,
    rgba(250,250,249,0.0) 80%
  );
}
.bf-hero > .bf-container { position: relative; z-index: 2; }
@keyframes bfHeroDrift {
  from { transform: translate3d(-8px, -5px, 0) scale(1.02); }
  to   { transform: translate3d(8px,  5px, 0) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .bf-hero-canvas { animation: none; transform: none; }
}
@media (max-width: 900px) {
  .bf-hero-canvas { animation: none; opacity: 0.45; width: 95%; }
  .bf-hero::before {
    background: linear-gradient(
      90deg,
      var(--stone-50) 0%,
      rgba(250,250,249,0.95) 55%,
      rgba(250,250,249,0.75) 100%
    );
  }
}
.bf-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.bf-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.bf-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.04; margin: 12px 0 18px; color: var(--navy);
}
.bf-hero h1 em { font-style: normal; color: var(--blue); }
.bf-hero-lead {
  font-size: 17px; color: var(--mid); line-height: 1.7;
  max-width: 560px; margin-bottom: 32px;
}
.bf-hero-chips {
  display: inline-flex; gap: 8px; padding: 8px 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px; color: var(--mid); margin-bottom: 6px;
}
.bf-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bf-hero-actions .btn {
  border-radius: var(--radius-pill);
  padding: 13px 24px;
}
.bf-hero-note {
  margin-top: 28px; max-width: 580px;
  padding: 14px 18px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 13.5px; color: var(--muted); line-height: 1.65;
}

/* Score Preview Card */
.bf-score-card-wrap {
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 20px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-score-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-score-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.bf-score-card-head .bf-eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.bf-score-card-head h2 {
  margin-top: 6px;
  font-size: 22px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em;
}
.bf-score-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--emerald-50); color: var(--emerald-700);
  font-size: 12.5px; font-weight: 600;
}
.bf-score-pill::before {
  content: ''; display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-700);
}
.bf-score-rows { display: flex; flex-direction: column; gap: 16px; }
.bf-score-row .bf-score-row-meta {
  display: flex; justify-content: space-between;
  font-size: 13.5px; margin-bottom: 6px;
}
.bf-score-row-meta .bf-score-label { font-weight: 600; color: var(--navy); }
.bf-score-row-meta .bf-score-value { color: var(--muted); }
.bf-score-bar {
  height: 7px; border-radius: 6px;
  background: var(--stone-200); overflow: hidden;
}
.bf-score-bar-fill {
  display: block; height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.bf-score-pilot {
  margin-top: 22px;
  padding: 18px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 16px;
}
.bf-score-pilot .bf-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.bf-score-pilot h3 {
  margin: 6px 0 8px;
  font-size: 16px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em;
}
.bf-score-pilot p {
  font-size: 14px; color: var(--mid); line-height: 1.65;
}
.bf-score-disclaimer {
  margin-top: 12px;
  font-size: 11.5px; color: var(--muted);
}

/* ===== Generischer Eyebrow + Section-Titel ===== */
.bf-eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
  display: inline-block;
}
.bf-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; color: var(--navy); margin-bottom: 18px;
}
.bf-lead {
  font-size: 17px; color: var(--mid);
  max-width: 720px; line-height: 1.75; margin-bottom: 48px;
}

/* ===== Sections (Balkanfit) ===== */
.bf-section {
  padding: 88px 0;
  background: #fff; position: relative;
}
.bf-section--stone {
  background: var(--stone-50);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}
.bf-section--dark {
  background: var(--navy); color: #fff;
}
.bf-section--dark .bf-eyebrow { color: var(--blue); }
.bf-section--dark .bf-h2     { color: #fff; }
.bf-section--dark .bf-lead   { color: rgba(255,255,255,0.7); }

/* ===== Drei Tiles (Was Balkanfit analysiert) ===== */
.bf-tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bf-tile {
  background: #fff; padding: 28px;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-tile .bf-tile-num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--blue); margin-bottom: 12px;
}
.bf-tile h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.bf-tile p { font-size: 15px; color: var(--mid); line-height: 1.75; }

/* ===== Standort-Split (Serbien/Bosnien/Hybrid) ===== */
.bf-loc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bf-loc {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 32px;
}
.bf-loc--dark {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
}
.bf-loc .bf-loc-eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.bf-loc--dark .bf-loc-eyebrow { color: rgba(255,255,255,0.55); }
.bf-loc h3 {
  font-size: 24px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 22px; line-height: 1.2;
}
.bf-loc--dark h3 { color: #fff; }
.bf-loc ul { list-style: none; padding: 0; margin: 0; }
.bf-loc li {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  padding: 9px 0; border-top: 1px solid var(--stone-200);
  display: flex; align-items: center; gap: 10px;
}
.bf-loc li:first-child { border-top: none; }
.bf-loc li::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.bf-loc--dark li {
  color: rgba(255,255,255,0.75);
  border-top-color: rgba(255,255,255,0.08);
}
.bf-loc--dark li::before { background: var(--blue); }
.bf-loc--dark p {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-top: 4px;
}

/* ===== Use-Case-Karten ===== */
.bf-uc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bf-uc-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-uc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.bf-uc-card h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em;
}
.bf-uc-tag {
  font-size: 11.5px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--stone-100); color: var(--mid);
}
.bf-uc-tag--hybrid { background: var(--light); color: var(--blue-dark); }
.bf-uc-tag--serbien { background: var(--navy); color: #fff; }
.bf-uc-tag--bosnien { background: var(--stone-200); color: var(--navy); }
.bf-uc-meta {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 14px; margin-bottom: 4px;
}
.bf-uc-text { font-size: 14.5px; color: var(--mid); line-height: 1.7; }

/* ===== Beispiel-Scan Block ===== */
.bf-example {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px;
  align-items: start;
}
.bf-example-text h2 { color: var(--navy); }
.bf-example-grid {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bf-example-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 20px;
}
.bf-example-card--full { grid-column: 1 / -1; }
.bf-example-card .bf-eyebrow {
  font-size: 11px; color: var(--blue); margin-bottom: 8px;
}
.bf-example-card h3 {
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.bf-example-card p,
.bf-example-card ul { font-size: 14.5px; color: var(--mid); line-height: 1.7; }
.bf-example-card ul { padding-left: 18px; }

.bf-cta-strip {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

/* ===== Pakete ===== */
.bf-pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bf-pkg {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 32px;
  display: flex; flex-direction: column;
}
.bf-pkg--hi {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(26,37,64,0.12);
}
.bf-pkg h3 {
  font-size: 22px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em;
}
.bf-pkg--hi h3 { color: #fff; }
.bf-pkg-price {
  font-size: 18px; font-weight: 600; color: var(--blue);
  margin: 6px 0 14px;
}
.bf-pkg--hi .bf-pkg-price { color: #fff; }
.bf-pkg-desc {
  font-size: 14.5px; color: var(--mid); line-height: 1.7; margin-bottom: 18px;
}
.bf-pkg--hi .bf-pkg-desc { color: rgba(255,255,255,0.7); }
.bf-pkg-out-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.bf-pkg--hi .bf-pkg-out-label { color: rgba(255,255,255,0.55); }
.bf-pkg ul { list-style: none; padding: 0; margin: 0 0 22px; }
.bf-pkg li {
  font-size: 14.5px; color: var(--mid); line-height: 1.7;
  padding: 6px 0;
  display: flex; gap: 10px; align-items: flex-start;
}
.bf-pkg li::before {
  content: ''; flex-shrink: 0;
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); margin-top: 9px;
}
.bf-pkg--hi li { color: rgba(255,255,255,0.85); }
.bf-pkg-cta { margin-top: auto; }
.bf-pkg-cta .btn {
  border-radius: var(--radius-pill);
  width: 100%; text-align: center;
}
.bf-pkg-note {
  margin-top: 22px; font-size: 13px; color: var(--muted);
}

/* ===== Ablauf (4 Schritte) ===== */
.bf-flow-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.bf-flow-step {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 24px;
}
.bf-flow-step .bf-step-num {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.bf-flow-step h3 {
  font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.bf-flow-step p {
  font-size: 14.5px; color: var(--mid); line-height: 1.65;
}

/* ===== Markt-Briefing CTA Strip ===== */
.bf-briefing-strip {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 800px 360px at 50% 50%,
                    rgba(47,111,159,0.18) 0%, transparent 60%);
  background-size: 64px 64px, 64px 64px, auto;
  color: #fff;
  padding: 56px 0;
}
.bf-briefing-inner {
  display: grid; grid-template-columns: 1.5fr auto; gap: 36px;
  align-items: center;
}
.bf-briefing-inner h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 10px;
}
.bf-briefing-inner p {
  font-size: 15.5px; color: rgba(255,255,255,0.7); line-height: 1.7;
  max-width: 640px;
}
.bf-briefing-inner .btn {
  border-radius: var(--radius-pill);
}

/* ===== Warum drilic Liste ===== */
.bf-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 900px;
}
.bf-why-grid li {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14.5px; color: var(--mid); line-height: 1.6;
  list-style: none;
}

/* ===== FAQ ===== */
.bf-faq { max-width: 820px; margin: 0 auto; }
.bf-faq details {
  border-bottom: 1px solid var(--stone-200);
  padding: 18px 0;
}
.bf-faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; gap: 16px;
  align-items: flex-start;
  font-size: 16.5px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em;
}
.bf-faq summary::-webkit-details-marker { display: none; }
.bf-faq summary::after {
  content: '+'; flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--stone-200);
  border-radius: 50%; color: var(--mid);
  font-size: 18px; line-height: 1; font-weight: 400;
  transition: transform 0.2s;
}
.bf-faq details[open] summary::after { transform: rotate(45deg); }
.bf-faq details p {
  margin-top: 12px;
  font-size: 15px; color: var(--mid); line-height: 1.75;
  max-width: 720px;
}

/* ===== Abschluss-CTA ===== */
.bf-cta-final {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(ellipse 900px 460px at 50% 50%,
                    rgba(47,111,159,0.22) 0%, transparent 60%);
  background-size: 64px 64px, 64px 64px, auto;
  color: #fff; padding: 88px 0; text-align: center;
}
.bf-cta-final h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px;
}
.bf-cta-final p {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 580px; margin: 0 auto 28px; line-height: 1.65;
}
.bf-cta-final .actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.bf-cta-final .btn { border-radius: var(--radius-pill); }

/* ===== Tally-Einbettung ===== */
.bf-form-shell {
  background: var(--stone-50);
  min-height: 100vh;
  padding: 56px 0 80px;
}
.bf-form-card {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 32px;
  box-shadow: 0 4px 14px rgba(26,37,64,0.06);
}
.bf-form-head {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--stone-200);
}
.bf-form-head .bf-eyebrow {
  margin-bottom: 8px;
}
.bf-form-head h1 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--navy); margin: 0 0 10px;
}
.bf-form-head p {
  font-size: 15.5px; color: var(--mid); line-height: 1.7;
}
/* ===== Native HTML-Formular (Self-Hosted) ===== */
.bf-form { display: flex; flex-direction: column; gap: 26px; }
.bf-form-section-h {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin: 8px 0 -8px;
}
.bf-fg { display: flex; flex-direction: column; gap: 6px; }
.bf-label {
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.005em;
}
.bf-label .bf-req { color: var(--blue); }
.bf-hint { font-size: 12.5px; color: var(--muted); margin: 0; }
.bf-input,
.bf-select,
.bf-textarea {
  width: 100%; font-family: inherit; font-size: 14.5px;
  color: var(--navy); background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 14px;
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.bf-textarea { resize: vertical; min-height: 110px; }
.bf-input:focus,
.bf-select:focus,
.bf-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,111,159,0.12);
}
.bf-input:invalid:not(:placeholder-shown),
.bf-textarea:invalid:not(:placeholder-shown) {
  border-color: #d35a5a;
}
.bf-checkboxes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.bf-checkboxes label {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 10px; font-size: 14px; color: var(--mid);
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.bf-checkboxes label:hover { border-color: var(--blue); }
.bf-checkboxes input { accent-color: var(--blue); width: 16px; height: 16px; }
.bf-consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--stone-50); border: 1px solid var(--stone-200);
  border-radius: 12px;
  font-size: 13.5px; color: var(--mid); line-height: 1.6;
  cursor: pointer;
}
.bf-consent input {
  accent-color: var(--blue); width: 16px; height: 16px;
  margin-top: 3px; flex-shrink: 0;
}
.bf-consent a { color: var(--blue); text-decoration: underline; }
.bf-submit {
  margin-top: 10px;
  padding: 14px 28px;
  background: var(--navy); color: #fff;
  border: 0; border-radius: var(--radius-pill);
  font-size: 14.5px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background 0.15s;
}
.bf-submit:hover { background: var(--blue); }
.bf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.bf-form-error {
  padding: 14px 16px; border-radius: 12px;
  background: #fdecec; border: 1px solid #f5c4c4;
  color: #8a2424; font-size: 14px; line-height: 1.55;
}
.bf-honeypot {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
@media (max-width: 700px) {
  .bf-checkboxes { grid-template-columns: 1fr; }
}

/* ===== Danke-Seite ===== */
.bf-thanks {
  background: var(--stone-50);
  min-height: 70vh;
  padding: 96px 0;
}
.bf-thanks-card {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 48px;
  box-shadow: 0 4px 14px rgba(26,37,64,0.06);
}
.bf-thanks-card h1 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 14px;
}
.bf-thanks-card p {
  font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 12px;
}
.bf-thanks-card .actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.bf-thanks-card .btn { border-radius: var(--radius-pill); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .bf-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bf-tile-grid,
  .bf-loc-grid { grid-template-columns: 1fr; }
  .bf-uc-grid,
  .bf-pkg-grid { grid-template-columns: 1fr 1fr; }
  .bf-flow-grid { grid-template-columns: 1fr 1fr; }
  .bf-example { grid-template-columns: 1fr; }
  .bf-briefing-inner { grid-template-columns: 1fr; }
  .bf-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .bf-container, .bf-container--wide { padding: 0 24px; }
  .bf-section { padding: 64px 0; }
  .bf-hero { padding: 64px 0 56px; }
  .bf-uc-grid,
  .bf-pkg-grid,
  .bf-flow-grid,
  .bf-example-grid { grid-template-columns: 1fr; }
  .bf-form-card,
  .bf-thanks-card { padding: 28px 22px; }
}

/* =========================================================
   Signal Check Wizard (signal-check.html)
   ========================================================= */
.bf-check-shell {
  background:
    linear-gradient(rgba(26,37,64,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,37,64,0.025) 1px, transparent 1px),
    radial-gradient(ellipse 900px 600px at 100% 0%,
                    rgba(47,111,159,0.10) 0%, transparent 65%),
    var(--stone-50);
  background-size: 64px 64px, 64px 64px, auto, auto;
  min-height: 100vh;
  padding: 64px 0 96px;
}
.bf-check-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.bf-check-head h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--navy); margin: 8px 0 14px; line-height: 1.15;
}
.bf-check-head p {
  font-size: 16px; color: var(--mid); line-height: 1.7; max-width: 620px; margin: 0 auto;
}

/* Progress */
.bf-check-progress {
  max-width: 880px; margin: 0 auto 28px;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-check-progress-bar {
  height: 6px; background: var(--stone-200);
  border-radius: 999px; overflow: hidden; margin-bottom: 8px;
}
.bf-check-progress-bar span {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
  transition: width 0.35s ease;
}
.bf-check-progress-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--muted);
}
.bf-check-progress-meta strong { color: var(--navy); font-weight: 700; }

/* Step container */
.bf-check-step {
  max-width: 880px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 40px;
  box-shadow: 0 4px 14px rgba(26,37,64,0.06);
}
.bf-check-q {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy); margin: 0 0 8px;
}
.bf-check-sub {
  font-size: 14.5px; color: var(--mid); line-height: 1.7; margin: 0 0 24px;
}
.bf-check-grouph {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin: 28px 0 12px;
}
.bf-check-grouph:first-of-type { margin-top: 8px; }

/* Cards */
.bf-check-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}
.bf-check-cards--col { grid-template-columns: 1fr 1fr; }
.bf-check-card {
  text-align: left; cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.bf-check-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(47,111,159,0.10);
}
.bf-check-card.is-active {
  border-color: var(--blue);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(47,111,159,0.15);
}
.bf-check-card-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  align-self: flex-start;
}
.bf-check-card-title {
  font-size: 15.5px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.3;
}
.bf-check-card-text {
  font-size: 13.5px; color: var(--mid); line-height: 1.55;
}

/* Chips */
.bf-check-chips {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.bf-check-chips label {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--stone-200);
  border-radius: 12px;
  font-size: 13.5px; color: var(--mid);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.bf-check-chips label:hover { border-color: var(--blue); }
.bf-check-chips label.is-active {
  background: var(--light);
  border-color: var(--blue);
  color: var(--navy);
  font-weight: 600;
}
.bf-check-chips input { accent-color: var(--blue); width: 16px; height: 16px; }

/* Nav */
.bf-check-nav {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.bf-check-nav .btn {
  border-radius: var(--radius-pill);
  padding: 12px 22px;
}
.bf-check-nav .btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ===== Ergebnis ===== */
.bf-result { padding: 4px; }
.bf-result h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--navy); margin: 6px 0 10px;
}
.bf-result-lead {
  font-size: 15.5px; color: var(--mid); line-height: 1.7; margin: 0 0 28px;
}
.bf-result-bars {
  display: flex; flex-direction: column; gap: 16px;
  padding: 20px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  margin-bottom: 22px;
}
.bf-result-bar-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13.5px; margin-bottom: 6px;
}
.bf-result-bar-label { font-weight: 700; color: var(--navy); }
.bf-result-bar-value { color: var(--muted); font-size: 12.5px; }
.bf-result-bar-track {
  height: 8px; border-radius: 6px;
  background: #fff; border: 1px solid var(--stone-200); overflow: hidden;
}
.bf-result-bar-fill {
  display: block; height: 100%; border-radius: 6px;
  transition: width 0.5s ease;
}
.bf-fit-niedrig { background: linear-gradient(90deg, #cfd8e3 0%, #aeb8c4 100%); }
.bf-fit-mittel  { background: linear-gradient(90deg, #93b7e6 0%, var(--blue) 100%); }
.bf-fit-hoch    { background: linear-gradient(90deg, var(--blue) 0%, var(--navy) 100%); }
.bf-result-bar--exec .bf-result-bar-track { background: #f0ece2; border-color: #e3dcc6; }
.bf-result-bar--exec .bf-fit-niedrig { background: linear-gradient(90deg, #e0c389 0%, #b48b3a 100%); }
.bf-result-bar--exec .bf-fit-mittel  { background: linear-gradient(90deg, #d0b271 0%, #8a6a2a 100%); }
.bf-result-bar--exec .bf-fit-hoch    { background: linear-gradient(90deg, var(--blue) 0%, var(--navy) 100%); }

.bf-result-pilot {
  padding: 22px;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-card);
  margin-bottom: 18px;
}
.bf-result-pilot .bf-eyebrow { color: var(--blue); }
.bf-result-pilot h3 {
  font-size: 19px; font-weight: 800; color: #fff;
  letter-spacing: -0.015em; margin: 6px 0 10px;
}
.bf-result-pilot p {
  font-size: 14.5px; color: rgba(255,255,255,0.78); line-height: 1.7;
}

.bf-result-risk {
  padding: 16px 18px;
  background: #fff4e0; border: 1px solid #f0d59a;
  border-radius: 14px;
  margin-bottom: 18px;
}
.bf-result-risk--high { background: #fdecec; border-color: #f5c4c4; }
.bf-result-risk-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #8a5a14; display: block; margin-bottom: 6px;
}
.bf-result-risk--high .bf-result-risk-label { color: #8a2424; }
.bf-result-risk p {
  font-size: 14px; color: #5e4814; line-height: 1.65; margin: 0;
}
.bf-result-risk--high p { color: #6b1f1f; }

.bf-result-disclaimer {
  font-size: 12.5px; color: var(--muted); line-height: 1.6;
  margin-bottom: 22px;
}
.bf-result-cta {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.bf-result-cta .btn { border-radius: var(--radius-pill); }
.bf-result-foot {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--stone-50); border: 1px solid var(--stone-200);
  border-radius: 12px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* ===== Hero-Launcher (auf /balkanfit/ index) =====
   Ersetzt die statische score-preview-card durch interaktive Karten,
   die direkt in den Signal Check führen. */
.bf-launcher {
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 20px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-launcher-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-launcher-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.bf-launcher-head .bf-eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin: 0;
}
.bf-launcher-card h2 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin: 4px 0 6px;
}
.bf-launcher-sub {
  font-size: 14px; color: var(--mid); line-height: 1.6; margin: 0 0 18px;
}
.bf-launcher-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.bf-launcher-link {
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none;
  padding: 13px 14px;
  border: 1.5px solid var(--stone-200);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.bf-launcher-link:hover {
  border-color: var(--blue);
  background: var(--light);
}
.bf-launcher-link-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.005em;
}
.bf-launcher-link-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.bf-launcher-foot {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.bf-launcher-foot a {
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-decoration: none;
}
.bf-launcher-foot a:hover { text-decoration: underline; }
.bf-launcher-foot .bf-launcher-note {
  font-size: 11.5px; color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .bf-check-cards { grid-template-columns: 1fr 1fr; }
  .bf-check-chips { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .bf-check-step { padding: 24px 20px; }
  .bf-check-cards,
  .bf-check-cards--col,
  .bf-check-chips { grid-template-columns: 1fr; }
  .bf-launcher-grid { grid-template-columns: 1fr; }
  .bf-result-pilot { padding: 18px; }
  .bf-check-nav { flex-direction: column-reverse; align-items: stretch; }
  .bf-check-nav .btn { width: 100%; text-align: center; }
}

/* =========================================================
   Smart-Routing Hero Promptbox
   ========================================================= */
.bf-prompt {
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 20px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-prompt-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-prompt-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 4px;
}
.bf-prompt-head .bf-eyebrow { margin: 0; }
.bf-prompt-card h2 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin: 6px 0 8px;
}
.bf-prompt-sub {
  font-size: 14px; color: var(--mid); line-height: 1.6; margin: 0 0 16px;
}
.bf-prompt-form { display: flex; flex-direction: column; gap: 12px; }
.bf-prompt-form textarea {
  width: 100%; font-family: inherit; font-size: 14.5px;
  color: var(--navy); background: var(--stone-50);
  border: 1.5px solid var(--stone-200);
  border-radius: 12px; padding: 12px 14px;
  resize: vertical; min-height: 84px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.bf-prompt-form textarea:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(47,111,159,0.12);
}
.bf-prompt-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.bf-prompt-actions .btn { border-radius: var(--radius-pill); padding: 11px 22px; }
.bf-prompt-link {
  font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 600;
}
.bf-prompt-link:hover { text-decoration: underline; }
.bf-prompt-suggest {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--light);
  border: 1px solid rgba(47,111,159,0.25);
  border-radius: 10px;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 13px;
}
.bf-prompt-suggest-label {
  font-weight: 700; color: var(--blue);
}
.bf-prompt-suggest-text { color: var(--navy); }
.bf-prompt-foot {
  margin-top: 18px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  font-size: 13px;
}
.bf-prompt-foot-label { color: var(--muted); }
.bf-prompt-foot a {
  color: var(--blue); text-decoration: none; font-weight: 600;
  padding: 4px 10px; border: 1px solid var(--stone-200);
  border-radius: var(--radius-pill);
  transition: border-color 0.15s, background 0.15s;
}
.bf-prompt-foot a:hover { border-color: var(--blue); background: var(--light); }
.bf-prompt-note {
  margin-top: 14px;
  font-size: 11.5px; color: var(--muted); line-height: 1.5;
}

/* =========================================================
   Cost-of-Inaction Rechner
   ========================================================= */
.bf-roi {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 28px;
  max-width: 1080px;
}
.bf-roi-inputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 22px;
}
.bf-roi-field { display: flex; flex-direction: column; gap: 4px; }
.bf-roi-label {
  font-size: 13.5px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.005em;
}
.bf-roi-hint { font-size: 12.5px; color: var(--muted); margin: 0 0 8px; }
.bf-roi input[type=number] {
  font-family: inherit; font-size: 22px; font-weight: 700;
  color: var(--navy); background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: 12px; padding: 14px 18px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bf-roi input[type=number]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,111,159,0.12);
}
.bf-roi-outputs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 22px;
}
.bf-roi-out {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 16px 18px;
}
.bf-roi-out-label {
  display: block;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.bf-roi-out-value {
  display: block;
  font-size: 20px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.015em;
}
.bf-roi-out--accent {
  background: var(--navy); border-color: var(--navy);
}
.bf-roi-out--accent .bf-roi-out-label { color: rgba(255,255,255,0.6); }
.bf-roi-out--accent .bf-roi-out-value { color: #fff; }
.bf-roi-out--positive {
  background: #ecfdf5; border-color: #a7f3d0;
}
.bf-roi-out--positive .bf-roi-out-label { color: #047857; }
.bf-roi-out--positive .bf-roi-out-value { color: #065f46; }
.bf-roi-pilot {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
}
.bf-roi-pilot p {
  font-size: 14.5px; color: var(--mid); line-height: 1.7; margin: 6px 0 14px;
}
.bf-roi-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.bf-roi-cta .btn { border-radius: var(--radius-pill); }
.bf-roi-disclaimer {
  font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0;
}

/* =========================================================
   Pilot Sketch Generator
   ========================================================= */
.bf-pilot-gen {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 28px;
}
.bf-pilot-gen-controls {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-bottom: 24px;
}
.bf-pilot-gen-field { display: flex; flex-direction: column; gap: 10px; }
.bf-pilot-gen-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.bf-pilot-gen-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.bf-pilot-gen-chips button {
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px; font-weight: 600; color: var(--mid);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.bf-pilot-gen-chips button:hover { border-color: var(--blue); }
.bf-pilot-gen-chips button.is-active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.bf-pilot-gen-empty {
  background: var(--stone-50);
  border: 1px dashed var(--stone-200);
  border-radius: 14px;
  padding: 22px;
  font-size: 14px; color: var(--muted);
  text-align: center;
  margin: 0;
}
.bf-pilot-gen-result {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 26px;
}
.bf-pilot-gen-title-wrap { margin-bottom: 20px; }
.bf-pilot-gen-result h3 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin: 6px 0 0; line-height: 1.3;
}
.bf-pilot-gen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 18px;
}
.bf-pilot-gen-block {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 16px 18px;
}
.bf-pilot-gen-block-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 8px;
}
.bf-pilot-gen-block p {
  font-size: 14px; color: var(--mid); line-height: 1.7; margin: 0;
}
.bf-pilot-gen-invest {
  background: var(--navy); color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
}
.bf-pilot-gen-invest-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.bf-pilot-gen-invest-value {
  font-size: 22px; font-weight: 800; letter-spacing: -0.015em;
}
.bf-pilot-gen-cta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px;
}
.bf-pilot-gen-cta .btn { border-radius: var(--radius-pill); }
.bf-pilot-gen-disclaimer {
  font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0;
}

/* =========================================================
   Standortvergleich
   ========================================================= */
.bf-locomp {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 28px;
}
.bf-locomp-roles {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--stone-200);
}
.bf-locomp-roles button {
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-family: inherit;
  font-size: 13px; font-weight: 600; color: var(--mid);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.bf-locomp-roles button:hover { border-color: var(--blue); }
.bf-locomp-roles button.is-active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.bf-locomp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 16px;
}
.bf-locomp-col {
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 22px;
}
.bf-locomp-col header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stone-200);
}
.bf-locomp-flag {
  font-size: 17px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.01em;
}
.bf-locomp-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--light);
}
.bf-locomp-col--ref { background: var(--stone-100); border-color: var(--stone-200); }
.bf-locomp-col--ref .bf-locomp-tag {
  background: var(--stone-200); color: var(--muted);
}
.bf-locomp-col dl {
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.bf-locomp-col dl > div {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stone-200);
}
.bf-locomp-col dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.bf-locomp-col dt {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.bf-locomp-col dd {
  margin: 0;
  font-size: 14px; color: var(--navy); line-height: 1.5;
  font-weight: 500;
}
.bf-locomp-disclaimer {
  font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0;
}

/* Responsive für neue Widgets */
@media (max-width: 900px) {
  .bf-roi-outputs { grid-template-columns: 1fr 1fr; }
  .bf-pilot-gen-controls,
  .bf-pilot-gen-grid { grid-template-columns: 1fr; }
  .bf-locomp-grid { grid-template-columns: 1fr; }
  .bf-roi-inputs { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .bf-prompt-card { padding: 20px; }
  .bf-roi, .bf-pilot-gen, .bf-locomp { padding: 22px; }
  .bf-roi-outputs { grid-template-columns: 1fr; }
}

/* =========================================================
   Hero Cost-of-Inaction (kompakte Variante)
   ========================================================= */
.bf-roi-hero {
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 18px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
}
.bf-roi-hero-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-roi-hero-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 10px; margin-bottom: 8px;
}
.bf-roi-hero-head .bf-eyebrow {
  margin: 0; font-size: 12.5px; letter-spacing: 0.10em;
  text-transform: none;
  color: var(--navy); font-weight: 800;
}
.bf-roi-hero-sub {
  font-size: 13.5px; color: var(--mid); line-height: 1.6;
  margin: 0 0 18px;
}
.bf-roi-chip-field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.bf-roi-chip-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.bf-roi-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bf-roi-chips button {
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13.5px; font-weight: 700; color: var(--mid);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.bf-roi-chips button:hover { border-color: var(--blue); }
.bf-roi-chips button.is-active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.bf-roi-hero-outputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin: 16px 0 14px;
}
.bf-roi-hero-outputs .bf-roi-out { padding: 12px 14px; }
.bf-roi-hero-outputs .bf-roi-out-label { font-size: 10.5px; margin-bottom: 4px; }
.bf-roi-hero-outputs .bf-roi-out-value { font-size: 17px; }
.bf-roi-hero-pilot {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px; color: var(--mid); line-height: 1.6;
  margin: 0 0 14px;
}
.bf-roi-hero-cta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 12px;
}
.bf-roi-hero-cta .btn { border-radius: var(--radius-pill); padding: 11px 22px; }
.bf-roi-hero-link {
  font-size: 13px; color: var(--blue); font-weight: 600;
  text-decoration: none;
}
.bf-roi-hero-link:hover { text-decoration: underline; }
.bf-roi-hero-disclaimer {
  font-size: 11.5px; color: var(--muted); line-height: 1.55; margin: 0;
}

/* =========================================================
   Begleiter-Block "Wer steuert Balkanfit"
   ========================================================= */
.bf-begleiter {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: start;
  padding: 28px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
}
.bf-begleiter-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--stone-200);
  aspect-ratio: 1 / 1;
}
.bf-begleiter-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.bf-begleiter-photo-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(26,37,64,0.92); color: #fff;
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: -0.005em;
}
.bf-begleiter-text .bf-eyebrow { margin-bottom: 6px; }
.bf-begleiter-text .bf-h2 { margin-bottom: 18px; }
.bf-begleiter-text p {
  font-size: 15.5px; color: var(--mid); line-height: 1.75;
  margin-bottom: 14px;
}
.bf-begleiter-cta {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.bf-begleiter-cta .btn { border-radius: var(--radius-pill); }
.bf-begleiter-link {
  font-size: 13px; color: var(--blue); font-weight: 600;
  text-decoration: none;
}
.bf-begleiter-link:hover { text-decoration: underline; }

/* =========================================================
   Floating Kontakt-Button
   ========================================================= */
.bf-floatcta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff;
  padding: 14px 18px 14px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: -0.005em;
  box-shadow: 0 10px 30px rgba(26,37,64,0.25), 0 2px 6px rgba(26,37,64,0.10);
  transition: transform 0.15s ease, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.bf-floatcta:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(47,111,159,0.35), 0 2px 6px rgba(26,37,64,0.10);
}
.bf-floatcta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
  font-size: 14px; font-weight: 700;
}

/* Mobile: kompaktere Form, kein Text */
@media (max-width: 600px) {
  .bf-floatcta {
    right: 16px; bottom: 16px;
    padding: 12px 16px;
    font-size: 13px;
  }
  .bf-floatcta-text { max-width: 0; overflow: hidden; opacity: 0; transition: max-width 0.25s, opacity 0.25s, margin 0.25s; margin: 0; }
  .bf-floatcta-arrow { width: 20px; height: 20px; }
}

/* Begleiter responsive */
@media (max-width: 900px) {
  .bf-begleiter { grid-template-columns: 1fr; gap: 24px; }
  .bf-begleiter-photo { max-width: 280px; }
}

/* Hero-ROI responsive bei sehr schmalen Spalten */
@media (max-width: 700px) {
  .bf-roi-hero-outputs { grid-template-columns: 1fr 1fr; }
  .bf-roi-hero-card { padding: 20px; }
}

/* =========================================================
   ROI-Hero pricebadge (CHF 490 inline)
   ========================================================= */
.bf-roi-hero-pricebadge {
  display: inline-flex; align-items: center;
  background: #ecfdf5; color: #047857;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 700;
  border: 1px solid #a7f3d0;
}

/* =========================================================
   Problem-Section
   ========================================================= */
.bf-problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.bf-problem-tile {
  display: flex; align-items: center; gap: 4px;
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 15.5px; font-weight: 600; color: var(--navy);
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.bf-problem-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(47,111,159,0.12);
  transform: translateY(-2px);
}
.bf-problem-tile::after {
  content: '→'; margin-left: auto; color: var(--blue);
  font-weight: 800; opacity: 0; transition: opacity 0.15s, transform 0.15s;
}
.bf-problem-tile:hover::after { opacity: 1; }
.bf-problem-tile::before {
  content: '× '; color: #d35a5a; font-weight: 800; flex-shrink: 0;
}
@media (max-width: 900px) {
  .bf-problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bf-problem-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Nutzenbox mit Kostentabelle
   ========================================================= */
.bf-nutzen-table-wrap {
  margin-top: 8px; margin-bottom: 22px;
  overflow-x: auto;
}
.bf-nutzen-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-nutzen-table th,
.bf-nutzen-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--stone-200);
}
.bf-nutzen-table th {
  background: var(--navy); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bf-nutzen-table tbody tr:last-child td { border-bottom: 0; }
.bf-nutzen-table tbody tr:nth-child(even) { background: var(--stone-50); }
.bf-nutzen-table td:first-child { font-weight: 700; color: var(--navy); }
.bf-nutzen-cta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.bf-nutzen-cta .btn { border-radius: var(--radius-pill); }
.bf-nutzen-pricebadge {
  font-size: 13px; color: var(--mid); font-weight: 500;
}

/* =========================================================
   5-Tier-Pakete
   ========================================================= */
.bf-pkg5-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.bf-pkg5 {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: default;
}
.bf-pkg5 ul { flex: 1; }
.bf-pkg5:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 32px -8px rgba(47,111,159,0.20);
  transform: translateY(-4px);
}
.bf-pkg5--hi {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  box-shadow: 0 10px 30px rgba(26,37,64,0.18);
}
.bf-pkg5--hi:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 40px -8px rgba(26,37,64,0.35), 0 0 0 1px var(--blue);
  transform: translateY(-4px);
}
.bf-pkg5-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue); margin-bottom: 8px;
}
.bf-pkg5--hi .bf-pkg5-num { color: rgba(255,255,255,0.55); }
.bf-pkg5-badge {
  position: absolute; top: 14px; right: 14px;
  background: #ecfdf5; color: #047857;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
}
.bf-pkg5--hi .bf-pkg5-badge {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
}
.bf-pkg5 h3 {
  font-size: 17px; font-weight: 800; letter-spacing: -0.015em;
  color: var(--navy); line-height: 1.25; margin-bottom: 6px;
}
.bf-pkg5--hi h3 { color: #fff; }
.bf-pkg5-price {
  font-size: 15.5px; font-weight: 700; color: var(--blue);
  margin: 0 0 12px;
}
.bf-pkg5--hi .bf-pkg5-price { color: #fff; }
.bf-pkg5-desc {
  font-size: 13.5px; color: var(--mid); line-height: 1.55; margin-bottom: 14px;
}
.bf-pkg5--hi .bf-pkg5-desc { color: rgba(255,255,255,0.78); }
.bf-pkg5-out-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.bf-pkg5--hi .bf-pkg5-out-label { color: rgba(255,255,255,0.55); }
.bf-pkg5 ul {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.bf-pkg5 li {
  font-size: 13px; line-height: 1.5; color: var(--mid);
  padding-left: 14px; position: relative;
}
.bf-pkg5 li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}
.bf-pkg5--hi li { color: rgba(255,255,255,0.85); }
.bf-pkg5-cta { margin-top: auto; }
.bf-pkg5-cta .btn {
  border-radius: var(--radius-pill);
  width: 100%; text-align: center; padding: 10px 12px;
  font-size: 13px;
}
@media (max-width: 1100px) {
  .bf-pkg5-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .bf-pkg5-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bf-pkg5-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Beispiele-Tabelle
   ========================================================= */
.bf-bsptable-wrap {
  margin-bottom: 24px; overflow-x: auto;
}
.bf-bsptable {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-bsptable th,
.bf-bsptable td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid var(--stone-200);
  vertical-align: top;
}
.bf-bsptable th {
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bf-bsptable tbody tr:last-child td { border-bottom: 0; }
.bf-bsptable td:first-child { width: 22%; color: var(--navy); }
.bf-bsptable td:nth-child(2) { width: 26%; }
.bf-bsptable td:nth-child(3) { width: 26%; }
.bf-bsptable td:nth-child(4) { width: 26%; }
.bf-bsptable-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.bf-bsptable-cta .btn { border-radius: var(--radius-pill); }
@media (max-width: 800px) {
  .bf-bsptable th { display: none; }
  .bf-bsptable td { display: block; width: 100% !important; padding: 8px 16px; border: 0; }
  .bf-bsptable td:first-child { padding-top: 18px; font-size: 16px; font-weight: 800; }
  .bf-bsptable tbody tr { border-bottom: 1px solid var(--stone-200); padding-bottom: 12px; display: block; }
}

/* =========================================================
   Standort-Index (Hauptmodul)
   ========================================================= */
.bf-stoindex-positioning {
  background: var(--light);
  border: 1px solid rgba(47,111,159,0.30);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px; color: var(--navy); line-height: 1.6;
  margin-bottom: 22px;
}
.bf-stoindex-positioning strong { display: block; margin-bottom: 4px; font-weight: 800; }
.bf-stoindex-head { text-align: left; margin-bottom: 22px; max-width: 760px; }
.bf-stoindex-head .bf-lead { margin-bottom: 0; }

.bf-stoindex-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 18px;
}
.bf-stoindex-badge {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.bf-stoindex-badge strong {
  font-size: 13.5px; color: var(--navy); font-weight: 800;
}
.bf-stoindex-badge span {
  font-size: 12.5px; color: var(--mid); line-height: 1.5;
}

.bf-stoindex-disclaimer {
  background: var(--light);
  border: 1px solid rgba(47,111,159,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px; color: var(--navy); line-height: 1.5;
  margin-bottom: 28px;
}
.bf-stoindex-disclaimer strong { color: var(--blue); margin-right: 4px; }

.bf-stoindex-grid {
  display: grid;
  grid-template-columns: 240px 1fr 340px;
  gap: 18px;
  align-items: start;
}

/* Filterspalte */
.bf-stoindex-filters {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex; flex-direction: column; gap: 18px;
}
.bf-stoindex-field { display: flex; flex-direction: column; gap: 8px; }
.bf-stoindex-flabel {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.bf-stoindex-select {
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--stone-50);
  border: 1.5px solid var(--stone-200);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  cursor: pointer;
}
.bf-stoindex-select:focus { border-color: var(--blue); }
.bf-stoindex-tabs {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px;
  background: var(--stone-100);
  padding: 4px;
  border-radius: var(--radius-pill);
}
.bf-stoindex-tabs button {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12.5px; font-weight: 700; color: var(--mid);
  padding: 8px 4px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.bf-stoindex-tabs button.is-active {
  background: var(--navy); color: #fff;
}
.bf-stoindex-howto {
  background: var(--stone-50);
  border-radius: 10px;
  padding: 12px;
  font-size: 12px; color: var(--mid); line-height: 1.55;
  display: flex; flex-direction: column; gap: 4px;
}
.bf-stoindex-howto strong { color: var(--navy); }

/* Map */
.bf-stoindex-mapwrap {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.bf-stoindex-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--mid);
}
.bf-stoindex-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  vertical-align: middle; margin-right: 4px;
}
.bf-stoindex-map { width: 100%; height: auto; display: block; }

/* Pins */
.bf-stoindex-pin .bf-stoindex-pin-bg {
  fill: #fff;
  stroke: var(--stone-300);
  stroke-width: 2;
  transition: stroke-width 0.15s;
}
.bf-stoindex-pin.is-selected .bf-stoindex-pin-bg {
  stroke-width: 4;
}
.bf-stoindex-pin.bf-fit-hoch    .bf-stoindex-pin-bg { fill: #d1fae5; stroke: #047857; }
.bf-stoindex-pin.bf-fit-mittel  .bf-stoindex-pin-bg { fill: #fef9c3; stroke: #b6900b; }
.bf-stoindex-pin.bf-fit-bedingt .bf-stoindex-pin-bg { fill: #ffedd5; stroke: #c2410c; }
.bf-stoindex-pin.bf-fit-gering  .bf-stoindex-pin-bg { fill: #e5e7eb; stroke: #6b7280; }
.bf-stoindex-pin .bf-stoindex-pin-score {
  font-size: 11px; font-weight: 800; fill: var(--navy);
}
.bf-stoindex-pin .bf-stoindex-pin-label {
  font-size: 11px; font-weight: 700; fill: var(--navy);
  alignment-baseline: middle;
  paint-order: stroke fill;
  stroke: #fff;
  stroke-width: 3px;
}

/* Heatmap-Farben für Legende und Bars */
.bf-stoindex-dot.bf-fit-hoch    { background: #047857; }
.bf-stoindex-dot.bf-fit-mittel  { background: #d4a51d; }
.bf-stoindex-dot.bf-fit-bedingt { background: #c2410c; }
.bf-stoindex-dot.bf-fit-gering  { background: #6b7280; }

.bf-fit-bg-hoch    { background: #d1fae5; color: #047857; }
.bf-fit-bg-mittel  { background: #fef9c3; color: #92520a; }
.bf-fit-bg-bedingt { background: #ffedd5; color: #9a2e07; }
.bf-fit-bg-gering  { background: #e5e7eb; color: #4b5563; }
.bf-fit-text-hoch    { color: #047857; }
.bf-fit-text-mittel  { color: #92520a; }
.bf-fit-text-bedingt { color: #9a2e07; }
.bf-fit-text-gering  { color: #6b7280; }

/* =========================================================
   Pakete 3-Tier (Hauptleiste) und Detail-Zeilen
   ========================================================= */
.bf-pkg3-grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px;
}
@media (max-width: 900px) { .bf-pkg3-grid { grid-template-columns: 1fr; } }
.bf-pkg-detail {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
}
.bf-pkg-detail-h {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 14px;
}
.bf-pkg-detail-rows {
  display: flex; flex-direction: column; gap: 8px;
}
.bf-pkg-detail-row {
  display: grid;
  grid-template-columns: 150px 110px 1fr auto;
  gap: 18px; align-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.bf-pkg-detail-row:hover {
  border-color: var(--blue);
  background: var(--light);
  transform: translateX(2px);
}
.bf-pkg-detail-name {
  font-size: 14.5px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em;
}
.bf-pkg-detail-price {
  font-size: 13.5px; font-weight: 700; color: var(--blue);
}
.bf-pkg-detail-text {
  font-size: 13px; color: var(--mid); line-height: 1.5;
}
.bf-pkg-detail-link {
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  white-space: nowrap;
}
@media (max-width: 800px) {
  .bf-pkg-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .bf-pkg-detail-link { margin-top: 4px; }
}

/* =========================================================
   Produkt-Cover-Card im Hero (rechts)
   ========================================================= */
.bf-prodcard {
  background: linear-gradient(140deg, var(--navy) 0%, #2a3a5e 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px 30px 26px;
  box-shadow: 0 20px 50px -12px rgba(26,37,64,0.30);
  position: relative;
  overflow: hidden;
}
.bf-prodcard::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,111,159,0.30) 0%, transparent 65%);
  pointer-events: none;
}
.bf-prodcard > * { position: relative; z-index: 1; }
.bf-prodcard-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.bf-prodcard-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.16); color: #fff;
  padding: 5px 12px; border-radius: 999px;
}
.bf-prodcard-price {
  background: #ecfdf5; color: #047857;
  padding: 5px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 800;
}
.bf-prodcard-h {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 8px; line-height: 1.2;
}
.bf-prodcard-sub {
  font-size: 13.5px; color: rgba(255,255,255,0.72);
  line-height: 1.55; margin: 0 0 18px;
}
.bf-prodcard-list {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.bf-prodcard-list li {
  font-size: 13.5px; color: rgba(255,255,255,0.85);
  padding-left: 22px; position: relative; line-height: 1.5;
}
.bf-prodcard-list li::before {
  content: '✓'; position: absolute; left: 0; color: #6ee7b7; font-weight: 900;
}
.bf-prodcard-cta {
  display: flex; flex-direction: column; gap: 8px; align-items: stretch;
}
.bf-prodcard-cta .btn {
  border-radius: 999px; text-align: center; padding: 12px 18px;
}
.bf-prodcard-link {
  font-size: 12.5px; font-weight: 600; color: #6ee7b7;
  text-decoration: none; text-align: center;
}
.bf-prodcard-link:hover { text-decoration: underline; }
.bf-prodcard-foot {
  margin-top: 14px; font-size: 11.5px; color: rgba(255,255,255,0.55);
  line-height: 1.5; text-align: center;
}

/* =========================================================
   Kernangebot-Block (volle Sektion)
   ========================================================= */
.bf-hpb {
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-card-lg);
  padding: 34px 38px;
  box-shadow: 0 4px 18px rgba(26,37,64,0.06);
  max-width: 920px;
}
.bf-hpb-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap;
}
.bf-hpb-meta .bf-eyebrow { margin: 0; }
.bf-hpb-pricetag {
  background: #ecfdf5; color: #047857;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 800;
}
.bf-hpb .bf-h2 { margin-bottom: 10px; }
.bf-hpb .bf-lead { margin-bottom: 22px; max-width: 720px; }
.bf-hpb-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
}
.bf-hpb-list li {
  font-size: 14.5px; color: var(--mid); line-height: 1.6;
  padding-left: 26px; position: relative;
}
.bf-hpb-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--blue); font-weight: 900; font-size: 16px;
}
.bf-hpb-list li strong { color: var(--navy); font-weight: 800; }
.bf-hpb-cta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.bf-hpb-cta .btn { border-radius: 999px; padding: 12px 24px; }
.bf-hpb-link {
  font-size: 13.5px; font-weight: 600; color: var(--blue);
  text-decoration: none;
}
.bf-hpb-link:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .bf-hpb { padding: 26px 22px; }
  .bf-hpb-list { grid-template-columns: 1fr; gap: 10px; }
}

/* =========================================================
   Warum Balkan — strategische Treiber Grid
   ========================================================= */
.bf-warum-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 12px;
}
.bf-warum-tile {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  padding: 22px 24px 24px;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.bf-warum-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(47,111,159,0.10);
  transform: translateY(-2px);
}
.bf-warum-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--light); color: var(--blue);
  font-size: 13px; font-weight: 900; letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.bf-warum-tile h3 {
  font-size: 17px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.015em; line-height: 1.25; margin: 0 0 8px;
}
.bf-warum-tile p {
  font-size: 13.5px; color: var(--mid); line-height: 1.65; margin: 0;
}
@media (max-width: 1024px) { .bf-warum-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .bf-warum-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Gratis vs. Potenzial-Check Gegenüberstellung
   ========================================================= */
.bf-compare {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 16px;
  margin-top: 28px;
}
.bf-compare-col {
  background: #fff; border: 1px solid var(--stone-200);
  border-radius: var(--radius-card); padding: 26px;
  display: flex; flex-direction: column;
}
.bf-compare-col--hi {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 10px 30px rgba(26,37,64,0.16);
}
.bf-compare-tag {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 999px;
  background: var(--stone-100); color: var(--mid); margin-bottom: 12px;
}
.bf-compare-tag--hi { background: #ecfdf5; color: #047857; }
.bf-compare-col h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 0 0 4px; letter-spacing: -0.015em; }
.bf-compare-col--hi h3 { color: #fff; }
.bf-compare-sub { font-size: 14px; color: var(--mid); line-height: 1.55; margin: 0 0 16px; }
.bf-compare-col--hi .bf-compare-sub { color: rgba(255,255,255,0.72); }
.bf-compare-col ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.bf-compare-col li { font-size: 13.5px; color: var(--mid); line-height: 1.5; padding-left: 24px; position: relative; }
.bf-compare-col li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.bf-compare-col--hi li { color: rgba(255,255,255,0.85); }
.bf-compare-col--hi li::before { color: #6ee7b7; }
.bf-compare-col .btn { margin-top: auto; border-radius: var(--radius-pill); align-self: flex-start; }

.bf-compare-example {
  margin-top: 16px;
  background: var(--light); border: 1px solid rgba(47,111,159,0.25);
  border-radius: 14px; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.bf-compare-example strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.bf-compare-example span { font-size: 13.5px; color: var(--mid); line-height: 1.5; }
.bf-compare-example .btn { border-radius: var(--radius-pill); flex-shrink: 0; }
@media (max-width: 800px) {
  .bf-compare { grid-template-columns: 1fr; }
}

/* =========================================================
   Beispiel-Report (V2 — Premium-Layout mit Cover + TOC + Bars)
   ========================================================= */
.bf-r-shell {
  background:
    radial-gradient(ellipse 1000px 600px at 0% 0%, rgba(47,111,159,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 800px 500px at 100% 100%, rgba(47,111,159,0.06) 0%, transparent 60%),
    var(--stone-50);
  padding: 36px 0 80px;
  min-height: 100vh;
}
.bf-r-back {
  display: inline-block;
  font-size: 13.5px; font-weight: 600; color: var(--blue);
  text-decoration: none; margin-bottom: 22px;
}
.bf-r-back:hover { text-decoration: underline; }

/* Cover */
.bf-r-cover {
  background: linear-gradient(140deg, var(--navy) 0%, #2a3a5e 100%);
  color: #fff;
  border-radius: 28px;
  padding: 44px 48px 36px;
  box-shadow: 0 24px 60px -12px rgba(26,37,64,0.35);
  position: relative;
  overflow: hidden;
}
.bf-r-cover::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,111,159,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.bf-r-cover-bar {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.bf-r-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.16); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bf-r-cover-doc {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  font-weight: 500; letter-spacing: 0.02em;
}
.bf-r-cover h1 {
  font-size: clamp(30px, 4vw, 48px); font-weight: 900; letter-spacing: -0.03em;
  color: #fff; margin: 0 0 14px; line-height: 1.05;
  max-width: 720px;
}
.bf-r-cover-lead {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 660px; line-height: 1.65; margin: 0 0 30px;
}
.bf-r-cover-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.bf-r-meta { display: flex; flex-direction: column; gap: 4px; }
.bf-r-meta-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.50);
}
.bf-r-meta-value {
  font-size: 14.5px; color: #fff; font-weight: 600; line-height: 1.35;
}
.bf-r-meta-go {
  display: inline-flex; align-items: center; gap: 6px;
  color: #6ee7b7 !important;
}
.bf-r-meta-go::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 0 4px rgba(110,231,183,0.18);
}

/* Layout: TOC + Doc */
.bf-r-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  margin-top: 40px;
  align-items: start;
}

/* TOC */
.bf-r-toc {
  position: sticky; top: 96px;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.05);
}
.bf-r-toc-h {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 14px;
}
.bf-r-toc ol {
  list-style: none; padding: 0; margin: 0 0 18px;
  counter-reset: r;
}
.bf-r-toc li {
  counter-increment: r;
  margin: 0 0 4px;
}
.bf-r-toc a {
  display: flex; gap: 10px; align-items: baseline;
  padding: 8px 10px;
  font-size: 13px; font-weight: 600; color: var(--mid);
  text-decoration: none; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.bf-r-toc a::before {
  content: counter(r, decimal-leading-zero);
  font-size: 10.5px; font-weight: 800; color: var(--blue);
  letter-spacing: 0.06em;
}
.bf-r-toc a:hover { background: var(--stone-50); color: var(--navy); }
.bf-r-toc a.is-active { background: var(--light); color: var(--navy); }
.bf-r-toc-cta {
  display: flex; flex-direction: column; gap: 6px; align-items: stretch;
  padding-top: 16px; border-top: 1px solid var(--stone-200);
}
.bf-r-toc-cta .btn {
  border-radius: 999px; padding: 9px 14px; font-size: 13px;
  text-align: center;
}
.bf-r-toc-cta span {
  font-size: 11.5px; color: var(--muted); text-align: center;
}

/* Doc */
.bf-r-doc {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 24px;
  padding: 12px 48px;
  box-shadow: 0 4px 18px rgba(26,37,64,0.05);
}
.bf-r-chap {
  padding: 36px 0;
  border-bottom: 1px solid var(--stone-200);
  scroll-margin-top: 90px;
}
.bf-r-chap:last-child { border-bottom: 0; }
.bf-r-chap-h {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}
.bf-r-chap-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--light);
  color: var(--blue);
  font-size: 16px; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.01em;
}
.bf-r-chap h2 {
  font-size: 24px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.025em; margin: 0; line-height: 1.2;
}
.bf-r-chap > p {
  font-size: 15.5px; color: var(--mid); line-height: 1.8; margin: 0 0 16px;
}

/* Markt-Bars */
.bf-r-bars { display: flex; flex-direction: column; gap: 22px; margin-top: 14px; }
.bf-r-bar {}
.bf-r-bar-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.bf-r-bar-meta strong {
  font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em;
}
.bf-r-bar-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
}
.bf-r-tag-hoch    { background: #d1fae5; color: #047857; }
.bf-r-tag-mittel  { background: #fef9c3; color: #92520a; }
.bf-r-tag-bedingt { background: #ffedd5; color: #9a2e07; }
.bf-r-bar-track {
  height: 10px; border-radius: 999px;
  background: var(--stone-100); overflow: hidden; margin-bottom: 10px;
}
.bf-r-bar-fill { display: block; height: 100%; border-radius: 999px; }
.bf-r-bg-hoch    { background: linear-gradient(90deg, #6ee7b7 0%, #047857 100%); }
.bf-r-bg-mittel  { background: linear-gradient(90deg, #fde047 0%, #ca8a04 100%); }
.bf-r-bg-bedingt { background: linear-gradient(90deg, #fdba74 0%, #c2410c 100%); }
.bf-r-bar p {
  font-size: 14px !important; color: var(--mid); line-height: 1.7; margin: 0;
}

/* Money */
.bf-r-money {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 14px;
  margin: 14px 0;
}
.bf-r-money-card {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.bf-r-money-card--accent {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #a7f3d0;
  box-shadow: 0 8px 24px -8px rgba(4,120,87,0.20);
  transform: translateY(-4px);
}
.bf-r-money-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--muted);
}
.bf-r-money-card--accent .bf-r-money-label { color: #047857; }
.bf-r-money-value {
  font-size: 26px; font-weight: 900; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.1;
}
.bf-r-money-card--accent .bf-r-money-value { color: #065f46; }
.bf-r-money-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.bf-r-fine { font-size: 12.5px !important; color: var(--muted) !important; }

/* Pilot + Timeline */
.bf-r-pilot {
  background: linear-gradient(160deg, var(--navy) 0%, #2a3a5e 100%);
  color: #fff;
  border-radius: 20px;
  padding: 30px 32px;
  margin-top: 18px;
}
.bf-r-pilot-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #6ee7b7;
}
.bf-r-pilot h3 {
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin: 8px 0 14px; line-height: 1.2;
}
.bf-r-pilot > p {
  font-size: 14.5px !important; color: rgba(255,255,255,0.78) !important;
  line-height: 1.7; margin: 0 0 22px;
}
.bf-r-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  position: relative;
}
.bf-r-tl-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.bf-r-tl-range {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase; color: #6ee7b7;
}
.bf-r-tl-step strong {
  font-size: 14px; font-weight: 800; color: #fff;
  letter-spacing: -0.01em;
}
.bf-r-tl-text {
  font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.6;
}

/* Risks */
.bf-r-risks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.bf-r-risks li {
  font-size: 14.5px; color: var(--mid); line-height: 1.7;
  padding: 14px 18px 14px 46px;
  position: relative;
  background: #fff8ec; border: 1px solid #f3deb4;
  border-radius: 12px;
}
.bf-r-risks li::before {
  content: '!'; position: absolute; left: 16px; top: 13px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #f59e0b; color: #fff;
  font-size: 12px; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
}
.bf-r-risks strong { color: var(--navy); font-weight: 800; }

/* Verdict */
.bf-r-verdict { background: linear-gradient(180deg, #f0fdf8 0%, #fff 100%); margin: 0 -48px -12px; padding: 36px 48px 44px; border-radius: 0 0 24px 24px; }
.bf-r-verdict .bf-r-chap-num { background: #d1fae5; color: #047857; }
.bf-r-verdict-badge {
  display: inline-flex; flex-direction: column; gap: 6px;
  background: #fff; border: 2px solid #34d399;
  border-radius: 16px;
  padding: 16px 24px;
  margin: 6px 0 18px;
  box-shadow: 0 8px 20px -6px rgba(4,120,87,0.20);
}
.bf-r-verdict-tag {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #047857;
}
.bf-r-verdict-badge strong {
  font-size: 22px; font-weight: 900; color: #047857;
  letter-spacing: -0.01em;
}

/* End-CTA */
.bf-r-end {
  margin-top: 40px;
  background: var(--navy); color: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px;
  align-items: center;
}
.bf-r-end h2 {
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.25;
}
.bf-r-end p { font-size: 14.5px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.65; }
.bf-r-end-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.bf-r-end-actions .btn { border-radius: 999px; }
.bf-r-end-price { font-size: 12px; color: rgba(255,255,255,0.65); }
.bf-r-end-link { font-size: 13px; font-weight: 600; color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 1100px) {
  .bf-r-layout { grid-template-columns: 1fr; }
  .bf-r-toc { position: static; }
  .bf-r-toc ol { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
  .bf-r-toc-cta { display: none; }
}
@media (max-width: 800px) {
  .bf-r-cover { padding: 32px 26px 26px; border-radius: 22px; }
  .bf-r-cover-meta { grid-template-columns: 1fr; gap: 14px; }
  .bf-r-doc { padding: 8px 26px; border-radius: 20px; }
  .bf-r-money { grid-template-columns: 1fr; }
  .bf-r-money-card--accent { transform: none; }
  .bf-r-timeline { grid-template-columns: 1fr; }
  .bf-r-verdict { margin: 0 -26px -8px; padding: 28px 26px 32px; border-radius: 0 0 20px 20px; }
  .bf-r-end { grid-template-columns: 1fr; padding: 28px; }
  .bf-r-toc ol { grid-template-columns: 1fr; }
}

/* =========================================================
   Beispiel-Report-Seite (alt, V1 — bleibt für andere Klassen)
   ========================================================= */
.bf-rep-shell { background: var(--stone-50); padding: 48px 0 80px; }
.bf-rep-back { margin-bottom: 18px; }
.bf-rep-back a { font-size: 13.5px; font-weight: 600; color: var(--blue); text-decoration: none; }
.bf-rep-back a:hover { text-decoration: underline; }
.bf-rep-head { max-width: 720px; margin-bottom: 28px; }
.bf-rep-head h1 {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.025em;
  color: var(--navy); margin: 8px 0 12px; line-height: 1.15;
}
.bf-rep-head p { font-size: 16px; color: var(--mid); line-height: 1.7; }

.bf-rep-doc {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 40px;
  box-shadow: 0 4px 18px rgba(26,37,64,0.06);
  max-width: 880px;
}
.bf-rep-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-bottom: 24px; margin-bottom: 8px;
  border-bottom: 1px solid var(--stone-200);
}
.bf-rep-meta-label {
  display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
.bf-rep-meta-value { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.bf-rep-go { color: #047857; }

.bf-rep-section { padding: 26px 0; border-bottom: 1px solid var(--stone-200); }
.bf-rep-section:last-child { border-bottom: 0; }
.bf-rep-section h2 {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.bf-rep-num {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.bf-rep-section p { font-size: 15px; color: var(--mid); line-height: 1.75; margin: 0 0 12px; }
.bf-rep-section p:last-child { margin-bottom: 0; }

.bf-rep-markets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.bf-rep-market {
  background: var(--stone-50); border: 1px solid var(--stone-200);
  border-radius: 14px; padding: 16px 18px;
}
.bf-rep-market--top { border-color: #a7f3d0; background: #f0fdf8; }
.bf-rep-market-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.bf-rep-market-head strong { font-size: 16px; color: var(--navy); }
.bf-rep-market-head span {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}
.bf-rep-market p { font-size: 13.5px; line-height: 1.6; margin: 0; }

.bf-rep-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 14px 0; }
.bf-rep-num-card {
  background: var(--stone-50); border: 1px solid var(--stone-200);
  border-radius: 14px; padding: 16px 18px;
}
.bf-rep-num-card--accent { background: #ecfdf5; border-color: #a7f3d0; }
.bf-rep-num-label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.bf-rep-num-card--accent .bf-rep-num-label { color: #047857; }
.bf-rep-num-value { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.bf-rep-num-card--accent .bf-rep-num-value { color: #065f46; }
.bf-rep-fine { font-size: 12.5px !important; color: var(--muted) !important; }

.bf-rep-pilot {
  background: var(--navy); color: #fff; border-radius: 16px; padding: 22px; margin-top: 14px;
}
.bf-rep-pilot-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue);
}
.bf-rep-pilot h3 { font-size: 19px; font-weight: 800; color: #fff; margin: 6px 0 10px; letter-spacing: -0.015em; }
.bf-rep-pilot p { font-size: 14.5px !important; color: rgba(255,255,255,0.8) !important; line-height: 1.7; margin: 0; }

.bf-rep-risks { margin: 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bf-rep-risks li {
  font-size: 14.5px; color: var(--mid); line-height: 1.65; padding-left: 26px; position: relative;
}
.bf-rep-risks li::before {
  content: '!'; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff4e0; color: #8a5a14; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.bf-rep-verdict { background: #f0fdf8; margin: 0 -40px -40px; padding: 26px 40px 40px; border-radius: 0 0 var(--radius-card-lg) var(--radius-card-lg); }

.bf-rep-cta {
  max-width: 880px; margin: 28px 0 0;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-card-lg);
  padding: 32px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center;
}
.bf-rep-cta h2 { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.25; }
.bf-rep-cta p { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
.bf-rep-cta-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.bf-rep-cta-actions .btn { border-radius: var(--radius-pill); }
.bf-rep-cta-price { font-size: 12px; color: rgba(255,255,255,0.65); }
.bf-rep-cta-link { font-size: 13px; font-weight: 600; color: #fff; text-decoration: underline; }

@media (max-width: 800px) {
  .bf-rep-doc { padding: 26px 22px; }
  .bf-rep-meta, .bf-rep-markets, .bf-rep-numbers { grid-template-columns: 1fr; }
  .bf-rep-verdict { margin: 0 -22px -26px; padding: 22px 22px 26px; }
  .bf-rep-cta { grid-template-columns: 1fr; padding: 24px; }
}

/* ===== Leaflet-Karte (echte Map-Tiles) ===== */
.bf-leafmap-wrap {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.bf-leafmap {
  width: 100%;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef1f4;
  z-index: 0;
}
.bf-leaf-pin {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 13px; font-weight: 800;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(26,37,64,0.30);
  cursor: pointer;
  transition: transform 0.12s;
}
.bf-leaf-pin:hover { transform: scale(1.12); }
.bf-leaf-pin.is-selected {
  transform: scale(1.22);
  box-shadow: 0 0 0 3px rgba(47,111,159,0.55), 0 2px 8px rgba(26,37,64,0.3);
}
.bf-leaf-tip {
  background: var(--navy); color: #fff; border: 0;
  font-size: 12px; font-weight: 700; padding: 4px 8px; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(26,37,64,0.25);
}
.bf-leaf-tip::before { border-top-color: var(--navy); }
.leaflet-container { font-family: inherit; }
@media (max-width: 800px) {
  .bf-leafmap { height: 360px; }
}

/* ===== Echte Balkankarte (SVG, abgelöst) ===== */
.bf-bkmap-wrap {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.bf-bkmap-legend {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--mid);
}
.bf-bkmap-legend i.bf-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 5px; vertical-align: middle;
}
.bf-bkmap { width: 100%; height: auto; display: block; }

.bf-bkmap-country {
  fill: #dbeafe; stroke: #0284c7; stroke-width: 1.4;
  transition: fill 0.15s;
}
.bf-bkmap-country:hover { fill: #bfdbfe; }
.bf-bkmap-country.is-active { fill: #7AAAD6; }
.bf-bkmap-country--compare {
  fill: #fef3c7; stroke: #b58a1a; stroke-width: 1.2;
}
.bf-bkmap-country--compare:hover { fill: #fde68a; }
.bf-bkmap-country--compare.is-active { fill: #fcd34d; }

.bf-bkmap-label {
  fill: #0284c7; font-weight: 800; letter-spacing: 0.16em;
  text-anchor: middle; opacity: 0.6; pointer-events: none;
}
.bf-bkmap-label--compare { fill: #92660f; opacity: 0.7; }

.bf-bkmap-pin-bg {
  fill: #fff; stroke: var(--stone-300); stroke-width: 2;
}
.bf-bkmap-pin.is-selected .bf-bkmap-pin-bg { stroke-width: 3.5; }
.bf-bkmap-pin.bf-fit-hoch    .bf-bkmap-pin-bg { fill: #d1fae5; stroke: #047857; }
.bf-bkmap-pin.bf-fit-mittel  .bf-bkmap-pin-bg { fill: #fef9c3; stroke: #b6900b; }
.bf-bkmap-pin.bf-fit-bedingt .bf-bkmap-pin-bg { fill: #ffedd5; stroke: #c2410c; }
.bf-bkmap-pin.bf-fit-gering  .bf-bkmap-pin-bg { fill: #e5e7eb; stroke: #6b7280; }
.bf-bkmap-pin-score { font-size: 11px; font-weight: 800; fill: var(--navy); }
.bf-bkmap-pin-label {
  font-size: 11px; font-weight: 700; fill: var(--navy);
  paint-order: stroke fill; stroke: #fff; stroke-width: 3px;
}
.bf-bkmap-pin:hover .bf-bkmap-pin-bg { stroke-width: 3.5; }

/* Rang-Liste unter Karte */
.bf-bkmap-rank {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}
.bf-bkmap-rank-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.bf-bkmap-rank-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bf-bkmap-rank-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-pill);
  padding: 6px 12px 6px 6px;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: border-color 0.15s;
}
.bf-bkmap-rank-chip:hover { border-color: var(--blue); }
.bf-bkmap-rank-chip.is-selected { border-color: var(--blue); background: var(--light); }
.bf-bkmap-rank-num {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--stone-100); color: var(--navy);
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===== Standort-Raster (Card-Grid, Fallback ungenutzt) ===== */
.bf-storaster-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 12px;
  align-content: start;
}
.bf-storaster-empty {
  grid-column: 1 / -1;
  font-size: 14px; color: var(--muted);
  padding: 24px; text-align: center;
  background: #fff; border: 1px dashed var(--stone-200); border-radius: 14px;
}
.bf-storaster-card {
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-radius: 16px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.bf-storaster-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(47,111,159,0.12);
  transform: translateY(-2px);
}
.bf-storaster-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,111,159,0.18);
}
.bf-storaster-card-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
}
.bf-storaster-card-flag {
  font-size: 11px; color: var(--muted); font-weight: 600;
}
.bf-storaster-card-city {
  font-size: 18px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.015em; margin: 2px 0 0;
}
.bf-storaster-card-score {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
}
.bf-storaster-card-fit {
  font-size: 12px; font-weight: 700;
}
.bf-storaster-card-uc {
  font-size: 12.5px; color: var(--navy); line-height: 1.5; margin: 0;
}
.bf-storaster-card-uc strong { font-weight: 700; }
.bf-storaster-card-sum {
  font-size: 12.5px; color: var(--mid); line-height: 1.55; margin: 0;
}
.bf-storaster-card-link {
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  margin-top: auto;
}
@media (min-width: 1101px) {
  .bf-stoindex-detail { position: sticky; top: 86px; }
}
@media (max-width: 1100px) {
  .bf-storaster-cards { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 560px) {
  .bf-storaster-cards { grid-template-columns: 1fr; }
}

/* Detail-Panel */
.bf-stoindex-detail {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.bf-stoindex-detail-empty {
  font-size: 14px; color: var(--muted); margin: 0;
}
.bf-stoindex-detail--flash {
  animation: bf-detail-flash 0.6s ease;
}
@keyframes bf-detail-flash {
  0%   { box-shadow: 0 0 0 4px rgba(47,111,159,0.0); }
  35%  { box-shadow: 0 0 0 6px rgba(47,111,159,0.30); }
  100% { box-shadow: 0 0 0 0 rgba(47,111,159,0.0); }
}
.bf-stoindex-detail-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--stone-200);
}
.bf-stoindex-detail-flag {
  font-size: 12px; color: var(--mid);
  font-weight: 600;
}
.bf-stoindex-detail h3 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin: 4px 0 0; letter-spacing: -0.02em;
}
.bf-stoindex-detail-scorebox {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  min-width: 80px;
}
.bf-stoindex-detail-scoreval {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1;
}
.bf-stoindex-detail-scorelbl {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px;
}
.bf-stoindex-detail-why {
  font-size: 14px; color: var(--navy); line-height: 1.7; margin: 0;
}
.bf-stoindex-detail-why strong { font-weight: 800; }
.bf-stoindex-detail-section { display: flex; flex-direction: column; gap: 8px; }
.bf-stoindex-detail-h {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
}
.bf-stoindex-detail-uclist {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px;
  font-size: 13px;
}
.bf-stoindex-detail-uclist li {
  padding-left: 16px; position: relative; color: var(--navy);
}
.bf-stoindex-detail-uclist li::before {
  content: '✓'; position: absolute; left: 0;
  color: #047857; font-weight: 800;
}
.bf-stoindex-detail-bars { display: flex; flex-direction: column; gap: 8px; }
.bf-stoindex-detail-bar {
  display: grid;
  grid-template-columns: 1fr 80px 60px;
  gap: 10px; align-items: center;
  font-size: 12.5px;
}
.bf-stoindex-detail-bar-label { color: var(--navy); font-weight: 600; }
.bf-stoindex-detail-bar-track {
  background: var(--stone-100); border-radius: 999px; height: 6px; overflow: hidden;
}
.bf-stoindex-detail-bar-fill { display: block; height: 100%; border-radius: 999px; }
.bf-stoindex-detail-bar-val { color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
.bf-stoindex-detail-cta {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--stone-200);
}
.bf-stoindex-detail-cta .btn { border-radius: var(--radius-pill); }
.bf-stoindex-detail-ctaprice {
  font-size: 12px; color: var(--mid); line-height: 1.55; margin: 0;
}
.bf-stoindex-detail-link {
  font-size: 13px; color: var(--blue); font-weight: 600; text-decoration: none;
}
.bf-stoindex-detail-link:hover { text-decoration: underline; }

/* Top-5 Liste */
.bf-stoindex-top { margin-top: 24px; }
.bf-stoindex-toph {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin: 0 0 12px;
}
.bf-stoindex-toplist {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.bf-stoindex-topcard {
  background: #fff;
  border: 1.5px solid var(--stone-200);
  border-left: 4px solid var(--stone-300);
  border-radius: 14px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.bf-stoindex-topcard:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}
.bf-stoindex-topcard.bf-fit-bg-hoch    { border-left-color: #047857; }
.bf-stoindex-topcard.bf-fit-bg-mittel  { border-left-color: #d4a51d; }
.bf-stoindex-topcard.bf-fit-bg-bedingt { border-left-color: #c2410c; }
.bf-stoindex-topcard.bf-fit-bg-gering  { border-left-color: #6b7280; }
.bf-stoindex-topcard-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.bf-stoindex-topcard-rank {
  width: 22px; height: 22px;
  background: #ecfdf5; color: #047857;
  border-radius: 6px;
  font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.bf-stoindex-topcard-city {
  flex: 1; font-size: 14px; font-weight: 800; color: var(--navy);
}
.bf-stoindex-topcard-score {
  font-size: 13px; font-weight: 800; color: var(--navy);
}
.bf-stoindex-topcard-text {
  font-size: 12.5px; color: var(--mid); line-height: 1.5;
  margin: 0 0 8px;
}
.bf-stoindex-topcard-link {
  font-size: 12px; font-weight: 600; color: var(--blue);
}

/* Footer-CTA-Banner */
.bf-stoindex-cta {
  margin-top: 26px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 22px;
  align-items: center;
}
.bf-stoindex-cta h3 {
  font-size: 18px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.015em; margin: 0 0 6px;
}
.bf-stoindex-cta p {
  font-size: 13.5px; color: var(--mid); margin: 0; line-height: 1.55;
}
.bf-stoindex-cta-actions {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.bf-stoindex-cta-actions .btn { border-radius: var(--radius-pill); }
.bf-stoindex-cta-price {
  font-size: 12px; color: var(--mid);
}
.bf-stoindex-cta-link {
  font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none;
}
.bf-stoindex-cta-link:hover { text-decoration: underline; }
.bf-stoindex-footnote {
  margin-top: 14px;
  font-size: 11.5px; color: var(--muted); text-align: right;
}

/* Responsive Index */
@media (max-width: 1100px) {
  .bf-stoindex-grid { grid-template-columns: 240px 1fr; }
  .bf-stoindex-detail { grid-column: 1 / -1; }
  .bf-stoindex-toplist { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .bf-stoindex-grid { grid-template-columns: 1fr; }
  .bf-stoindex-trust { grid-template-columns: 1fr; }
  .bf-stoindex-toplist { grid-template-columns: 1fr; }
  .bf-stoindex-cta { grid-template-columns: 1fr; }
  .bf-stoindex-cta-actions { align-items: flex-start; }
}

/* ===== Etappe 2: Typische Aufgaben (7 Kategorien) ===== */
.bf-aufgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.bf-aufg {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(26,37,64,0.04);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.bf-aufg:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,37,64,0.08);
}
.bf-aufg-num {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.bf-aufg h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.bf-aufg p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}
.bf-aufg-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}
@media (max-width: 1100px) {
  .bf-aufgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .bf-aufgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .bf-aufgrid { grid-template-columns: 1fr; }
}

/* ===== Etappe 2: Standortlogik 3 Karten ===== */
.bf-stolog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.bf-stolog {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bf-stolog--hi {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.bf-stolog-tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eaf2fe;
  color: var(--blue);
}
.bf-stolog-tag--hi {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.bf-stolog h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}
.bf-stolog--hi h3 { color: #fff; }
.bf-stolog > p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}
.bf-stolog--hi > p { color: rgba(255,255,255,0.78); }
.bf-stolog-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bf-stolog-list li {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.bf-stolog--hi .bf-stolog-list li { color: rgba(255,255,255,0.82); }
.bf-stolog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 900px) {
  .bf-stolog-grid { grid-template-columns: 1fr; }
}

/* ===== Etappe 2: Geprüfte Partner ===== */
.bf-partner-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 8px;
}
.bf-partner-col {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.bf-partner-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.bf-partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bf-partner-list li {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}
.bf-partner-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}
.bf-partner-col--cta {
  background: var(--light);
  border-color: rgba(47,111,159,0.25);
}
.bf-partner-cta-h {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 6px;
}
.bf-partner-cta-p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.55;
  margin: 0 0 14px;
}
.bf-partner-col--cta .btn {
  align-self: flex-start;
  border-radius: 999px;
}
.bf-partner-divider {
  height: 1px;
  background: var(--stone-200);
  margin: 22px 0 22px;
}
@media (max-width: 800px) {
  .bf-partner-grid { grid-template-columns: 1fr; }
}
