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

.case-study-hero:before {
  content: "";
  opacity: .3;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grid\" width=\"10\" height=\"10\" patternUnits=\"userSpaceOnUse\"><path d=\"M 10 0 L 0 0 0 10\" fill=\"none\" stroke=\"rgba(255,255,255,0.1)\" stroke-width=\"0.5\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23grid)\"/></svg>");
  position: absolute;
  inset: 0;
}

.company-badge {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fff3;
  border-radius: 25px;
  margin-bottom: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.case-study-content {
  background: #f8f9fa;
  padding: 80px 0;
}

.content-section {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 50px;
  box-shadow: 0 10px 30px #0000001a;
}

.section-header {
  border-left: 4px solid #5e17eb;
  margin-bottom: 30px;
  padding-left: 20px;
}

.section-header h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header p {
  color: #6c757d;
  margin: 0;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  display: grid;
}

.metric-card {
  text-align: center;
  background: linear-gradient(135deg, #f7f3ff 0%, #fff 100%);
  border: 1px solid #5e17eb1a;
  border-radius: 15px;
  padding: 30px;
}

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

.metric-label {
  color: #6c757d;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.challenge-list, .solution-list, .result-list {
  padding: 0;
  list-style: none;
}

.challenge-list li, .solution-list li, .result-list li {
  border-bottom: 1px solid #e9ecef;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  display: flex;
}

.challenge-list li:last-child, .solution-list li:last-child, .result-list li:last-child {
  border-bottom: none;
}

.challenge-list li:before {
  content: "❌";
  flex-shrink: 0;
  font-size: 20px;
}

.solution-list li:before {
  content: "🚀";
  flex-shrink: 0;
  font-size: 20px;
}

.result-list li:before {
  content: "✅";
  flex-shrink: 0;
  font-size: 20px;
}

.quote-section {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 50%, #ff6100 100%);
  border-radius: 20px;
  margin: 40px 0;
  padding: 50px;
  position: relative;
}

.quote-section:before {
  content: "“";
  opacity: .3;
  font-family: serif;
  font-size: 150px;
  position: absolute;
  top: -20px;
  left: 30px;
}

.quote-text {
  z-index: 2;
  margin-bottom: 30px;
  font-size: 24px;
  font-style: italic;
  position: relative;
}

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

.author-avatar {
  background: #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 24px;
  font-weight: bold;
  display: flex;
}

.author-info h4 {
  margin: 0;
  font-weight: 600;
}

.author-info p {
  opacity: .9;
  margin: 5px 0 0;
}

.tech-stack {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
  display: grid;
}

.tech-item {
  background: #f8f9fa;
  border-left: 4px solid #5e17eb;
  border-radius: 10px;
  padding: 20px;
}

.tech-item h5 {
  color: #5e17eb;
  margin-bottom: 10px;
  font-weight: 600;
}

.tech-item p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
}

.case-study-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #f7f3ff 0%, #fff 100%);
  padding: 80px 0;
}

.cta-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 40px #0000001a;
}

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

.btn-primary-gradient {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 100%);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

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

.btn-primary-gradient:hover, .btn-outline-gradient:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #5e17eb4d;
}

.btn-primary-gradient:hover {
  color: #fff;
}

.btn-outline-gradient:hover {
  color: #fff;
  background: #5e17eb;
}

.breadcrumb {
  background: none;
  padding: 20px 0;
}

.breadcrumb-item a {
  color: #5e17eb;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.human-quote-section {
  color: #2c3e50;
  text-align: center;
  background: linear-gradient(135deg, #f7f3ff 0%, #fff 100%);
  border-radius: 20px;
  margin: 40px 0;
  padding: 50px;
  position: relative;
}

.human-quote-section:before {
  content: "“";
  opacity: .1;
  font-family: serif;
  font-size: 150px;
  position: absolute;
  top: -20px;
  left: 30px;
}

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

  .content-section {
    margin-bottom: 20px;
    padding: 30px 20px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-section {
    padding: 30px 20px;
  }

  .quote-text {
    font-size: 18px;
  }

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

/*# sourceMappingURL=src_styles_case-study_0-~44wr.css.map*/