/* css/about.css */

/* ─── HERO ─── */
.abt-hero {
  background: var(--surface);
  padding: 25px 0 40px;
}

.abt-hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.abt-hero__body {
  flex: 1 1 0;
  min-width: 0;
}

.abt-hero__img-wrap {
  flex: 0 0 42%;
  max-width: 460px;
}

.abt-hero__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}

.abt-hero__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.abt-hero__lead {
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}

.abt-hero__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.abt-hero__text:last-of-type { margin-bottom: 32px; }

/* ─── ЦИФРЫ ─── */
.abt-stats {
  padding: 0 0 40px;
}

.abt-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.abt-stat {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

.abt-stat__num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.abt-stat__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── ПОЧЕМУ МЫ ─── */
.abt-why {
  padding: 0 0 40px;
}

.abt-why__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.abt-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.abt-why__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

.abt-why__icon {
  color: var(--red);
  margin-bottom: 14px;
}

.abt-why__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.abt-why__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── КОМАНДА (скопировано из contacts.css) ─── */
.ct-team {
  padding: 0 0 40px;
}

.ct-team__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.ct-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.team-card__photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card__body {
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-card__dept {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  margin-bottom: 4px;
}

.team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.team-card__phone {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.team-card__phone:hover { color: var(--red); }

.team-card__email {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.team-card__email:hover { color: var(--red); }

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .abt-hero__card   { padding: 36px 32px; gap: 32px; }
  .abt-why__grid    { grid-template-columns: repeat(2, 1fr); }
  .ct-team__grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .abt-hero__card     { flex-direction: column; }
  .abt-hero__img-wrap { flex: none; width: 100%; max-width: 400px; align-self: center; }
}

@media (max-width: 560px) {
  .abt-hero__card   { padding: 28px 24px; }
  .abt-stats__grid  { grid-template-columns: 1fr; }
  .abt-why__grid    { grid-template-columns: 1fr; }
  .ct-team__grid    { grid-template-columns: 1fr; }
  .abt-hero .btn    { width: 100%; }
}
