/* Conversion test page only */
.conversion-path-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%),
    radial-gradient(circle at 10% 10%, rgba(232, 70, 124, 0.08), transparent 28%);
}

.conversion-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(232, 70, 124, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(93, 46, 95, 0.08);
}

.conversion-path article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 236px;
  padding: 28px;
  border-left: 1px solid rgba(232, 70, 124, 0.14);
}

.conversion-path article:first-child {
  border-left: 0;
}

.conversion-path article::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -13px;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(232, 70, 124, 0.18);
  border-right: 1px solid rgba(232, 70, 124, 0.18);
  background: #ffffff;
  transform: rotate(45deg);
}

.conversion-path article:last-child::after {
  display: none;
}

.conversion-path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--purple));
  font-weight: 950;
}

.conversion-path strong {
  color: var(--purple);
  font-size: 21px;
  line-height: 1.35;
}

.conversion-path p,
.result-story {
  margin: 0;
  color: #514456;
  line-height: 1.75;
}

.result-story {
  max-width: 780px;
  margin: -4px 0 18px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .conversion-path {
    grid-template-columns: 1fr;
  }

  .conversion-path article {
    min-height: auto;
    border-top: 1px solid rgba(232, 70, 124, 0.14);
    border-left: 0;
  }

  .conversion-path article:first-child {
    border-top: 0;
  }

  .conversion-path article::after {
    top: auto;
    right: auto;
    bottom: -13px;
    left: 34px;
    transform: rotate(135deg);
  }
}
