/* ── Über-uns page ────────────────────────── */

.ueber-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-green) 100%);
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}

.ueber-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ueber-hero p.lead {
  font-size: 1.15rem;
  opacity: .9;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  padding: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.story-card h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.story-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.story-card .quote {
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
}

.founder-name {
  font-weight: 600;
  color: var(--primary-color);
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .12);
  border: 4px solid var(--primary-color);
  display: block;
  margin: 0 auto 20px;
}

.founder-sidebar {
  text-align: center;
  position: sticky;
  top: 100px;
}

.founder-quote {
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: #555;
  border-left: 3px solid var(--primary-color);
  padding: 10px 15px;
  margin: 15px 0 10px;
  text-align: left;
}

.founder-signature {
  font-size: .9rem;
  color: #666;
  margin-top: 5px;
}

/* Werte-Karten */
.ueber-values {
  padding: 50px 0;
}

.ueber-values h2 {
  font-weight: 700;
  color: var(--primary-color);
}

.value-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  padding: 30px;
  text-align: center;
  height: 100%;
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h4 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* CTA */
.ueber-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
  border-radius: 12px;
}

.ueber-cta h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background .2s;
}

.btn-cta:hover {
  background: #e9ecef;
  color: var(--primary-color);
  text-decoration: none;
}
