.how-ats-works {
    padding: 60px 0;
    background: var(--color-background, #F8F9FA);
}

.how-header {
    text-align: center;
    margin-bottom: 48px;
}

.how-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary, #4D6AFF);
    margin-bottom: 8px;
}

.how-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black, #111111);
}

.how-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-light, #4A4A4A);
    max-width: 600px;
    margin: 0 auto;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.how-step {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(77, 106, 255, 0.1);
    margin-bottom: 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #7B93FF, #4D6AFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i { font-size: 24px; color: white; }
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 0.8125rem; color: #4A4A4A; }

@media (max-width: 991px) {
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-title { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .how-ats-works { padding: 40px 0; }
    .how-steps { grid-template-columns: 1fr; }
}