.about-hero {
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 60%), var(--color-background);
}

.about-hero-inner {
  align-items: center;
  gap: var(--space-32);
}

.about-hero-text {
  max-width: 34rem;
}

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

.about-hero-figure {
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-section-header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-32);
}

.about-block-grid {
  gap: var(--space-32);
}

.about-card {
  height: 100%;
}

.about-values-grid,
.about-services-grid,
.about-why-grid {
  gap: var(--space-24);
}

.about-value-card h3,
.about-service-card h3,
.about-why-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-12);
}

.about-team-inner,
.about-journey-inner {
  align-items: center;
  gap: var(--space-32);
}

.about-team-figure,
.about-journey-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-team-highlight {
  margin-top: var(--space-16);
}

.about-journey-steps {
  margin-top: var(--space-20);
  display: grid;
  gap: var(--space-16);
}

.about-journey-steps li h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-8);
}

.about-journey-steps li p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.about-services-cta,
.about-why-cta {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.about-future-card {
  background: linear-gradient(135deg, var(--color-primary-soft), #ffffff);
}

.about-future-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.about-future-text {
  max-width: 30rem;
}

@media (min-width: 768px) {
  .about-future-inner {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    text-align: left;
  }

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

  .about-hero-figure,
  .about-team-figure,
  .about-journey-figure {
    max-width: 100%;
  }

  .about-journey-steps {
    margin-top: var(--space-16);
  }
}
