/* ============================================================
   ÜBER UNS PAGE STYLES — ueber-uns.html
   web-erhebung.de
   ============================================================ */

/* --- Hero --- */
.about-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1d38 60%, #0a0e1a 100%);
  border-bottom: 1px solid #1e2d45;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-hero h1 {
  margin-bottom: 1rem;
}

.about-hero p.lead {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

/* --- Story Section --- */
.about-story {
  padding: 5rem 0;
  background-color: #0a0e1a;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.story-content h2 {
  margin-bottom: 1.25rem;
}

.story-content p {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-visual {
  background: linear-gradient(135deg, #111827 0%, #0f1a2e 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-stat-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(59, 130, 246, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
}

.story-stat-text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9fafb;
  line-height: 1;
}

.story-stat-text span {
  font-size: 0.875rem;
  color: #6b7280;
}

/* --- Values Section --- */
.about-values {
  padding: 5rem 0;
  background-color: #070b14;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: linear-gradient(135deg, #111827 0%, #0f1a2e 100%);
  border: 1px solid #1e2d45;
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.value-card p {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
}

/* --- Team Section --- */
.about-team {
  padding: 5rem 0;
  background-color: #0a0e1a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background-color: #111827;
  border: 1px solid #1e2d45;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.team-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9fafb;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.team-card h3 {
  font-size: 1rem;
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.8125rem;
  color: #3b82f6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: block;
}

.team-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* --- Milestones Section --- */
.about-milestones {
  padding: 5rem 0;
  background-color: #070b14;
  border-top: 1px solid #1e2d45;
  border-bottom: 1px solid #1e2d45;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.milestone {
  padding: 1.5rem 1rem;
}

.milestone-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.milestone-label {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* --- About CTA --- */
.about-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0d1629 0%, #0a0e1a 100%);
  text-align: center;
}

.about-cta__inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-cta h2 {
  margin-bottom: 1rem;
}

.about-cta p {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}
