/* PROCESS — 3 etapes */
.process-section {
  max-width: 1320px; margin: 0 auto;
  padding: 96px 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; } }

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-step-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.process-step-visual img {
  width: 60%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.process-step-number {
  position: absolute;
  top: 12px; left: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  z-index: 2;
}
.process-step-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step-body h3 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--color-gold), var(--color-magenta));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process-step-body p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Enhanced process cards */
.process-step-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, rgba(26, 15, 56, 0.8), var(--color-bg-deep));
}
.process-step-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(232, 64, 216, 0.35), transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(0, 212, 255, 0.30), transparent 70%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245, 198, 89, 0.15), transparent 75%);
  animation: process-halo 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes process-halo {
  0%   { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1;   transform: scale(1.1); }
}
.process-step-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 0 16px rgba(245, 198, 89, 0.4));
}
@media (max-width: 720px) {
  .process-step-visual::before { animation: none; }
  .process-step-visual img { filter: none; }
}
