.section-hero-about {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.hero-layout-about {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-text-about {
  max-width: 640px;
}

.hero-media-about {
  display: flex;
  justify-content: flex-end;
}

.hero-card-about {
  max-width: 360px;
}

.section-about-intro {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-about-history,
.section-about-team,
.section-about-values,
.section-about-safety,
.section-about-testimonials,
.section-about-future {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header-about p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-history-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat__value {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

.about-stat__label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: var(--space-3);
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4a64, var(--color-primary));
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.about-quote-author {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 1024px) {
  .hero-layout-about {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 767px) {
  .hero-layout-about {
    grid-template-columns: 1fr;
  }

  .hero-media-about {
    justify-content: flex-start;
  }

  .hero-card-about {
    max-width: 100%;
  }

  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .about-history-highlights {
    flex-direction: column;
  }
}
