/* [project]/src/styles/case-studies-index.css [app-client] (css) */
.use-case-hero {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 50%, #ff6100 100%);
  padding: 80px 0;
}

.stats-section {
  background: #f7f3ff;
  padding: 60px 0;
}

.stat-card {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  height: 100%;
  padding: 30px 20px;
  transition: all .3s;
  box-shadow: 0 10px 30px #5e17eb1a;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px #5e17eb26;
}

.stat-number {
  background: linear-gradient(135deg, #5e17eb, #cf0067, #ff6100);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
  display: block;
}

.filter-section {
  background: #fff;
  padding: 40px 0;
  box-shadow: 0 2px 10px #0000001a;
}

.filter-tabs {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  display: flex;
}

.filter-tab {
  color: #6c757d;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.filter-tab:hover, .filter-tab.active {
  color: #fff;
  background: #5e17eb;
  border-color: #5e17eb;
  text-decoration: none;
  transform: translateY(-2px);
}

.case-studies-grid {
  background: #f8f9fa;
  padding: 80px 0;
}

.case-study-card {
  cursor: pointer;
  background: #fff;
  border-radius: 20px;
  height: 100%;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #5e17eb26;
}

.case-study-card:before {
  content: "";
  background: linear-gradient(90deg, #5e17eb, #cf0067, #ff6100);
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.case-card-header {
  padding: 30px 30px 20px;
}

.case-category {
  color: #5e17eb;
  text-transform: uppercase;
  background: #5e17eb1a;
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.case-title {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.case-description {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.case-metrics {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 30px;
  display: flex;
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  color: #5e17eb;
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.metric-label {
  color: #6c757d;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 12px;
}

.read-more-btn {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 100%);
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.read-more-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #5e17eb4d;
}

.testimonial-section {
  background: linear-gradient(135deg, #f7f3ff 0%, #fff 100%);
  padding: 80px 0;
}

.testimonial-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 15px 35px #0000001a;
}

.testimonial-quote {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  justify-content: center;
  align-items: center;
  gap: 15px;
  display: flex;
}

.author-avatar {
  color: #fff;
  background: linear-gradient(45deg, #5e17eb, #cf0067);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
}

.author-info h5 {
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.author-info p {
  color: #6c757d;
  margin: 5px 0 0;
  font-size: 14px;
}

.cta-section {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 50%, #ff6100 100%);
  padding: 80px 0;
}

.cta-content h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

.cta-content p {
  opacity: .9;
  margin-bottom: 40px;
  font-size: 20px;
}

.cta-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  display: flex;
}

.cta-btn-primary {
  color: #5e17eb;
  background: #fff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.cta-btn-secondary {
  color: #fff;
  background: none;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.cta-btn-primary:hover, .cta-btn-secondary:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #0003;
}

.cta-btn-primary:hover {
  color: #5e17eb;
}

.cta-btn-secondary:hover {
  color: #5e17eb;
  background: #fff;
}

@media (max-width: 768px) {
  .use-case-hero {
    padding: 80px 0 60px;
  }

  .use-case-hero h1 {
    font-size: 36px;
  }

  .filter-tabs {
    justify-content: flex-start;
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .case-metrics {
    flex-direction: column;
    gap: 10px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=src_styles_case-studies-index_0sy60pi.css.map*/