.salesforce-products {
  background: linear-gradient(to bottom, #f7fafd, #eaf4fd);
  position: relative;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.salesforce-products::after {
  content: "";
  display: block;
  background: #fff;
  height: 100px;
  width: 100%;
  border-radius: 100% 100% 0 0;
  position: absolute;
  bottom: -50px;
  left: 0;
}

.salesforce-products h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0a2540;
}

.salesforce-products p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
}

.icon {
  background: #fff;
  border-radius: 50%;
  padding: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.icon span {
  font-size: 14px;
  color: #0a2540;
  font-weight: 600;
}

.icon:hover {
  transform: scale(1.15);
}

@keyframes fadeInUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
