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

/* Header Section */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-small {
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-title-big {
  font-size: 72px;
  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: 15px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

.section-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Case Study Card */
.ClientCase-study {
  display: block;
  background: #1e1e2e;
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ClientCase-study ul {
  padding: 0 !important;
}

.ClientCase-study:hover {
  transform: translateY(-5px);

}

.ClientCase-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.ClientCase-study-number {
  font-size: 14px;
  font-weight: 600;
  color: #a855f7;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ClientCase-study-title {
  font-size: 36px;
  font-weight: 700;
  color: #f3f4f6;
  margin-top: 10px;
}

.ClientCase-study-badge {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* Before/After Grid */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.before-after-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-after-section p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.8;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.result-item {
  background: #16162a;
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #a855f7;
  transition: all 0.3s ease;
}

.result-item:hover {
  background: rgba(168, 85, 247, 0.1);
  transform: translateX(5px);
}

.result-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.result-label {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #374151, transparent);
  margin: 40px 0;
}

/* Screenshots Grid */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.screenshot-wrapper {
  position: relative;
}

.screenshot-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(168, 85, 247, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.screenshot-tag.after {
  background: rgba(34, 197, 94, 0.9);
}

.screenshot-placeholder {
  background: #16162a;
  border-radius: 12px;
  padding: 20px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
  border: 2px dashed #374151;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-big {
    font-size: 48px;
  }

  .section-subtitle {
    font-size: 22px;
  }

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

  .ClientCase-study-title {
    font-size: 28px;
  }

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

  .results-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}