/* Services page: engagement spectrum visual (hero aside) */

.spectrum-card {
    display: flex;
    flex-direction: column;
}

.spectrum-vert {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 20px;
}

/* Connecting gradient track behind the nodes */
.spectrum-vert::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-start), var(--accent-end));
    opacity: 0.35;
    border-radius: 2px;
}

.spectrum-vstep {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
}

.spectrum-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-elevated);
    border: 2px solid var(--card-border);
    color: var(--text-main);
}

.spectrum-dot .icon {
    width: 18px;
    height: 18px;
}

.spectrum-vstep:nth-child(3) .spectrum-dot {
    color: #2563eb;
}

.spectrum-vstep:nth-child(4) .spectrum-dot {
    color: #9333ea;
}

.spectrum-vstep:nth-child(5) .spectrum-dot {
    color: #db2777;
}

/* Priority offerings: accent-filled, raised */
.spectrum-vstep.is-priority .spectrum-dot {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.spectrum-vlabel .t {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.3;
}

.spectrum-vlabel .m {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 3px;
    line-height: 1.4;
}

.spectrum-tag {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    border-radius: 999px;
    padding: 2px 8px;
}
