/* Why Us Section - Elevated Cards with Simple VS */
.why-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, white, #f8fafc);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.compare-side {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    position: relative;
    z-index: 2;
    /* Elevated above background */
}

.compare-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.traditional-side {
    border: 2px solid #fee2e2;
    background: linear-gradient(to bottom right, #ffffff, #fef2f2);
}

.our-side {
    border: 2px solid #dbeafe;
    background: linear-gradient(to bottom right, #ffffff, #eff6ff);
}

.mode-badge {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 32px;
}

.mode-badge.traditional {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.mode-badge.ours {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 1px solid #60a5fa;
}

.mode-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.mode-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mode-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.mode-item i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
    font-size: 0.9rem;
}

.traditional-side .mode-item i {
    background: #fee2e2;
    color: #dc2626;
}

.our-side .mode-item i {
    background: #dbeafe;
    color: #2563eb;
}

.mode-item.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

/* VS Divider - Simplified, Clean */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 40px;
    position: relative;
    z-index: 3;
    /* Above cards */
}

.vs-text {
    font-size: 4rem;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.expert-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    max-width: 140px;
    line-height: 1.5;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vs-divider {
        margin: 0;
        padding: 20px;
    }

    .vs-text {
        font-size: 3rem;
    }

    .compare-side {
        min-height: auto;
    }
}