.services {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background: var(--sand);
}

.page-hero h1,
.admin-page h1 {
  max-width: 860px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:last-child,
.admin-page .section-heading p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.services .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading-row > div {
  max-width: 760px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform var(--hover-duration) var(--ease), box-shadow var(--hover-duration) var(--ease), border-color var(--hover-duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(24, 168, 198, 0.42);
  box-shadow: var(--shadow-strong);
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.service-card p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

/* Copyright RZU Informatique */
