/* About Us section (home) */
.component--about-home {
  position: relative !important;
  padding: 0vw 0 6vw !important;
  color: #fff !important;
  overflow: hidden !important;
}

.component--about-home .about-home {
  position: relative;
  z-index: 1;
}

.about-home__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 1.5vw 0 3vw;
}

.about-home__intro {
  width: 100%;
  max-width: 900px;
}

.about-home__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

.about-home__title {
  margin: 0;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.about-home__copy {
  max-width: 640px;
  width: 100%;
  padding-bottom: 0;
}

.about-home__copy p {
  margin: 0 0 28px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  opacity: 0.88;
}

.about-home__divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
}

.about-home__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
  padding: 3.2vw 0;
}

.about-home__value {
  position: relative;
  padding-right: 1vw;
  animation: about-fade-up 0.8s ease both;
}

.about-home__value:nth-child(2) { animation-delay: 0.1s; }
.about-home__value:nth-child(3) { animation-delay: 0.2s; }

.about-home__num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.about-home__value h3 {
  margin: 0 0 12px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-home__value p {
  margin: 0;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.75;
  max-width: 32ch;
}

.about-home__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  padding: 2.8vw 0 0.5vw;
}

.about-home__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-home__stat strong {
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-home__stat span {
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 14px;
  opacity: 0.6;
}

@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .component--about-home {
    padding: 16vw 0 18vw;
  }

  .about-home__top {
    gap: 24px;
    padding: 0 0 36px;
  }

  .about-home__intro {
    max-width: none;
  }

  .about-home__copy {
    max-width: 100%;
  }

  .about-home__values,
  .about-home__stats {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  .about-home__value p {
    max-width: 100%;
  }

  .about-home__stats {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-home__value {
    animation: none;
  }
}
