/* ==========================================
   Über ProBe Hero
========================================== */

.about-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 110px 0 170px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.90) 34%,
      rgba(255,255,255,0.55) 52%,
      rgba(255,255,255,0.08) 75%,
      rgba(255,255,255,0) 100%
    ),
    url("../about-hero-new.png");
  background-size: cover;
    min-height: 900px;
  padding: 90px 0 145px;
  background-position: 90% center;
}

.about-hero-grid {
  display: block;
}

.hero-grid > div:first-child {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1;
}

.hero-text {
  max-width: 520px;
  color: #23314d;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 247, 245, 0.95);
  color: var(--teal);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.hero-card {
  display: none;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 130px;
  opacity: 0.95;
}

.about-quickfacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.about-quickfacts span {
  background: #ffffff;
  color: var(--blue-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}

.about-quickfacts span::before {
  content: "✓";
  color: white;
  background: var(--teal);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.78rem;
}

/* Story */

.about-story .text-box {
  font-size: 1.05rem;
}

/* Ziel-Karten */

.feature-grid {
  margin-top: 34px;
}

.feature-card {
  align-items: flex-start;
  min-height: 180px;
}

.feature-card p {
  margin-top: 8px;
  color: #475569;
  font-weight: 500;
  line-height: 1.6;
}

.target-list {
  display: grid;
  gap: 14px;
}

/* CTA */

.cta-section {
  padding-top: 20px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: rgba(185, 218, 221, 0.35);
  border-radius: 50%;
}

.cta-card h2,
.cta-card .label {
  color: white;
}

.cta-card .label {
  opacity: 0.82;
}

.cta-card .btn.primary {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--blue-dark);
  box-shadow: none;
  flex-shrink: 0;
}