.process { background: var(--dark); color: var(--warm-white); }

.process .section-title { color: var(--warm-white); }

.process .section-desc { color: var(--stone); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute; top: 2rem; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.step { text-align: center; position: relative; }

.step {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step:hover { transform: translateY(-4px); }

.step-num {
  width: 4rem; height: 4rem;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-alt);
  font-size: 1.4rem;
  color: var(--gold);
  background: var(--dark);
  position: relative;
  z-index: 1;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.step:hover .step-num {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.05);
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--warm-white);
}

.step p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}
