.faq-social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--white);
  color: var(--text-color-main);
}

.faq-container {
  display: flex;
  width: 1480px;
  max-width: 100vw;
  min-height: 100vh;
  gap: 80px;
  padding: 80px 40px;
}

.faq-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 40px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 50px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-title {
  font-size: 42px;
  font-weight: 300;
  color: var(--text-color-main);
}

.faq-subtitle {
  font-size: 20px;
  opacity: 0.8;
  color: var(--text-color-main);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--light-color);
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.faq-item:hover {
  background: var(--primary-color);
  color: var(--text-color-oposite);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  font-size: 18px;
  font-weight: bold;
  color: inherit;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.faq-item:hover .faq-icon {
  color: var(--text-color-oposite);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 25px 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-main);
}

.ask-question {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--primary-color);
  padding: 40px;
  box-shadow: 0 8px 30px var(--shadow-light);
}

.ask-question-title {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-color-oposite);
}

.question-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.question-input {
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  border: 3px solid transparent;
  background: var(--white);
  color: var(--text-color-main);
  transition: all 0.3s ease;
}

.question-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.question-textarea {
  height: 120px;
  padding: 20px;
  font-size: 16px;
  border: 3px solid transparent;
  background: var(--white);
  color: var(--text-color-main);
  resize: vertical;
  transition: all 0.3s ease;
}

.question-textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.question-submit {
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  background: var(--white);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.question-submit:hover {
  background: var(--secondary-color);
  color: var(--text-color-oposite);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.social-proof-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-proof-title {
  font-size: 32px;
  font-weight: 300;
  color: var(--primary-color);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--light-color);
  padding: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-main);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-color-main);
}

.author-company {
  font-size: 14px;
  opacity: 0.7;
  color: var(--text-color-main);
}

.author-rating {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--primary-color);
  font-size: 16px;
}

.company-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logos-title {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color-main);
  text-align: center;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  opacity: 0.8;
}

.company-logo {
  width: 90px;
  height: 60px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  color: var(--text-color-main);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.company-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--shadow-medium);
  background: var(--primary-color);
  color: var(--text-color-oposite);
}

@media (max-width: 1024px) {
  .faq-container {
    flex-direction: column;
    min-height: auto;
    gap: 60px;
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 32px;
  }

  .social-proof-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .faq-social-proof {
    min-height: auto;
  }

  .faq-container {
    padding: 40px 20px;
    gap: 40px;
  }

  .faq-title {
    font-size: 28px;
  }

  .social-proof-title {
    font-size: 24px;
  }

  .ask-question {
    padding: 30px;
  }

  .testimonial {
    padding: 25px;
  }

  .logos-grid {
    gap: 20px;
  }

  .company-logo {
    width: 80px;
    height: 50px;
    font-size: 12px;
  }
}
