/* Services — grands modules éditoriaux */
#services {
  position: relative;
  background:
    radial-gradient(circle at 96% 8%, rgba(113,87,232,.07), transparent 24%),
    linear-gradient(180deg, #fafaff 0%, #f6f8fc 100%);
}

#services .section-head { max-width: 720px; }
.feat-rows { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--outline-var); }

.feat-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
  min-height: 430px;
  padding: 54px 0;
  border: 0;
  border-bottom: 1px solid var(--outline-var);
  background: transparent;
}
.feat-row:nth-child(2), .feat-row:nth-child(3) { border-radius: 0; }

.feat-rev .feat-photo { order: 2; }
.feat-rev .feat-body { order: 1; }

.feat-photo { position: relative; min-height: 390px; overflow: hidden; border-radius: 18px; }
.feat-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4,24,45,.08), transparent 56%);
}
.feat-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease-std), filter 700ms var(--ease-std);
}
.feat-row:hover .feat-photo img { transform: scale(1.035); filter: saturate(1.08); }

.feat-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}
.feat-body::before {
  display: block;
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 10px;
  border-radius: 10px 18px 18px 18px;
  background: var(--primary-container);
  color: var(--primary);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .08em;
}
.feat-row:nth-child(1) .feat-body::before { content: '01 · TECH'; }
.feat-row:nth-child(2) .feat-body::before { content: '02 · PRINT'; color: var(--brand-violet); background: #f1edff; }
.feat-row:nth-child(3) .feat-body::before { content: '03 · EQUIP'; color: #9a6810; background: #fff5de; }
.feat-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -.035em;
  color: var(--on-surface);
  margin-bottom: 18px;
  max-width: 500px;
}
.feat-body > p { font-size: var(--body-md); line-height: 1.75; color: var(--on-surface-var); max-width: 480px; margin-bottom: 20px; }
.feat-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.feat-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin-right: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--on-surface-var);
}
.feat-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }
.feat-row:nth-child(2) .feat-list li::before { background: var(--brand-violet); }
.feat-row:nth-child(3) .feat-list li::before { background: var(--star); }

@media (max-width: 900px) {
  .feat-row { grid-template-columns: 1fr; }
  .feat-rev .feat-photo, .feat-rev .feat-body { order: initial; }
  .feat-photo { min-height: 330px; max-height: 430px; }
}

@media (max-width: 560px) {
  .feat-row { padding: 38px 0; border-radius: 0; }
  .feat-photo { min-height: 235px; }
  .feat-body { padding: 30px 22px 34px; }
}
