.grid-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.grid-cards--prestations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.grid-cards--prestations>.service {
  grid-column: auto;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 170px;
  padding: 18px;
  overflow: hidden;
  grid-column: span 2;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
  text-align: left;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--shadow-float);
}

.prestations .service {
  padding: 22px 22px 20px;
  border: 1px solid rgb(var(--white-rgb) / 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgb(var(--white-rgb) / 0.025), rgb(var(--white-rgb) / 0.01)),
    var(--card);
  box-shadow:
    0 24px 60px rgb(var(--black-rgb) / 0.5),
    0 0 0 1px rgb(var(--white-rgb) / 0.025) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.prestations .service::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 15%, rgb(var(--white-rgb) / 0.08), transparent 20%),
    radial-gradient(circle at 82% 88%, rgb(var(--pink-rgb) / 0.12), transparent 32%);
  opacity: 1;
}

.prestations .service::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgb(var(--white-rgb) / 0.022);
}

.prestations .service:hover,
.prestations .service:focus-within {
  transform: translateY(-6px);
  border-color: rgb(var(--white-rgb) / 0.12);
  box-shadow:
    0 30px 75px rgb(var(--black-rgb) / 0.58),
    0 0 26px rgb(var(--pink-rgb) / 0.08),
    0 0 18px rgb(var(--white-rgb) / 0.04);
}

.prestations .service>* {
  position: relative;
  z-index: 1;
}

.prestations .service p,
.prestations .service h3,
.prestations .service-tagline,
.prestations .service-list {
  margin: 0;
}

.prestations .service h3 {
  display: grid;
  grid-template-columns: 4.15rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.58rem;
  min-height: unset;
  margin: 0 0 8px;
  font-size: clamp(1.48rem, 1.48vw, 1.88rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow:
    0 1px 0 rgb(var(--white-rgb) / 0.03),
    0 10px 20px rgb(var(--black-rgb) / 0.18);
  background-image: linear-gradient(90deg,
      rgb(var(--cream-rgb) / 0.98) 0%,
      rgb(var(--text-rgb) / 0.96) 58%,
      rgb(var(--cream-rgb) / 0.98) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.prestations .service-tagline {
  margin: 0 0 10px;
  color: var(--cream-92);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.42;
}

.prestations .service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.prestations .service-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.prestations .service-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow:
    0 0 10px var(--yellow-30),
    0 0 10px var(--pink-15);
}

@media (max-width: 760px) {
  .grid-cards--prestations {
    grid-template-columns: 1fr;
  }

  .prestations .service {
    padding: 18px 18px 18px;
    border-radius: 24px;
  }

  .prestations .service h3 {
    grid-template-columns: 3.55rem minmax(0, 1fr);
    column-gap: 0.56rem;
    margin-bottom: 8px;
    font-size: 1.3rem;
    line-height: 1.02;
  }

  .prestations .service-tagline {
    font-size: 0.98rem;
  }

  .prestations .service-list li {
    font-size: 0.95rem;
  }
}