.hero-services {
  background: #042951;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(151,243,181,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-services::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: #f8f9fa;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,52,97,0.10);
  border-color: rgba(0,52,97,0.2);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: background 0.3s ease;
}
.diff-card:hover {
  background: rgba(255,255,255,0.07);
}
