/* QA visual fixes for the homepage and footer. Parent enqueues this after base CSS. */

body.redux-route-index .features__header,
body.redux-route-index .process__header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

body.redux-route-index .features__heading,
body.redux-route-index .process__heading {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(28px,3.3vw,42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.redux-route-index .process__header {
  margin-bottom: 12px;
}

body.redux-route-index .process__intro {
  margin-bottom: 46px;
  color: var(--text-muted);
}

body.redux-route-index .process-grid {
  position: relative;
  gap: 36px;
  max-width: 1040px;
}

body.redux-route-index .process-grid::before {
  content: "";
  position: absolute;
  left: calc(16.666% + 28px);
  right: calc(16.666% + 28px);
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg,var(--rdx-ink-200),var(--rdx-blue-500),var(--rdx-sky-400));
  opacity: .55;
}

body.redux-route-index .proc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

body.redux-route-index .proc-step__num {
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(37,40,42,.14);
}

body.redux-route-index .proc-step__body {
  align-items: center;
  gap: 8px;
}

body.redux-route-index .proc-step__icon {
  display: none;
}

body.redux-route-index .proc-step h4 {
  font-size: 15px;
  line-height: 1.25;
}

body.redux-route-index .proc-step p {
  max-width: 260px;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 779px) {
  body.redux-route-index .process-grid {
    gap: 26px;
  }

  body.redux-route-index .process-grid::before {
    left: 50%;
    right: auto;
    top: 32px;
    bottom: 32px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  body.redux-route-index .proc-step {
    padding: 0;
  }

  body.redux-route-index .proc-step__body {
    max-width: 320px;
    padding: 0 18px;
    background: #fff;
  }
}

@media (max-width: 640px) {
  body.redux-route-index .features__header,
  body.redux-route-index .process__header {
    margin-bottom: 22px;
  }

  body.redux-route-index .process__intro {
    margin-bottom: 34px;
  }

}
