.review-hero-container {
  background-color: #0099ff;
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.review-hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: review-hero-fade-in 0.8s ease forwards;
}

.review-hero-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.review-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-hero-stat {
  display: flex;
  align-items: center;
  color: white;
  opacity: 0;
  transform: translateY(15px);
}

.review-hero-stat:nth-child(1) {
  animation: review-hero-fade-in 0.8s ease 0.2s forwards;
}

.review-hero-stat:nth-child(2) {
  animation: review-hero-fade-in 0.8s ease 0.4s forwards;
}

.review-hero-stat:nth-child(3) {
  animation: review-hero-fade-in 0.8s ease 0.6s forwards;
}

.review-hero-icon {
  font-size: 24px;
  margin-right: 8px;
}

.review-hero-star {
  color: #ffdd00;
}

.review-hero-text {
  font-size: 18px;
  font-weight: 500;
}

@keyframes review-hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 호버 효과 */
.review-hero-stat:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .review-hero-title {
    font-size: 32px;
  }
  
  .review-hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .review-hero-stat {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .review-hero-title {
    font-size: 28px;
  }
  
  .review-hero-text {
    font-size: 16px;
  }
  
  .review-hero-container {
    padding: 40px 15px;
  }
}