/* Process / how we work section */

.process__head {
  margin-bottom: 64px;
  max-width: 760px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 28px;
  height: 1px;
  background: var(--tc-line);
}
.step {
  padding-right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--tc-line);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--tc-navy);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.step:hover .step__dot {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 10px 28px -8px rgba(17,54,108,0.28);
}
.step:nth-child(1) .step__dot {
  background: var(--tc-navy);
  color: #fff;
  border-color: var(--tc-navy);
}
.step:nth-child(2) .step__dot {
  color: var(--tc-blue);
  border-color: var(--tc-blue);
}
.step:nth-child(3) .step__dot {
  color: var(--tc-green);
  border-color: var(--tc-green);
}
.step:nth-child(4) .step__dot {
  background: var(--tc-green);
  color: #fff;
  border-color: var(--tc-green);
}
.step h3 {
  font-size: 20px;
  color: var(--tc-navy);
  margin-top: 8px;
}
.step p {
  font-size: 14px;
  color: var(--tc-ink-2);
  line-height: 1.55;
  max-width: 28ch;
}

@media (max-width: 880px) {
  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .process__steps::before { display: none; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
}
