#process {
  background: var(--navy-mid);
  color: var(--cream);
  padding: 7rem 0;
}

#process .section-title {
  color: var(--cream);
  text-align: center;
  margin-bottom: 1rem;
}

.process-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.process-intro .section-intro {
  margin: 0 auto;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  background: var(--navy);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 239, 225, 0.72);
}

@media (max-width: 768px) {
  #process {
    padding: 5rem 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 2.5rem 2rem;
  }

  .step-number {
    font-size: 3rem;
  }
}
