/* AI Services Section */
.ai-services {
  background: #f9fbff;
}

.section-padding {
  padding: 100px 0;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
}

/* Grid */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.ai-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.ai-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ai-icon i {
  color: #ffffff;
  font-size: 24px;
}

.ai-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.ai-card p {
  color: #6b7280;
  margin-bottom: 15px;
}

.ai-card ul {
  padding-left: 18px;
}

.ai-card ul li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

/* CTA */
.ai-cta h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.ai-cta p {
  color: #6b7280;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 1199px) {
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}
