.service {
  background: var(--p-card);
  border: 0px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-icon img {
  width: 36px;
  height: 36px;
}
.service-link {
  color: var(--brand);
  font-weight: 600;
}
.service-title {
  color: black;
  font-weight: bold;
  text-align: center;
}
.service-text {
  color: black;
}
.service-h {
  color: black;
  font-weight: bold;
}

.service.is-active {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow);
  z-index: 1;
}
.eyebrow-p {
  color: grey;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
