.about-hero {
  background: linear-gradient(rgba(0, 91, 170, 0.4), rgba(0, 58, 110, 0.5)), url('../../images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 150px 0 100px;
  margin-top: 80px;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-hero p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.mission {
  padding: 80px 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.mission-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 18px;
}

.values {
  display: flex;
  gap: 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  font-weight: bold;
}

.value-item i {
  color: var(--primary-yellow);
  font-size: 20px;
}

.mission-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: bold;
  color: var(--primary-yellow);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

.why-choose {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-yellow), #ffc600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  font-size: 32px;
  color: var(--text-dark);
}

.feature-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 20px;
}

.feature-card p {
  color: #444;
  line-height: 1.6;
}

.how-we-work {
  padding: 80px 0;
}

.how-we-work h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 60px;
}

.work-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 25px;
}

.step-content h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 20px;
}

.step-content p {
  color: #444;
  line-height: 1.6;
}

.team {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.team-header p {
  color: #444;
  font-size: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  height: 250px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-size: 20px;
}

.position {
  color: var(--primary-yellow);
  font-weight: bold;
  margin-bottom: 5px;
}

.experience {
  color: #444;
  margin-bottom: 15px;
  font-size: 14px;
}

.specialization {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.specialization span {
  background: var(--light-gray);
  color: var(--primary-blue);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.join-team {
  padding: 80px 0;
  text-align: center;
}

.join-content {
  max-width: 800px;
  margin: 0 auto;
}

.join-text h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.join-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 18px;
}

.join-text ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  margin-bottom: 40px;
}

.join-text li {
  padding: 8px 0;
  color: #444;
  position: relative;
  padding-left: 25px;
}

.join-text li:before {
  content: "✓";
  color: var(--primary-yellow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.join-actions {
  text-align: center;
}

.join-actions .btn {
  display: inline-block;
  width: auto;
  min-width: 200px;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--text-light);
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Адаптивность */
@media (max-width: 992px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values {
    justify-content: center;
  }
  
  .about-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .work-process {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero {
    padding: 120px 0 80px;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .values {
    flex-direction: column;
    gap: 15px;
  }
}
