.st-v2-flow {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.st-v2-flow__item-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 0;
}

.st-v2-flow__card {
  flex: 1 1 0;
  min-height: 248px;
  border-radius: 28px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.st-v2-flow__card:hover {
  transform: translateY(-3px);
  border-color: var(--st-v2-line-1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 52px rgba(0,0,0,0.34),
    0 0 0 1px rgba(88,215,255,0.07);
}

.st-v2-flow__card h3 {
  margin: 14px 0 12px;
  font-size: 34px;
  line-height: 1.02;
  color: var(--st-v2-text-0);
}

.st-v2-flow__card p {
  margin: 0;
  color: var(--st-v2-text-1);
  line-height: 1.55;
  font-size: 18px;
}

.st-v2-flow__connector {
  width: 44px;
  min-width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(88,215,255,0.52), rgba(107,109,255,0.52));
  box-shadow: 0 0 24px rgba(88,215,255,0.18);
}

@media (max-width: 1200px) {
  .st-v2-flow {
    flex-direction: column;
  }

  .st-v2-flow__item-wrap {
    width: 100%;
    flex-direction: column;
  }

  .st-v2-flow__connector {
    width: 2px;
    height: 28px;
    min-width: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-v2-flow__card:hover {
    transform: none;
  }
}