.ps-workflow__glow {
  display: none;
}

.ps-workflow {
  padding: 4rem 0 5rem;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 900px 900px at 85% 50%, rgba(0, 180, 240, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 700px 700px at 90% 60%, rgba(160, 79, 244, 0.16) 0%, transparent 70%),
    #000;
}

@media (min-width: 1024px) {
  .ps-workflow {
    padding: 6rem 0 7rem;
  }
}

.ps-workflow__header {
  margin-bottom: 2.5rem;
}

.ps-workflow__header-quote {
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .ps-workflow__header {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3.5rem;
  }

  .ps-workflow__header-text {
    flex: 0 1 640px;
  }

  .ps-workflow__header-quote {
    flex: 0 0 380px;
    margin-top: 0;
    margin-left: auto;
  }
}

.ps-workflow__quote-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ps-workflow__header-quote a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.ps-workflow__header-quote a:hover p,
.ps-workflow__header-quote a:hover span {
  color: #fff !important;
}

.ps-workflow__quote-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.ps-workflow__quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-workflow__quote-body {
  flex: 1;
  min-width: 0;
}

.ps-workflow__quote-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Season Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.ps-workflow__quote-cite {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Season Sans", sans-serif;
  font-size: 0.75rem;
}

.ps-workflow__quote-cite svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ps-workflow__label {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Season Serif", serif;
  font-size: 16px;
  line-height: 1;
}

.ps-workflow__title {
  margin: 0 0 1.25rem;
  color: #fff;
  font-family: "Season Sans", sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
}

.ps-workflow__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Season Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.ps-workflow__grid {
  position: relative;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ps-workflow__grid::-webkit-scrollbar {
  display: none;
}

.ps-workflow__step {
  position: relative;
  z-index: 2;
  min-width: 260px;
  max-width: 300px;
  flex-shrink: 0;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .ps-workflow__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .ps-workflow__step {
    min-width: unset;
    max-width: unset;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}

@media (min-width: 1024px) {
  .ps-workflow__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.ps-workflow__line-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .ps-workflow__line-wrap {
    position: absolute;
    top: calc(2.5rem + 4.5rem + 1.25rem + 4px);
    right: 12.5%;
    left: 12.5%;
    z-index: 1;
    display: block;
    height: 2px;
  }

  .ps-workflow__line {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }

  .ps-workflow__line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 2.6s linear;
  }

  .ps-workflow__step {
    padding: 2.5rem 1.75rem;
    text-align: center;
  }
}

.ps-workflow__number-wrap {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .ps-workflow__number-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2rem;
  }
}

.ps-workflow__number {
  color: rgba(255, 255, 255, 0.12);
  font-family: "Season Sans", sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  transition: color 0.8s ease;
}

.ps-workflow__step.is-visible .ps-workflow__number {
  color: #fff;
}

.ps-workflow__dot {
  display: none;
}

@media (min-width: 1024px) {
  .ps-workflow__dot {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: background 0.8s ease;
  }

.ps-workflow__step.is-visible .ps-workflow__dot {
  background: #fff;
}
}

.ps-workflow__step-title {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Season Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.8s ease;
}

.ps-workflow__step.is-visible .ps-workflow__step-title {
  color: #fff;
}

.ps-workflow__step-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Season Sans", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  transition: color 0.8s ease;
}

.ps-workflow__step.is-visible .ps-workflow__step-desc {
  color: rgba(255, 255, 255, 0.45);
}

