/* Business Broadband Specific Styles */

.business-selector {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
    text-align: center;
}

.business-selector h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.business-type {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.business-type:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.business-type.active {
    border-color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
}

.business-type .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.business-type h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.business-type p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* SLA Badges */
.sla-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.sla-badge {
    background-color: #dbeafe;
    color: #1e40af;
}

.sla-badge.premium {
    background-color: #fbbf24;
    color: #78350f;
}

.sla-badge.enterprise {
    background-color: #8b5cf6;
    color: white;
}

/* Business Plan Cards */
.plan-card.small-business {
    border-left: 4px solid #10b981;
}

.plan-card.medium-business {
    border-left: 4px solid #3b82f6;
}

.plan-card.large-business {
    border-left: 4px solid #8b5cf6;
}

/* Business Features Comparison */
.business-features {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.business-features h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.comparison-table {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background-color: var(--bg-secondary);
}

.comparison-row > div:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-row > div:not(:first-child) {
    text-align: center;
    color: var(--text-secondary);
}

/* Plan filtering by business type */
.plan-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.plan-card.hidden {
    opacity: 0.3;
    transform: scale(0.95);
    pointer-events: none;
}

/* Enterprise features */
.enterprise-features {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.enterprise-features h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.enterprise-features ul {
    list-style: none;
    font-size: 0.75rem;
}

.enterprise-features ul li {
    margin-bottom: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .business-types {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-row > div:first-child {
        font-weight: 700;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .comparison-row > div:not(:first-child) {
        margin-bottom: 0.25rem;
    }
}