.about-section {
  min-height: calc(100vh - 74px);
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.82fr);
  gap: 40px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.value-card {
  min-height: 188px;
  padding: 24px;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card h3 {
  margin: 0 0 10px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.about-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.about-info-panel,
.about-license {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(20, 33, 38, 0.07);
}

.about-info-panel h2,
.about-license h2 {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 2.1vw, 1.85rem);
  line-height: 1.16;
}

.about-info-panel p,
.about-license p {
  margin: 0;
  color: var(--muted);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.about-team-stat {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(8, 123, 112, 0.14);
  border-radius: var(--radius);
  background: rgba(237, 244, 242, 0.72);
}

.about-team-stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.45rem;
  line-height: 1;
}

.about-team-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.about-info-panel ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.about-info-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.about-info-panel li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--amber);
}

.about-license {
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(15, 27, 31, 0.98), rgba(8, 88, 82, 0.9)),
    var(--panel-dark);
  color: #ffffff;
}

.about-license p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 860px) {
  .about-grid,
  .values-grid,
  .about-info-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    aspect-ratio: 16 / 10;
  }

  .value-card {
    min-height: 0;
  }

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

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 242, 0.62)),
    var(--surface);
}

.about-media {
  position: relative;
  box-shadow: var(--shadow-strong);
}

.about-media::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-media img {
  filter: saturate(1.05) contrast(1.03);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.about-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 33, 38, 0.06);
}

.about-stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.75rem;
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.value-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(20, 33, 38, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.value-card::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--teal), var(--cyan), var(--amber));
}

.value-card:hover {
  border-color: rgba(8, 123, 112, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

@media (max-width: 620px) {
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-info-panel,
  .about-license {
    padding: 18px;
  }
}

body.ui-theme-dark .about-section {
  background:
    linear-gradient(180deg, rgba(18, 30, 36, 0.96), rgba(16, 26, 33, 0.78)),
    var(--surface);
}

body.ui-theme-dark .about-info-panel {
  background: rgba(20, 32, 37, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
}

body.ui-theme-dark .about-team-stat {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
