/* Premium Comparison Table Styles (Integrated Synta-style) */
.comparison-container.integrated {
    width: 100%;
    margin: 0;
    overflow-x: auto;
    background: transparent;
    border: none;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 900px;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
    background-clip: padding-box;
}

.comparison-table th {
    background: transparent;
    color: var(--secondary-text-color);
    font-weight: 500;
    font-size: 1rem; /* Increased by 1 unit from 0.8rem as requested (originally 0.9) */
    letter-spacing: 0.05em;
    padding: 1.5rem 3rem;
}

.comparison-table .feature-col {
    width: 40%; /* Expanded to allow compression of other columns */
    padding-left: 3.5rem; /* Compensate for negative margin to reach vertical line */
    color: #FFFFFF;
    font-weight: 500;
}

.comparison-table .other-col {
    width: 30%; /* Slightly compressed */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-text-color);
}

.comparison-table .tess-col {
    width: 30%; /* Slightly compressed */
    background: rgba(17, 68, 75, 0.12) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-right: 3.5rem; /* Compensate for negative margin */
}

.comparison-table th.tess-col {
    background: rgba(17, 68, 75, 0.08) !important;
    color: #ffffff;
    font-weight: 700;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.check-mark-svg {
    color: #ffffff;
    width: 0.8rem;
    height: 0.8rem;
}

.cross-mark-svg {
    color: var(--secondary-text-color);
    width: 0.8rem;
    height: 0.8rem;
    opacity: 0.8;
}

.sub-text {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* New Cell Layout */
.cell-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cell-title {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
}

.cell-desc {
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    line-height: 1.5;
    margin-left: 2.25rem; /* Align with title text (capsule 1.5rem + gap 0.75rem) */
}

.icon-capsule {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.other-col .icon-capsule {
    background: rgba(255, 255, 255, 0.05); /* Soft transparent white for Excel column */
}

.tess-col .icon-capsule {
    background: rgba(17, 68, 75, 0.35);
}

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

@media (max-width: 1024px) {
    .comparison-container.integrated {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 1.5rem 1rem;
    }
}

/* CTA Row Styles (Integrated below table) */
.comparison-section-cta {
    width: 100%;
    padding: 2.5rem 0 2.5rem; /* Reduced padding for symmetric look */
    position: relative;
    z-index: 10;
}

.table-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 9999px;
    background: rgba(17, 68, 75, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(46, 196, 182, 0.12);
    transition: all 0.2s ease;
    margin-left: 3.5rem;
}

.table-cta-link:hover {
    background: rgba(17, 68, 75, 1);
    box-shadow: inset 0 1px 0 rgba(46, 196, 182, 0.25);
    transform: translateY(-1px);
    opacity: 1;
}

.table-cta-link span {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.table-cta-link:hover span {
    transform: translateX(3px);
}