.about-hero {
  padding: 170px 0 110px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.72)),
    url("../img/about/about-hero.png") center center / cover no-repeat;
  color: var(--white);
}

.about-hero-content {
  max-width: 860px;
}

.about-hero-content h1 {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.about-hero-content p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hero-trust-row i {
  color: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.about-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #fff1f1;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.about-card p {
  margin-bottom: 0;
  line-height: 1.9;
  color: var(--muted);
}

.about-split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-split-text h2 {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-split-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.about-check-list i {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.2;
  margin-top: 2px;
}

.about-check-list span {
  color: var(--text);
  line-height: 1.8;
  font-weight: 600;
}

.about-split-panel {
  position: sticky;
  top: 120px;
}

.about-panel-card {
  background: linear-gradient(135deg, #191919 0%, #101010 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: var(--shadow-dark);
}

.about-panel-card h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 18px;
}

.about-panel-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.9;
  margin-bottom: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  margin-bottom: 0;
  line-height: 1.85;
  color: var(--muted);
}

.commitment-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 34px 32px;
}

.commitment-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.commitment-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.commitment-item:first-child {
  padding-top: 0;
}

.commitment-item i {
  font-size: 26px;
  color: var(--primary);
  margin-top: 2px;
}

.commitment-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.commitment-item p {
  margin-bottom: 0;
  line-height: 1.85;
  color: var(--muted);
}

.about-final-cta .services-final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 1199px) {
  .about-hero-content h1 {
    font-size: 46px;
  }

  .about-split-text h2 {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .about-hero {
    padding: 150px 0 90px;
  }

  .about-grid,
  .why-grid,
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split-panel {
    position: static;
  }
}

@media (max-width: 767px) {
  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .hero-trust-row {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-card,
  .why-card,
  .about-panel-card,
  .commitment-box {
    padding: 24px 20px;
  }

  .about-split-text h2 {
    font-size: 30px;
  }

  .commitment-item {
    gap: 14px;
  }
}