/* ==========================================
   SECTION TITLE
========================================== */

.section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
}

.section-title h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #111827, #374151, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 20px auto 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
}

.section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  color: #64748b;
}
/* ==========================================
   SOLUTIONS SECTION
========================================== */

.solutions {
  padding: 80px 8%;

  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);

  position: relative;

  overflow: hidden;
}

.solution-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.solution-card {
  background: white;

  border: 1px solid #e5e7eb;

  border-radius: 22px;

  padding: 30px 25px;

  text-align: center;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.solution-card:hover {
  transform: translateY(-10px);

  border-color: #2563eb;

  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
}

.solution-icon {
  width: 65px;

  height: 65px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: #eaf2ff;

  font-size: 32px;

  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 22px;

  color: #111827;

  margin-bottom: 12px;
}

.solution-card p {
  color: #6b7280;

  font-size: 15px;

  line-height: 1.6;
}

@media (max-width: 1200px) {
  .solution-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solution-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .solutions {
    padding: 60px 20px;
  }
}
