/* Signalator Business Page Specific Styles */
:root {
    --business-primary: #1a3a5f;
    --business-secondary: #2a5a8c;
    --business-accent: #e6a23c;
    --business-light: #f8fafc;
    --business-dark: #0f172a;
}

/* Business Hero Section */
.business-hero.pg20-section {
    background: linear-gradient(135deg, var(--business-dark) 0%, var(--business-primary) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.business-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 162, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.08) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 0;
}

.business-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.business-hero .pg20-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.business-hero-subtitle.pg20-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.business-hero-highlight {
    color: var(--business-accent);
    font-weight: 700;
}

/* Section Styling */
.business-section.pg20-section {
    padding: 80px 0;
}

.business-section-alt {
    background-color: var(--business-light);
}

.business-section-dark {
    background: linear-gradient(135deg, var(--business-dark) 0%, var(--business-primary) 100%);
    color: white;
}

.business-section-dark .pg20-title,
.business-section-dark .pg20-subtitle {
    color: white;
}

.business-section-dark .section-title .pg20-title::after {
    background: linear-gradient(to right, var(--accent-color), #f59e0b);
}

/* Business Cards */
.business-cards.pg20-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.business-card.pg20-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.business-card.pg20-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    opacity: 0.8;
}

.business-card.pg20-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 162, 60, 0.3);
}

.business-card-icon.pg20-icon {
    font-size: 2.8rem;
    color: var(--business-accent);
    margin-bottom: 1.5rem;
}

.business-card .pg20-card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--business-primary);
}

.business-card .pg20-card-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.business-card-features.pg20-features {
    list-style: none;
    margin: 1.5rem 0;
}

.business-card-features.pg20-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
}

.business-card-features.pg20-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-secondary);
}

/* Business Process */
.business-process.pg20-process {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 3rem;
    position: relative;
}

.business-process.pg20-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-secondary));
    opacity: 0.3;
    border-radius: 2px;
}

.process-step.pg20-step {
    display: flex;
    gap: 30px;
    position: relative;
}

.process-step-number.pg20-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(26, 58, 95, 0.2);
}

.process-step-content.pg20-step-content {
    flex: 1;
    padding-top: 15px;
}

.process-step-content .pg20-step-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--business-primary);
}

.process-step-content .pg20-step-text {
    color: var(--text-color);
    line-height: 1.6;
}

/* Business CTA */
.business-cta.pg20-cta {
    background: linear-gradient(135deg, var(--business-primary) 0%, var(--business-secondary) 100%);
    color: white;
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.business-cta.pg20-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 162, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.business-cta .pg20-cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.business-cta .pg20-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.business-cta .pg20-cta-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Business Comparison */
.comparison-table.pg20-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table.pg20-table th {
    background-color: var(--business-primary);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table.pg20-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: white;
}

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

.comparison-table .feature-cell.pg20-table-cell {
    font-weight: 600;
    color: var(--business-primary);
}

.comparison-table .check-cell.pg20-table-cell {
    color: var(--accent-secondary);
    font-size: 1.2rem;
}

.comparison-table .cross-cell.pg20-table-cell {
    color: #ff6b6b;
    font-size: 1.2rem;
}

/* Tab System for Business Solutions */
.business-tabs.pg20-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
    justify-content: center;
}

