/* Pricing Comparison Table Styles */
.pricing-comparison-wrapper {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.comparison-header {
    margin-bottom: 40px;
    text-align: center;
}

.comparison-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

.comparison-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 700px;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

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

.comparison-table th {
    background: #fafafa;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Header Row Styles */
.comparison-table thead th {
    vertical-align: bottom;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table thead th:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comparison-plan-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.comp-plan-badge {
    background: #eff6ff;
    color: #1e40af;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.comp-plan-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comp-plan-price {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: -2px;
}

.price-period {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
}

.comp-cta-btn {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comp-cta-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.comp-cta-btn:not(.secondary) {
    background: #021BF9;
    color: #ffffff;
    border: 1px solid #021BF9;
}

.comp-cta-btn:not(.secondary):hover {
    background: #021094;
    border-color: #021094;
}

.comp-cta-btn.secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.comp-cta-btn.secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Feature Rows */
.feature-category-row th {
    background: #fafafa;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    padding: 10px 20px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #f3f4f6;
}

.feature-name {
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    width: 250px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.feature-value {
    text-align: left;
    font-size: 14px;
    color: #111827;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.feature-value.highlight {
    background: #eff6ff;
    font-weight: 500;
    color: #1e40af;
}

.check-icon {
    color: #021BF9;
    font-weight: bold;
    font-size: 16px;
}

.dash-icon {
    color: #d1d5db;
    font-size: 14px;
}

/* Enhanced table styling */
.comparison-table-enhanced tbody tr {
    transition: background 0.15s ease;
}

.comparison-table-enhanced tbody tr:hover {
    background: #fafafa;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-comparison-wrapper {
        padding: 0 16px;
    }

    .comparison-title {
        font-size: 24px;
    }

    .comp-plan-name {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }
}