/* ============================================================
   07-process.css — 3-step build process (lightened)
   Module: <section id="process">
   Indi-creative style: white background, generous spacing,
   icon-led feature row instead of the previous dark band.
   ============================================================ */

#process { background: var(--c-white); border-top: 1px solid var(--c-line); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-green) 0 8px, transparent 8px 16px);
  z-index: 0;
  opacity: 0.5;
}
.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.proc-num {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto var(--s-4);
  background: var(--c-blue);
  color: var(--c-yellow);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 900;
  border: 4px solid var(--c-white);
  box-shadow: 0 0 0 1px var(--c-line), 0 4px 12px rgba(0,0,0,0.06);
}
.proc-step h3 {
  color: var(--c-ink);
  margin-bottom: var(--s-2);
}
.proc-step p {
  color: var(--c-muted);
  max-width: 320px;
  margin: 0 auto;
  font-size: 0.97rem;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .process-grid::before { display: none; }
}