.business-tab.pg20-tab {
    background-color: var(--light-bg);
    color: var(--business-primary);
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.business-tab.pg20-tab.active,
.business-tab.pg20-tab:hover {
    background-color: var(--business-accent);
    color: white;
    border-color: var(--business-accent);
    transform: translateY(-2px);
}

.business-tab-content.pg20-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.business-tab-content.pg20-tab-content.active {
    display: block;
}

/* Business Footer */
.business-footer.pg20-footer {
    background-color: var(--business-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.business-footer-links.pg20-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.business-footer-column.pg20-footer-column .pg20-footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.business-footer-links .pg20-footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.business-footer-links .pg20-footer-link:hover {
    color: var(--business-accent);
}

.pg20-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pg20-footer-text {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pg20-footer-contact {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .business-hero .pg20-title {
        font-size: 2.8rem;
    }
    
    .business-hero-subtitle.pg20-subtitle {
        font-size: 1.1rem;
    }
    
    .business-cta.pg20-cta {
        padding: 3rem;
    }
    
    .business-process.pg20-process::before {
        left: 35px;
    }
    
    .process-step-number.pg20-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .business-hero .pg20-title {
        font-size: 2.4rem;
    }
    
    .business-hero.pg20-section {
        padding: 80px 0 60px;
    }
    
    .business-section.pg20-section {
        padding: 60px 0;
    }
    
    .business-tabs.pg20-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .business-tab.pg20-tab {
        text-align: center;
    }
    
    .business-process.pg20-process::before {
        display: none;
    }
    
    .process-step.pg20-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step-number.pg20-step-number {
        align-self: flex-start;
    }
    
    .comparison-table.pg20-table {
        display: block;
        overflow-x: auto;
    }
    
    .business-cta.pg20-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .business-cta .pg20-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .business-hero .pg20-title {
        font-size: 2rem;
    }
    
    .business-cards.pg20-cards {
        grid-template-columns: 1fr;
    }
    
    .business-card.pg20-card {
        padding: 2rem;
    }
}

/* General pg20 styles for consistency */
.pg20-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pg20-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.pg20-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pg20-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.pg20-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

/* Business Intro Content */
.business-intro-content.pg20-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.pg20-text-lg {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 3rem;
    text-align: center;
}

.pg20-text-center {
    text-align: center;
}

/* Capabilities Grid */
.business-capabilities.pg20-capabilities {
    margin: 3rem 0;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.capability-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.capability-icon {
    font-size: 2.5rem;
    color: var(--business-accent);
    margin-bottom: 1.5rem;
}

.capability-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--business-primary);
}

.capability-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Client Types */
.business-client-types.pg20-client-types {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.pg20-title-sm {
    font-size: 1.5rem;
    color: var(--business-primary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.client-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.client-type:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.client-type i {
    color: var(--business-accent);
    font-size: 1.2rem;
    width: 24px;
}

.client-type span {
    color: var(--text-color);
    font-weight: 500;
}

/* Engagement Model */
.engagement-model.pg20-engagement-model {
    max-width: 900px;
    margin: 0 auto;
}

.engagement-flow.pg20-flow {
    margin-top: 3rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.flow-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.flow-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.flow-step-content {
    flex: 1;
}

.flow-step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--business-primary);
}

.flow-step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Updated Hero Intro */
.business-hero-intro.pg20-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .capability-grid {
        grid-template-columns: 1fr;
    }
    
    .client-type-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-step-number {
        align-self: flex-start;
    }
    
    .business-hero-intro.pg20-intro {
        font-size: 1rem;
    }
}
.pg20-tailored-statement {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.05), rgba(230, 162, 60, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--business-accent);
    text-align: center;
}

.pg20-statement {
    font-size: 1.2rem;
    color: var(--business-primary);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pg20-statement i {
    color: var(--accent-secondary);
    font-size: 1.5rem;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .pg20-statement {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .pg20-tailored-statement {
        padding: 1.5rem;
    }
}
#solutions.business-section.pg20-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

#solutions.business-section.pg20-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(230, 162, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#solutions.business-section.pg20-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(26, 58, 95, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Platform Links Section Styles */
.platform-links.pg20-platform-links {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.platform-links-title {
    font-size: 2rem;
    color: var(--business-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.platform-links-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.platform-card {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--business-accent);
}

.platform-icon {
    font-size: 2.5rem;
    color: var(--business-accent);
    margin-bottom: 1.5rem;
}

.platform-content h4 {
    font-size: 1.5rem;
    color: var(--business-primary);
    margin-bottom: 1rem;
}

.platform-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.platform-tag {
    background: var(--light-bg);
    color: var(--business-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--business-accent);
    font-weight: 600;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.platform-link i {
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-link i {
    transform: translateX(5px);
}

.platform-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(230, 162, 60, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--business-accent);
    max-width: 800px;
    margin: 0 auto;
}

.platform-note i {
    color: var(--business-accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.platform-note p {
    color: var(--business-primary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .platform-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-cards {
        grid-template-columns: 1fr;
    }
    
    .platform-links-title {
        font-size: 1.8rem;
    }
    
    .platform-note {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-note i {
        margin-bottom: 0.5rem;
    }
}

.comparison-table-wrapper.pg20-table-wrapper {
    margin-top: 3rem;
}

.table-scroll-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    background: white;
}

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

/* Table Header */
.comparison-table th {
    padding: 0;
    border-bottom: 2px solid var(--border-color);
}

.table-header-content {
    padding: 1.5rem;
}

.criteria-col {
    width: 25%;
    background: var(--light-bg);
    border-right: 1px solid var(--border-color);
}

.criteria-label {
    font-weight: 600;
   
    font-size: 1.1rem;
}

.solution-col {
    width: 25%;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.solution-col:last-child {
    border-right: none;
}

.signalator-col {
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.03), rgba(230, 162, 60, 0.03));
    position: relative;
}

.signalator-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

.solution-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.solution-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    
    font-size: 1rem;
}

.signalator-badge {
    color: var(--business-accent);
}

.solution-tag {
    background: var(--accent-secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Table Body */
.comparison-table td {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

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

.criteria-cell {
    background: var(--light-bg);
    border-right: 1px solid var(--border-color);
}

.criteria-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.criteria-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--business-accent);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.criteria-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.criteria-name {
    font-weight: 600;
    color: var(--business-primary);
    font-size: 1rem;
}

.criteria-desc {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

.solution-cell {
    border-right: 1px solid var(--border-color);
}

.solution-cell:last-child {
    border-right: none;
}

.signalator-cell {
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.02), rgba(230, 162, 60, 0.02));
}

.solution-value {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
}

.value-text {
    font-weight: 600;
    color: var(--business-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.value-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.value-rating i {
    font-size: 1.2rem;
}

.signalator-cell .value-rating {
    color: var(--accent-secondary);
}

.value-rating i.fa-check-circle {
    color: var(--accent-secondary);
}

.value-rating i.fa-exclamation-circle {
    color: #f59e0b;
}

.value-rating i.fa-times-circle {
    color: #ff6b6b;
}

/* Table Legend */
.table-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-icon {
    font-size: 1.2rem;
}

.legend-icon .fa-check-circle {
    color: var(--accent-secondary);
}

.legend-icon .fa-exclamation-circle {
    color: #f59e0b;
}

.legend-icon .fa-times-circle {
    color: #ff6b6b;
}

.legend-text {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Hover effects */
.comparison-table tr:hover .criteria-cell {
    background: rgba(26, 58, 95, 0.03);
}

.comparison-table tr:hover .solution-cell:not(.signalator-cell) {
    background: rgba(0, 0, 0, 0.01);
}

.comparison-table tr:hover .signalator-cell {
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.05), rgba(230, 162, 60, 0.05));
}

/* Responsive improvements */
@media (max-width: 992px) {
    .criteria-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .criteria-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .table-header-content {
        padding: 1rem;
    }
    
    .solution-value {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .table-scroll-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .table-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .solution-badge {
        font-size: 0.9rem;
    }
    
    .criteria-name {
        font-size: 0.9rem;
    }
    
    .value-text {
        font-size: 0.85rem;
    }
}

