.process-section {
  padding-block: clamp(96px, 11vw, 160px);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 84px);
}

.process-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--foreground);
  font-size: clamp(3rem, 6.3vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgb(29 29 31 / 7%);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 10px 34px rgb(29 29 31 / 5%);
}

.process-step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 64px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 650;
}

.process-step h3 {
  margin: 0 0 14px;
  color: var(--foreground);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (width <= 960px) {
  .process-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .process-step {
    min-height: 230px;
  }

  .process-step > span {
    margin-bottom: 42px;
  }
}

@media (width <= 960px) and (width > 600px) {
  .mobile-dock {
    z-index: 45;
    position: fixed;
    bottom: 14px;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    width: min(430px, calc(100% - 32px));
    min-height: 66px;
    padding: 7px;
    transform: translateX(-50%);
    border: 1px solid rgb(255 255 255 / 76%);
    border-radius: 23px;
    background: rgb(246 246 248 / 86%);
    box-shadow: 0 16px 46px rgb(29 29 31 / 20%);
    backdrop-filter: blur(26px) saturate(180%);
  }

  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    min-width: 0;
    min-height: 52px;
    padding: 5px 3px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    border-radius: 17px;
    color: var(--muted);
    background: transparent;
  }

  .mobile-dock span {
    color: var(--foreground);
    font-size: 1.08rem;
    line-height: 1;
  }

  .mobile-dock small {
    font-size: 0.57rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .mobile-dock .mobile-contact {
    color: #fff;
    background: var(--accent);
  }

  .mobile-dock .mobile-contact span {
    color: #fff;
  }
}

@media (width <= 600px) {
  .process-section {
    width: calc(100% - 32px);
    padding-block: 82px;
  }

  .process-heading h2 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .process-grid {
    display: flex;
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding: 0 16px 18px;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-step {
    flex: 0 0 min(85vw, 370px);
    min-height: 260px;
    padding: 26px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 24px;
  }

  .process-step > span {
    margin-bottom: 44px;
  }

  .mobile-dock small {
    font-size: 0.53rem;
  }
}
