/* ——— PROCESS ——— */
.process {
  padding: 6rem clamp(1.25rem, 4vw, 3.5rem) 0;
  background: var(--black);
}

.process__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.process__label,
.process__title {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.process__title {
  color: var(--red-soft);
}

.process__body {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
  column-gap: clamp(2rem, 6vw, 6rem);
}

.process__list {
  list-style: none;
}

.process__step {
  position: relative;
  padding: 1.85rem 0 1.85rem 1.85rem;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.35s ease;
}

.process__step.is-active {
  border-left-color: var(--red);
}

.process__index {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.process__step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red-soft);
  margin-bottom: 0.85rem;
}

.process__step-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 30rem;
}

.process__visual {
  position: sticky;
  top: 6rem;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 0.78;
  background: var(--white);
  border-radius: 200px 200px 32px 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.team-cta {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding-bottom: 6rem;
}

.team-cta__bar {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.team-cta__bar h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .process__body {
    grid-template-columns: 1fr;
  }

  .process__visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .team-cta__bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: 1.75rem;
  }

  .team-cta__bar .btn {
    justify-content: center;
  }
}
