/* ── GET STARTED STEPS ────────────────────────────── */
.steps-section {
    padding: 64px 0;
}

/* Numbered step cards */
.step-item {
    margin-bottom: 40px;
    padding: 32px 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    padding-left: 80px;
    border-left: 4px solid var(--brand-primary);
}

.step-item:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateX(4px);
}

/* Alternating border accent */
.step-item:nth-child(even) {
    border-left-color: var(--brand-accent);
}

/* Step number bubble (visual only via CSS counter) */
.steps-section {
    counter-reset: step-counter;
}

.step-item {
    counter-increment: step-counter;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--brand-primary);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(56, 163, 165, 0.35);
    line-height: 1;
}

.step-item:nth-child(even)::before {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

.step-item h2 {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-item p {
    color: var(--text-medium);
    font-size: 15.5px;
    margin-bottom: 12px;
    line-height: 1.75;
}

.step-item ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-medium);
}

.step-item ul li {
    margin-bottom: 8px;
    font-size: 14.5px;
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}

.step-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--brand-accent);
    border-radius: 50%;
}

.step-item ul li strong {
    color: var(--brand-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .step-item {
        padding: 24px 20px 24px 68px;
        border-left-width: 3px;
    }

    .step-item::before {
        left: 16px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}