/**
 * Digitalisierungsservice Premium – Strategische Service-Seite
 * Verstehen → Vertrauen → Prozess → Leistungen → Umsetzung → Ergebnis → CTA
 * Keine Kopie der Startseite. Kein Kontaktformular.
 */

/* --------------------------------------------------------------------------- */
/* Design-Tokens                                                               */
/* --------------------------------------------------------------------------- */
.bc-ds-hero,
.bc-ds-failure,
.bc-ds-workflow,
.bc-ds-leistungen,
.bc-ds-sae,
.bc-ds-infra,
.bc-ds-außen,
.bc-ds-ergebnis,
.bc-ds-trust,
.bc-ds-team,
.bc-ds-abschluss {
  --ds-space-xs: 0.5rem;
  --ds-space-sm: 1rem;
  --ds-space-md: 1.5rem;
  --ds-space-lg: 2rem;
  --ds-space-xl: 3rem;
  --ds-space-2xl: 5rem;
  --ds-space-3xl: 7rem;
  --ds-container: min(1160px, 92vw);
  --ds-radius: 14px;
  --ds-radius-sm: 10px;
  --ds-text: #0f172a;
  --ds-text-soft: #334155;
  --ds-muted: #64748b;
  --ds-border: #e2e8f0;
  --ds-border-strong: #cbd5e1;
  --ds-primary: #1d4ed8;
  --ds-primary-hover: #1e40af;
  --ds-surface: #ffffff;
  --ds-surface-2: #f8fafc;
  --ds-surface-3: #f1f5f9;
}

/* --------------------------------------------------------------------------- */
/* 1. HERO – Strategische Positionierung                                       */
/* --------------------------------------------------------------------------- */
.bc-ds-hero {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface-2);
}

.bc-ds-hero__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .bc-ds-hero__inner {
    grid-template-columns: minmax(26rem, 1fr) minmax(0, 1.4fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.bc-ds-hero__content {
  min-width: 0;
}

.bc-ds-hero__title {
  margin: 0 0 var(--ds-space-md);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ds-text);
}

.bc-ds-hero__subtitle {
  margin: 0 0 var(--ds-space-xl);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.55;
  color: var(--ds-muted);
}

.bc-ds-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-space-sm);
}

.bc-ds-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 1.625rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--ds-radius-sm);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.bc-ds-hero__cta--primary {
  color: #fff;
  background: var(--ds-primary);
  border: 2px solid var(--ds-primary);
}

.bc-ds-hero__cta--primary:hover {
  background: var(--ds-primary-hover);
  border-color: var(--ds-primary-hover);
  color: #fff;
}

.bc-ds-hero__cta--secondary {
  color: var(--ds-primary);
  background: transparent;
  border: 2px solid var(--ds-primary);
}

.bc-ds-hero__cta--secondary:hover {
  background: rgba(29, 78, 216, 0.08);
  color: var(--ds-primary-hover);
  border-color: var(--ds-primary-hover);
}

.bc-ds-hero__visual {
  min-width: 0;
}

.bc-ds-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--ds-radius);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 50px -12px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--ds-border);
}

/* --------------------------------------------------------------------------- */
/* 2. Warum Digitalisierung oft scheitert – Failure-Cards                       */
/* --------------------------------------------------------------------------- */
.bc-ds-failure {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-failure__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-failure__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-failure__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-failure__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-md);
}

@media (min-width: 640px) {
  .bc-ds-failure__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .bc-ds-failure__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bc-ds-failure__card {
  padding: var(--ds-space-lg);
  background: var(--ds-surface-2);
  border: 1px solid var(--ds-border);
  border-left: 4px solid var(--ds-muted);
  border-radius: 0 var(--ds-radius-sm) var(--ds-radius-sm) 0;
  display: flex;
  flex-direction: column;
}

.bc-ds-failure__card--with-image {
  padding: 0;
  overflow: hidden;
  border-radius: var(--ds-radius-sm);
}

.bc-ds-failure__card--with-image .bc-ds-failure__card-body {
  padding: var(--ds-space-lg);
}

.bc-ds-failure__card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ds-surface-3);
}

