/* "Getting started is painless" 4-step workflow — reusable across compare pages,
   landing pages, and blog posts. Inherits CSS custom properties (--border,
   --navy, --green, --green-soft, --text-section, --text-muted) from each page's
   framework styles. */
.gs-workflow {
  list-style: none;
  margin: 28px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gs-step {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 22px -14px rgba(1, 32, 82, 0.14);
}
.gs-step-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.gs-step-visual {
  display: block;
  width: 100%;
  aspect-ratio: 11 / 6;
  border-radius: 10px;
  background: #FBF9F5;
  border: 1px solid var(--border);
  overflow: hidden;
}
.gs-step-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
.gs-step-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy);
  margin: 4px 0 0;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.gs-step-body {
  font-size: 14.5px;
  color: var(--text-section);
  margin: 0;
  line-height: 1.55;
}
/* Connector between steps — chevron on desktop, down-arrow on mobile */
.gs-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-55%);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .gs-workflow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gs-step:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -24px;
    transform: translateX(-50%);
    font-size: 20px;
  }
}
