/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--white);
  padding: 0 0 var(--space-12);
  overflow: hidden;
}

/* ── Vollbreites Hero-Bild ──────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(360px, 56vh, 620px);
  background: var(--neutral-100);
  overflow: hidden;
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Text-Card ragt ins Bild ────────────────────────── */
.hero-text {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: var(--space-10) var(--space-10) var(--space-8) var(--container-pad);
  margin-left: calc(var(--container-pad) * -1);
  margin-top: -120px;
  max-width: calc(820px + var(--container-pad));
}

.hero-title {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--neutral-900);
  margin: 0 0 var(--space-3);
  max-width: 820px;
}

.hero-subline {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--neutral-700);
  max-width: 820px;
  margin: 0 0 var(--space-6);
}

.hero-body {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--neutral-600);
  max-width: 640px;
  margin: 0 0 var(--space-8);
  text-align: justify;
  hyphens: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.hero-actions .btn {
  padding: 16px 32px;
  font-size: 16px;
}

/* ── Trust-Bar unter dem Hero ───────────────────────── */
.hero-trust {
  background: var(--primary-900);
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: var(--space-6) 0;
}
.hero-trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  min-height: 140px;
}
.hero-trust-item + .hero-trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.12);
}
.hero-trust-figure {
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}
.hero-trust-plus {
  color: var(--primary-300);
  font-weight: 500;
  margin-left: 2px;
}
.hero-trust-logo {
  height: 120px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.hero-trust-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-200);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .hero-subline { font-size: 44px; }
}

@media (max-width: 900px) {
  .hero { padding: 0 0 var(--space-10); }
  .hero-visual { height: clamp(280px, 42vh, 420px); }
  .hero-text {
    padding: var(--space-8) var(--space-8) var(--space-6) var(--container-pad);
    margin-top: -80px;
  }
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-5) 0;
  }
  .hero-trust-item {
    min-height: 130px;
    padding: var(--space-4);
  }
  .hero-trust-item + .hero-trust-item::before { display: none; }
  .hero-trust-item:nth-child(2n)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.12);
    display: block;
  }
  .hero-trust-item:nth-child(1),
  .hero-trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 600px) {
  .hero { padding: 0 0 var(--space-8); }
  .hero-visual { height: 260px; }
  .hero-text {
    padding: var(--space-6) var(--space-5) var(--space-5) var(--container-pad);
    margin-top: -40px;
  }
  .hero-title { font-size: 32px; }
  .hero-subline { font-size: 32px; }
  .hero-body { font-size: 16px; }
  .hero-actions { gap: var(--space-4); }
  .hero-actions .btn { width: 100%; padding: 16px 24px; }
  .hero-trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-4) 0;
  }
  .hero-trust-item {
    min-height: 110px;
    padding: var(--space-3);
    gap: var(--space-2);
  }
  .hero-trust-figure { font-size: 36px; }
  .hero-trust-logo { height: 88px; }
  .hero-trust-label { font-size: 13px; }
}