.bc-ds-failure__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-ds-failure__card-title {
  margin: 0 0 var(--ds-space-xs);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ds-text);
}

.bc-ds-failure__card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ds-text-soft);
}

/* --------------------------------------------------------------------------- */
/* 3. Unser Digitalisierungs-Workflow – Roadmap/Timeline                        */
/* --------------------------------------------------------------------------- */
.bc-ds-workflow {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface-2);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-workflow__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-workflow__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-workflow__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-workflow__roadmap {
  position: relative;
  margin-bottom: var(--ds-space-2xl);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-workflow__line {
  display: none;
}

@media (min-width: 640px) {
  .bc-ds-workflow__line {
    display: block;
    position: absolute;
    top: 1.75rem;
    bottom: 1.75rem;
    left: 1.25rem;
    width: 2px;
    background: linear-gradient(180deg, var(--ds-primary) 0%, var(--ds-border-strong) 50%, var(--ds-border) 100%);
    z-index: 0;
  }
}

.bc-ds-workflow__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.bc-ds-workflow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--ds-space-md);
  align-items: start;
}

.bc-ds-workflow__step-marker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bc-ds-workflow__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ds-text);
  background: var(--ds-surface);
  border: 2px solid var(--ds-border);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.bc-ds-workflow__step[data-step="1"] .bc-ds-workflow__step-num {
  color: #fff;
  background: var(--ds-primary);
  border-color: var(--ds-primary);
}

.bc-ds-workflow__step-card {
  padding: var(--ds-space-lg);
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-sm);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.bc-ds-workflow__step-title {
  margin: 0 0 var(--ds-space-xs);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ds-text);
}

.bc-ds-workflow__step-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ds-text-soft);
}

.bc-ds-workflow__cta-wrap {
  text-align: center;
}

.bc-ds-workflow__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--ds-primary);
  border: 2px solid var(--ds-primary);
  border-radius: var(--ds-radius-sm);
  box-shadow: 0 4px 18px rgba(29, 78, 216, 0.25);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.bc-ds-workflow__cta:hover {
  background: var(--ds-primary-hover);
  border-color: var(--ds-primary-hover);
  color: #fff;
}

/* --------------------------------------------------------------------------- */
/* 4. Unsere Leistungen – gruppierte Service-Blöcke                             */
/* --------------------------------------------------------------------------- */
.bc-ds-leistungen {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-leistungen__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-leistungen__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-leistungen__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-leistungen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-xl);
}

@media (min-width: 768px) {
  .bc-ds-leistungen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bc-ds-leistungen__group {
  padding: var(--ds-space-xl);
  background: var(--ds-surface-2);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  border-top: 3px solid var(--ds-primary);
  display: flex;
  flex-direction: column;
}

.bc-ds-leistungen__group--with-image {
  padding: 0;
  overflow: hidden;
}

.bc-ds-leistungen__group--with-image .bc-ds-leistungen__group-body {
  padding: var(--ds-space-xl);
}

.bc-ds-leistungen__group-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ds-surface-3);
}

.bc-ds-leistungen__group-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-ds-leistungen__group-title {
  margin: 0 0 var(--ds-space-md);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ds-text);
}

.bc-ds-leistungen__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-md);
}

.bc-ds-leistungen__item-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-text);
}

.bc-ds-leistungen__item-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ds-text-soft);
}

/* --------------------------------------------------------------------------- */
/* 5. Standard, Anpassung oder Eigenentwicklung – 3-Spalten                     */
/* --------------------------------------------------------------------------- */
.bc-ds-sae {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface-2);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-sae__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-sae__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-sae__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-sae__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-lg);
}

@media (min-width: 768px) {
  .bc-ds-sae__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bc-ds-sae__column {
  min-width: 0;
}

.bc-ds-sae__column-inner {
  padding: var(--ds-space-xl);
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-sm);
}

