/* B2B Styles nur für bestatter.html */

.hero-b2b .b2b-trust {
  margin-top: 18px;
}

/* Timeline Flow */
.flow {
  position: relative;
  margin-top: 18px;
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Linie fix, überall gleich */
.flow-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 52px;
  height: 2px;
  border-radius: 2px;
  background: rgba(108, 119, 100, 0.32);
}

.flow-step {
  position: relative;
  padding-top: 80px;
  text-align: center;
  min-height: 140px;
}

.flow-dot {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 4px;
  background: #6C7764;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.flow-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(20, 24, 22, 0.92);
  margin-bottom: 8px;
}

.flow-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(20, 24, 22, 0.72);
  margin: 0 auto;
  max-width: 22ch;
}

.flow-card {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

/* Pakete */
.pakete-grid .paket-card {
  position: relative;
}

.paket-lead {
  margin-top: 6px;
  color: rgba(20, 24, 22, 0.78);
}

.paket-highlight {
  border: 1px solid rgba(108, 119, 100, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.paket-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(108, 119, 100, 0.12);
  border: 1px solid rgba(108, 119, 100, 0.22);
  font-size: 12px;
  color: rgba(20, 24, 22, 0.78);
}

/* Mobile: Flow wird vertikal */
@media (max-width: 920px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
    margin-top: 14px;
  }

  .flow-line {
    left: 12px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .flow-step {
    text-align: left;
    padding-top: 0;
    padding-left: 34px;
    min-height: unset;
  }

  .flow-dot {
    top: 14px;
    left: 12px;
    transform: translate(-50%, 0) rotate(45deg);
  }

  .flow-text {
    max-width: 60ch;
    margin: 0;
  }
}
