/* Comparison Page Styles */
.vs-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vs-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.vs-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.vs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.winner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: var(--bg-glass);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.product-card.winner {
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.product-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 1rem 0;
}

.product-card .price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-comparison {
    margin: 4rem 0;
}

.feature-comparison h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-glass);
    border-radius: 1rem;
    overflow: hidden;
}

.comparison-table th {
    background: rgba(102, 126, 234, 0.1);
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 600;
}

.check {
    color: #10b981;
    font-size: 1.5rem;
}

.cross {
    color: #ef4444;
    font-size: 1.5rem;
}

.vs-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    border-radius: 2rem;
    text-align: center;
    margin: 4rem 0;
    color: white;
}

.vs-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vs-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.vs-cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vs-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pros,
.cons {
    background: var(--bg-glass);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

@media (max-width: 768px) {

    .comparison-grid,
    .pros-cons {
        grid-template-columns: 1fr;
    }

    .vs-hero h1 {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}