.bc-ds-sae__column--2 .bc-ds-sae__column-inner {
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow: 0 2px 12px rgba(29, 78, 216, 0.08);
}

.bc-ds-sae__column--3 .bc-ds-sae__column-inner {
  border-color: rgba(29, 78, 216, 0.4);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.1);
}

.bc-ds-sae__column-badge {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 2rem;
  text-align: center;
  color: var(--ds-primary);
  background: rgba(29, 78, 216, 0.1);
  border-radius: 50%;
}

.bc-ds-sae__column-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ds-text);
}

.bc-ds-sae__column-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ds-text-soft);
}

.bc-ds-sae__footer {
  margin: var(--ds-space-2xl) 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------- */
/* 6. Infrastruktur und digitale Basis                                           */
/* --------------------------------------------------------------------------- */
.bc-ds-infra {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-infra__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-infra__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-infra__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-infra__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-lg);
}

@media (min-width: 640px) {
  .bc-ds-infra__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bc-ds-infra__item {
  padding: var(--ds-space-xl);
  background: var(--ds-surface-2);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-sm);
  display: flex;
  gap: var(--ds-space-md);
  flex-direction: column;
}

.bc-ds-infra__item--with-image {
  padding: 0;
  overflow: hidden;
  border-radius: var(--ds-radius);
}

.bc-ds-infra__item--with-image .bc-ds-infra__item-content {
  padding: var(--ds-space-xl);
}

.bc-ds-infra__item-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ds-surface-3);
}

.bc-ds-infra__item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-ds-infra__item-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15) 0%, rgba(29, 78, 216, 0.05) 100%);
  border-radius: var(--ds-radius-sm);
}

.bc-ds-infra__item-title {
  margin: 0 0 var(--ds-space-xs);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ds-text);
}

.bc-ds-infra__item-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ds-text-soft);
}

/* --------------------------------------------------------------------------- */
/* 7. Professionelle Außendarstellung                                            */
/* --------------------------------------------------------------------------- */
.bc-ds-außen {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface-2);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-außen__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-außen__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-außen__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-außen__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-xl);
}

@media (min-width: 640px) {
  .bc-ds-außen__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bc-ds-außen__item {
  padding: var(--ds-space-xl);
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  border-top: 3px solid var(--ds-primary);
}

.bc-ds-außen__item--with-image {
  padding: 0;
  overflow: hidden;
}

.bc-ds-außen__item--with-image .bc-ds-außen__item-body {
  padding: var(--ds-space-xl);
}

.bc-ds-außen__item-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ds-surface-3);
}

.bc-ds-außen__item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-ds-außen__item-title {
  margin: 0 0 var(--ds-space-xs);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ds-text);
}

.bc-ds-außen__item-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ds-text-soft);
}

/* --------------------------------------------------------------------------- */
/* 8. Ergebnis / Transformation                                                  */
/* --------------------------------------------------------------------------- */
.bc-ds-ergebnis {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-ergebnis__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-ergebnis__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-ergebnis__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-ergebnis__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-lg);
}

@media (min-width: 640px) {
  .bc-ds-ergebnis__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bc-ds-ergebnis__item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--ds-surface-2);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-sm);
  overflow: hidden;
  min-width: 0;
}

.bc-ds-ergebnis__item:not(.bc-ds-ergebnis__item--with-image) {
  border-left: 4px solid var(--ds-primary);
  border-radius: 0 var(--ds-radius-sm) var(--ds-radius-sm) 0;
}

.bc-ds-ergebnis__item:not(.bc-ds-ergebnis__item--with-image) .bc-ds-ergebnis__item-body {
  padding: var(--ds-space-lg);
}

.bc-ds-ergebnis__item--with-image {
  padding: 0;
  overflow: hidden;
  border-radius: var(--ds-radius);
  border-left: none;
  border-top: 3px solid var(--ds-primary);
}

