.section-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 17px;
  color: #6b7280;
  max-width: 760px;
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
  transition: 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.solutions-section .icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-item {
  background: #f9fafb;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  transition: 0.25s ease;
}

.link-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}

.arrow {
  font-size: 18px;
  transition: 0.25s ease;
}

.link-item:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 34px;
  }

  .card-title {
    font-size: 20px;
  }
}