.about {
  background: #ffffff;
  padding: 88px 0 100px;
  overflow: hidden;
}

.about__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.about__head {
  margin-bottom: 48px;
}

.about__label {
  margin-bottom: 16px;
  color: #004098;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.about__title {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.02em;
}

.about__body {
  position: relative;
  display: flex;
  align-items: center;
  height: 754px;
  border-radius: 12px;
  background-image: url(../images/about3.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0;
  transform: translateY(32px);
  animation: about-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.about__stats {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 365px;
}

.about__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
}

.about__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #004098;
}

.about__stat-icon img {
  display: block;
  width: 95px;
  height: auto;
}

.about__stat-value {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}

.about__stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
}

.about__stat-bar {
  display: block;
  width: 32px;
  height: 4px;
  margin-top: 16px;
  border-radius: 2px;
  background: #004098;
}

@keyframes about-enter {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1600px) {
  .about {
    padding: 72px 0 80px;
  }

  .about__inner {
    padding: 0 24px;
  }

  .about__head {
    margin-bottom: 40px;
  }

  .about__title {
    font-size: 40px;
    line-height: 1.3;
  }

  .about__label {
    font-size: 26px;
  }

  .about__body {
    height: 680px;
  }

  .about__stats {
    width: 340px;
  }

  .about__stat-value {
    font-size: 36px;
  }

  .about__stat-icon img {
    width: 80px;
  }
}

@media (max-width: 1024px) {
  .about {
    padding: 64px 0 72px;
  }

  .about__title {
    font-size: 36px;
  }

  .about__label {
    font-size: 24px;
    line-height: 1.2;
  }

  .about__body {
    align-items: flex-end;
    height: auto;
    min-height: 560px;
    padding: 32px 24px;
    background-size: cover;
  }

  .about__stats {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
  }

  .about__stat-card {
    padding: 24px 12px 20px;
  }

  .about__stat-value {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 48px 0 56px;
  }

  .about__inner {
    padding: 0 16px;
  }

  .about__head {
    margin-bottom: 28px;
  }

  .about__title {
    font-size: 28px;
  }

  .about__label {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .about__body {
    min-height: 480px;
    padding: 24px 16px;
    border-radius: 8px;
  }

  .about__stats {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    gap: 12px;
  }

  .about__stat-icon img {
    width: 64px;
  }

  .about__stat-value {
    font-size: 28px;
  }

  .about__stat-label {
    font-size: 13px;
  }
}
