/* PROCESS 1 - HORIZONTAL STEPS */
.process-1 {
  padding: 100px 5%;
  background: var(--white);
}
.process-1 .header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.process-1 .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.process-1 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 16px;
}
.process-1 .subtitle {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.process-1 .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.process-1 .steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}
.process-1 .step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-1 .step-number {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  transition: all 0.3s;
}
.process-1 .step:hover .step-number {
  border-color: var(--primary);
  color: var(--white);
  background: var(--secondary);
}
.process-1 .step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 12px;
}
.process-1 .step p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  padding: 0 10px;
}
@media (max-width: 1024px) {
  .process-1 .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-1 .steps::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .process-1 .steps {
    grid-template-columns: 1fr;
  }
}