.bc-ds-ergebnis__item--with-image .bc-ds-ergebnis__item-body {
  padding: var(--ds-space-lg);
  display: flex;
  gap: var(--ds-space-md);
  flex-direction: row;
  align-items: flex-start;
}

.bc-ds-ergebnis__item-body {
  display: flex;
  gap: var(--ds-space-md);
  flex-direction: row;
  align-items: flex-start;
}

.bc-ds-ergebnis__item-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bc-ds-ergebnis__item-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ds-surface-3);
}

.bc-ds-ergebnis__item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-ds-ergebnis__item-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ds-primary);
}

.bc-ds-ergebnis__item-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ds-text);
}

.bc-ds-ergebnis__item-subtitle {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ds-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------- */
/* 9b. Qualität, die überprüfbar ist (1 Spalte mobil, 3 Spalten ab Desktop)       */
/* --------------------------------------------------------------------------- */
.bc-ds-trust {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface-2);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-trust__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-trust__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-trust__lead {
  margin: 0 0 var(--ds-space-2xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-trust__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-lg);
}

@media (min-width: 992px) {
  .bc-ds-trust__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ds-space-lg);
    align-items: stretch;
  }
}

.bc-ds-trust__item {
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  border-top: 3px solid var(--ds-primary);
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bc-ds-trust__item--with-image {
  padding: 0;
  overflow: hidden;
}

.bc-ds-trust__item-body {
  padding: var(--ds-space-xl);
  flex: 1;
  min-height: 0;
}

.bc-ds-trust__item-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ds-surface-3);
}

.bc-ds-trust__item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-ds-trust__item-title {
  margin: 0 0 var(--ds-space-xs);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ds-text);
}

.bc-ds-trust__item-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ds-text-soft);
}

/* --------------------------------------------------------------------------- */
/* 9c. Unser Team                                                               */
/* --------------------------------------------------------------------------- */
.bc-ds-team {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-team__inner {
  max-width: var(--ds-container);
  margin: 0 auto;
}

.bc-ds-team__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-align: center;
}

.bc-ds-team__lead {
  margin: 0 0 var(--ds-space-xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-ds-team__figure {
  margin: 0;
  border-radius: var(--ds-radius);
  overflow: hidden;
  border: 1px solid var(--ds-border);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  background: var(--ds-surface-3);
  line-height: 0;
}

.bc-ds-team__img {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------- */
/* 10. Abschluss-CTA – Baustellen-Check (kein Förderfähigkeit-Button)            */
/* --------------------------------------------------------------------------- */
.bc-ds-abschluss {
  padding: var(--ds-space-3xl) var(--ds-space-md);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08) 0%, var(--ds-surface-2) 50%, var(--ds-surface-3) 100%);
  border-top: 1px solid var(--ds-border);
}

.bc-ds-abschluss__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.bc-ds-abschluss__title {
  margin: 0 0 var(--ds-space-sm);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ds-text);
}

.bc-ds-abschluss__lead {
  margin: 0 0 var(--ds-space-xl);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
}

.bc-ds-abschluss__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ds-space-sm);
}

.bc-ds-abschluss__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--ds-radius-sm);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.bc-ds-abschluss__cta--primary {
  color: #fff;
  background: var(--ds-primary);
  border: 2px solid var(--ds-primary);
  box-shadow: 0 4px 18px rgba(29, 78, 216, 0.25);
}

.bc-ds-abschluss__cta--primary:hover {
  background: var(--ds-primary-hover);
  border-color: var(--ds-primary-hover);
  color: #fff;
}

.bc-ds-abschluss__cta--secondary {
  color: var(--ds-primary);
  background: transparent;
  border: 2px solid var(--ds-primary);
}

.bc-ds-abschluss__cta--secondary:hover {
  background: rgba(29, 78, 216, 0.08);
  color: var(--ds-primary-hover);
  border-color: var(--ds-primary-hover);
}
