.ats-vs-human {
    padding: 60px 0;
    background: linear-gradient(135deg, #F0F2F5 0%, #E8ECF1 100%);
}

.vs-header {
    text-align: center;
    margin-bottom: 48px;
}

.vs-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;
}

.vs-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black, #111111);
}

.vs-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-light, #4A4A4A);
    max-width: 600px;
    margin: 0 auto;
}

.vs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.vs-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vs-card.ats .vs-card-header { background: #FEF2F2; color: #DC2626; }
.vs-card.human .vs-card-header { background: #F0FDF4; color: #16A34A; }

.vs-card-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.vs-card-header i { font-size: 36px; margin-bottom: 8px; display: block; }
.vs-card-header h3 { font-size: 1.125rem; margin: 0; }

.vs-card-content { padding: 24px; }
.vs-card-content ul { list-style: none; padding: 0; margin: 0; }
.vs-card-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
}
.vs-card.ats li i.fa-check-circle { color: #10B981; }
.vs-card.ats li i.fa-times-circle { color: #DC2626; }
.vs-card.human li i { color: #10B981; }

.vs-conclusion {
    background: var(--color-primary, #4D6AFF);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}
.vs-conclusion i { font-size: 40px; }
.vs-conclusion p { margin: 0; font-size: 1rem; }

@media (max-width: 991px) {
    .vs-wrapper { grid-template-columns: 1fr; }
    .vs-title { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .ats-vs-human { padding: 40px 0; }
    .vs-conclusion { flex-direction: column; text-align: center; }
}