@import url("/index.css");

h1 {
  font-size: clamp(3.3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.about-hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(18, 43, 56, 0.94), rgba(18, 43, 56, 0.76), rgba(18, 43, 56, 0.28)),
    url("/gutachten-manager-hero.png") center right / cover no-repeat;
}

.about-hero .section-inner {
  min-height: min(690px, calc(90svh - 70px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.about-hero .section-inner > * {
  min-width: 0;
}

.about-hero .section-kicker {
  color: #cceee8;
}

.hero-facts {
  min-width: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-fact {
  min-width: 0;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
}

.hero-fact strong {
  display: block;
  color: white;
}

.hero-fact span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.page-steps {
  background: var(--wash);
  padding: 1.05rem 0;
}

.page-steps .section-inner {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-steps a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  background: white;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.page-steps a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.why-head {
  max-width: 900px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.why-item {
  min-height: 190px;
  padding: 1.25rem;
  background: white;
}

.why-item strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.08rem;
  line-height: 1.25;
}

.why-item p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.partner-band {
  color: white;
  background: #1d4459;
}

.partner-band .section-kicker {
  color: #8bd8f6;
}

.partner-band .lead,
.partner-band p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-note {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.partner-note strong {
  display: block;
  color: white;
  font-size: 1.12rem;
}

.partner-note p {
  margin-top: 0.65rem;
}

.timeline {
  display: grid;
  gap: 1.2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.timeline-item p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.outcome {
  background: var(--wash);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  min-height: 64px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
}

.outcome-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .about-hero .section-inner,
  .split,
  .why-grid,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    background:
      linear-gradient(180deg, rgba(18, 43, 56, 0.95), rgba(18, 43, 56, 0.84), rgba(18, 43, 56, 0.58)),
      url("/gutachten-manager-hero.png") 62% center / cover no-repeat;
  }

  .about-hero .section-inner {
    padding: 4.1rem 0;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 3.9rem);
  }
}
