
.cta-mini-label {
  color: #66A8F3;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-bottom h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-bottom p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.avatars {
  display: flex;
  justify-content: center;
  align-items: flex-end; /* нижнее выравнивание */
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
}

.avatars img {
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center bottom;
}

/* размеры и кривая */
.avatars img:nth-child(1),
.avatars img:nth-child(5) {
  width: 60px;
  height: 60px;
  opacity: 0.85;
  transform: translateY(-5px) rotate(-4deg);
}

.avatars img:nth-child(2),
.avatars img:nth-child(4) {
  width: 88px;
  height: 88px;
  opacity: 0.9;
  transform: translateY(-3px) rotate(-2deg);
}

.avatars img:nth-child(3) {
  width: 120px;
  height: 120px;
  opacity: 1;
  z-index: 2;
  transform: translateY(0);
}

/* hover эффект */
.avatars img:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(136, 70, 255, 0.5);
}

/* адаптив */
@media (max-width: 600px) {
  .avatars {
    gap: 10px;
  }

  .avatars img:nth-child(1),
  .avatars img:nth-child(5) {
    width: 40px;
    height: 40px;
    transform: translateY(-0.5px);
  }

  .avatars img:nth-child(2),
  .avatars img:nth-child(4) {
    width: 64px;
    height: 64px;
    transform: translateY(-0.5px);
  }

  .avatars img:nth-child(3) {
    width: 88px;
    height: 88px;
  }
}


/* адаптив */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
  }
  .faq-left, .faq-right {
    flex: 1 1 100%;
  }
}