.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-table th {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
}

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

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-name {
    font-weight: 500;
    color: var(--text-bright);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.check, .cross, .limited {
    text-align: center;
    font-size: 1.5rem;
}

.check {
    color: #4ade80;
}

.cross {
    color: #f87171;
}

.limited {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 500;
}

.pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
}

@media (max-width: 600px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .feature-name {
        font-size: 0.9rem;
    }

    .feature-desc {
        font-size: 0.75rem;
    }
}
