.section--workflow {
    background: var(--bg-soft);
}

.workflow__inner {
    display: block;
}

.workflow__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0 auto 56px;
    text-align: center;
}

.workflow__list {
    max-width: 820px;
    margin: 0 auto;
}

.workflow__list {
    display: flex;
    flex-direction: column;
}

.workflow__item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    padding: 18px 0;
    align-items: center;
}

.workflow__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--ink-soft);
    background: var(--bg-strip);
    border-radius: 50%;
    transition: color 0.2s ease, background 0.3s ease;
}

.workflow__item:hover .workflow__icon {
    color: var(--ink);
    background: var(--surface-elevated-hover);
}

.workflow__text {
    font-family: var(--sans);
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 300;
    line-height: 1.55;
    color: var(--ink-soft);
}

