.erp-solutions-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  margin-bottom: 3rem;
}

.erp-solutions-service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.erp-solutions-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.erp-solutions-service-card:hover::before {
  transform: scaleX(1);
}

.erp-solutions-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.erp-solutions-service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.erp-solutions-service-icon i {
  color: white;
  font-size: 2rem;
}

.erp-solutions-service-title {
  font-family: var(--font-family-base);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.erp-solutions-service-description {
  color: rgba(0, 0, 0, 0.753);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.erp-solutions-service-link {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.erp-solutions-service-link:hover {
  gap: 1rem;
}

/* ERP Solutions Service Card Background Images */
.erp-solutions-service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.erp-solutions-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.623);
  z-index: 0;
  transition: background 0.3s ease;
}

.erp-solutions-service-card:hover::after {
  background: rgba(255, 255, 255, 0.88);
}

.erp-solutions-service-card>* {
  position: relative;
  z-index: 1;
}

/* ERP Implementation */
.erp-solutions-service-card:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80');
}

/* System Customization */
.erp-solutions-service-card:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1518432031352-d6fc5c10da5a?w=800&q=80');
}

/* Data Migration */
.erp-solutions-service-card:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=800&q=80');
}

/* User Training & Support */
.erp-solutions-service-card:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=800&q=80');
}

/* System Maintenance */
.erp-solutions-service-card:nth-child(5) {
  background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=800&q=80');
}

/* Performance Optimization */
.erp-solutions-service-card:nth-child(6) {
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80');
}