.about-page {
  background:
    radial-gradient(circle at top left, rgba(14, 116, 144, 0.14), transparent 28%),
    linear-gradient(180deg, #f6f9fc 0%, #edf4fb 100%);
}

.about-main {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-hero {
  padding: clamp(1.5rem, 4vw, 3rem) 0 1.25rem;
}

.about-hero__inner {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.about-hero__content,
.about-story-card,
.about-support-card,
.about-cta {
  min-width: 0;
}

.about-hero__content {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #0f766e 42%, #2563eb 100%);
  color: #f8fafc;
  box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.18);
}

.about-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-hero__content h1,
.about-section__heading h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-hero__content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

.about-hero__content p,
.about-section__heading p,
.about-support-card p,
.about-cta p {
  margin: 0;
  max-width: 42rem;
}

.about-hero__actions,
.about-support-card__actions,
.about-cta__actions {
  display: grid;
  gap: 0.75rem;
}

.about-hero__actions .btn,
.about-support-card__actions .btn,
.about-cta__actions .btn {
  width: 100%;
  justify-content: center;
}

.about-hero__panel {
  display: grid;
  gap: 0.875rem;
  align-content: start;
}

.about-hero__panel h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.about-hero__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.625rem;
}

.about-section {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.about-section__heading {
  max-width: 44rem;
}

.about-story-card__content,
.about-services-grid {
  margin-top: 0.25rem;
}

.about-story-card__content p,
.about-service-card p,
.about-support-card__actions a,
.about-cta__actions a {
  min-width: 0;
}

.about-service-card {
  display: grid;
  gap: 0.875rem;
  align-content: start;
}

.about-service-card h3,
.about-support-card h2,
.about-cta h2 {
  margin: 0;
}

.about-service-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.14), rgba(37, 99, 235, 0.14));
  color: #0f4c81;
  font-size: 1.125rem;
}

.about-support-card,
.about-cta {
  display: grid;
  gap: 1rem;
}

.about-section--cta .about-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #f8fafc;
}

.about-flash {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.about-flash--success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.about-flash--warning {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
}

.about-flash--error,
.about-flash--danger {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
}

.about-flash--info {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

@media (min-width: 48rem) {
  .about-hero__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.9fr);
  }

  .about-hero__actions,
  .about-support-card__actions,
  .about-cta__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: center;
  }

  .about-hero__actions .btn,
  .about-support-card__actions .btn,
  .about-cta__actions .btn {
    width: auto;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .about-support-card,
  .about-cta {
    grid-template-columns: minmax(0, 1.25fr) auto;
    align-items: center;
  }

  .about-support-card__actions,
  .about-cta__actions {
    justify-content: end;
  }

  .about-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
