.comparison-hero {
    background: var(--secondary-color);
    padding: 120px 2rem 80px;
    text-align: center;
}

.comparison-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.comparison-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--secondary-color);
}

.comparison-table {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 200px repeat(4, 1fr);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 0;
    font-weight: bold;
    color: white;
}

.header-cell {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.header-cell:last-child {
    border-right: none;
}

.header-cell.feature-header {
    background: rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.provider-logo {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    font-size: 12px;
}

.berrry-logo {
    background: var(--primary-color) !important;
    color: white !important;
}

.table-row {
    display: grid;
    grid-template-columns: 200px repeat(4, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.table-cell:last-child {
    border-right: none;
}

.feature-cell {
    background: rgba(255,255,255,0.02);
    font-weight: 600;
    color: var(--text-color);
    justify-content: flex-start;
    padding-left: 25px;
}

.feature-cell i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.berrry-cell {
    background: linear-gradient(135deg, rgba(242, 65, 80, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
}

.berrry-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.competitor-cell {
    color: #999;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.cross {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.check {
    color: #51cf66;
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;
}

.stat-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(242, 65, 80, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .comparison-hero h1 {
        font-size: 2rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 120px repeat(4, 1fr);
        font-size: 0.85rem;
    }
    
    .table-cell {
        padding: 15px 8px;
        min-height: 60px;
    }
    
    .header-cell {
        padding: 15px 8px;
    }
    
    .provider-logo {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    .comparison-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .table-header,
    .table-row {
        grid-template-columns: 100px repeat(4, 1fr);
        font-size: 0.75rem;
    }
    
    .table-cell {
        padding: 12px 5px;
    }
    
    .feature-cell {
        padding-left: 10px;
    }
    
    .feature-cell i {
        margin-right: 5px;
    }
}