/* Новый дизайн отзывов - карточный стиль */
.new-reviews-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.new-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.new-review-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
  border-radius: 16px;
  padding: 28px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.new-review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: rgba(220, 20, 60, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.new-review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.3);
}

.new-review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.new-review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc143c, #FFD700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

.new-review-meta {
  flex: 1;
}

.new-review-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.new-review-date {
  font-size: 14px;
  color: #8A8AAE;
}

.new-review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #BCBCD1;
  position: relative;
  z-index: 1;
}

/* Новый дизайн FAQ - аккордеон */
.new-faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.new-faq-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-faq-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.new-faq-item:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 6px 24px rgba(220, 20, 60, 0.2);
}

.new-faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.new-faq-question:hover {
  color: #FFD700;
}

.new-faq-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #dc143c, #c62828);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.new-faq-item.active .new-faq-icon {
  transform: rotate(45deg);
}

.new-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.new-faq-item.active .new-faq-answer {
  max-height: 300px;
  padding: 0 24px 24px 24px;
}

.new-faq-answer-text {
  color: #BCBCD1;
  line-height: 1.6;
  font-size: 16px;
}

/* Новый автор */
.new-author-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.new-author-card {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.new-author-avatar {
  flex-shrink: 0;
}

.new-author-info h3 {
  font-size: 28px;
  color: #FFD700;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.new-author-info .author-role {
  font-size: 16px;
  color: #8A8AAE;
  margin-bottom: 16px;
}

.new-author-info p {
  color: #BCBCD1;
  line-height: 1.6;
  margin-bottom: 12px;
}

