.home5-why-choose-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.big-number {
  font-size: 80px;
  font-weight: 800;
  background: linear-gradient(135deg,
      #a855f7 0%,
      #ec4899 50%,
      #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.stats-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 5px;
}

.stats-description {
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 40px;
}

.brand-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.brand-logo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: #1e1e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-size: 40px;
  border: 3px solid transparent;
  padding: 10px;
}

.brand-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
}

.brand-logo.active {
  border-color: #a855f7;
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.5);
  transform: scale(1.1);
}

.case-study {
  background: #1e1e2e;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: none;
}

.case-study.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.before-section,
.after-section {
  position: relative;
}

.section-header {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.before-section .section-header {
  color: #ef4444;
}

.after-section .section-header {
  color: #22c55e;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.before-section .icon {
  background: rgba(239, 68, 68, 0.2);
}

.after-section .icon {
  background: rgba(34, 197, 94, 0.2);
}

.point-list {
  list-style: none;
}

.point-item {
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #16162a;
  border-left: 4px solid #374151;
  transition: all 0.3s ease;
}

.before-section .point-item:hover {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: #ef4444;
  transform: translateX(5px);
}

.after-section .point-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-left-color: #22c55e;
  transform: translateX(5px);
}

.point-title {
  font-weight: 700;
  font-size: 16px;
  color: #f3f4f6;
  margin-bottom: 8px;
}

.point-description {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .big-number {
    font-size: 48px;
  }

  .stats-subtitle {
    font-size: 24px;
  }

  .before-after-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-study {
    padding: 30px 20px;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}