.case-hero {
  padding: 150px 0 90px;
  text-align: left;
  background: linear-gradient(135deg, #0f766e, #111827);
  color: #fff;
}

.casedetails-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f766e, #f5f9ff);
}

.download-section {
  background: var(--white);
}

.case-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin: 20px 0;
}

.case-subtitle {
  max-width: 800px;
  /* margin: auto; */
  color: rgba(255, 255, 255, 0.85);
}

.case-badges {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.case-badges span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.project-item {
  margin-bottom: 20px;
}

.project-item span {
  display: block;
  color: var(--muted);
}

.project-item strong {
  font-size: 1.05rem;
}

.light-bg {
  background: #f8fafc;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.download-card {
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.download-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.cta-case {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  /* background: linear-gradient(135deg, var(--white), var(--blue)); */
  background: linear-gradient(135deg, #0f766e, #111827);
}

.cta-case h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.08;
}

.cta-case p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .overview-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .case-hero {
    padding: 130px 0 70px;
  }

  .download-buttons {
    flex-direction: column;
  }
}
