.why-section {
    padding: 100px 0;
    background: var(--bg-base);
}

.why-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    position: relative;
}

.why-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 2px;
}

.why-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}
.why-step:last-child { border-bottom: none; }

.why-step-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, .1);
    z-index: 1;
    transition: all .25s;
}
.why-step:hover .why-step-dot {
    background: var(--accent-subtle);
    box-shadow: 0 0 0 6px rgba(168, 85, 247, .15);
}

.why-step-body {}

.why-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.why-step-text {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 576px) {
    .why-steps::before { display: none; }
    .why-step-dot { width: 38px; height: 38px; font-size: 1rem; }
}
