/* Live Streaming Why Choose Section */
.why-choose-section {
  padding: 8rem 4rem;
  background: #ffffff;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 6rem;
}

.why-choose-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.why-choose-subtitle {
  font-size: 1.8rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.advantage-item {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #000000;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.advantage-item:hover::before {
  transform: scaleY(1);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.advantage-icon i {
  font-size: 3.2rem;
  color: #ffffff;
}

.advantage-item:hover .advantage-icon {
  background: #333333;
  transform: scale(1.1);
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-description {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.5;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.trust-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-label {
  font-size: 1.6rem;
  color: #666666;
  font-weight: 500;
}

@media (max-width: 992px) {
  .why-choose-section {
    padding: 6rem 2rem;
  }
  
  .why-choose-title {
    font-size: 3.6rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.6rem;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 4rem 1.5rem;
  }
  
  .why-choose-title {
    font-size: 2.8rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.6rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .advantage-item {
    padding: 2rem 1.5rem;
  }
  
  .advantage-title {
    font-size: 1.8rem;
  }
  
  .advantage-description {
    font-size: 1.6rem;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }
  
  .trust-item {
    padding: 1.5rem;
  }
  
  .trust-number {
    font-size: 3rem;
  }
  
  .trust-label {
    font-size: 1.6rem;
  }
} 