/* Mobile How it works: keep all four steps in one horizontal flow. */
@media (max-width: 760px) {
  body .process .section-title {
    margin-bottom: 20px;
  }

  body .process-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(190px, 72vw) !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    width: calc(100% + 28px) !important;
    margin-inline: -14px !important;
    padding: 4px 14px 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

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

  body .process-grid::before {
    display: none !important;
    content: none !important;
  }

  body .process-grid .process-step {
    scroll-snap-align: center;
    min-height: 230px !important;
    padding: 22px 18px 20px !important;
    border: 1px solid rgba(99, 82, 246, 0.13) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 14px 34px rgba(24, 27, 52, 0.08) !important;
  }

  body .process-grid .process-step small {
    position: static !important;
    width: 38px !important;
    height: 38px !important;
    margin: 0 auto 10px !important;
  }

  body .process-grid .process-illustration {
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto 12px !important;
  }

  body .process-grid .process-step h3 {
    margin-bottom: 7px !important;
    font-size: 1.02rem !important;
  }

  body .process-grid .process-step p {
    max-width: 170px;
    margin-inline: auto;
    font-size: 0.84rem !important;
    line-height: 1.4 !important;
  }
}
