/* Landing Page Table 1 - Comparison Table */

.landing-table-1-block {
    padding: 80px 0;
    position: relative;
}

.landing-table-1-container {
    margin: 0 auto;
    padding: 0 20px;
}

.landing-table-1-title {
    color: #000;
    font-family: helvetica_lt_std_condensed, Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px;
    text-align: center;
    text-transform: none;
}

.landing-table-1-subtitle {
    color: #333;
    font-family: helvetica_lt_stdlight, Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 50px;
    max-width: 700px;
    text-align: center;
}

/* Table Wrapper */
.landing-table-1-wrapper {
    position: relative;
    overflow: hidden;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Table Header */
.table-header {
    display: flex;
    align-items: stretch;
}

.table-header .feature-cell {
    flex: 1 1 50%;
    padding: 20px;
}

.table-header .header-cell {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    text-align: center;
}

.table-header .col1-header {
    background: rgba(90, 122, 154, 0.15);
    border-radius: 16px 16px 0 0;
    position: relative;
}

.table-header .col2-header {
    background: transparent;
    color: #333;
}

.header-text {
    font-family: helvetica_lt_std_condensed, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.col1-header .header-text {
    color: #000;
}

.col2-header .header-text {
    color: #333;
}

.header-subtext {
    font-family: helvetica_lt_stdlight, Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.8;
}

.col1-header .header-subtext {
    color: #000;
}

.col2-header .header-subtext {
    color: #666;
}

/* Table Body */
.table-body {
    position: relative;
}

/* Table Rows */
.table-row {
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    position: relative;
}

.table-row.row-even {
    background-color: #f0f4f8;
}

.table-row.row-odd {
    background-color: #fff;
}

.table-row:hover {
    background-color: #e8eef4;
    transform: scale(1.005);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Table Cells */
.table-cell {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    min-height: 60px;
}

.feature-cell {
    flex: 1 1 50%;
    padding-right: 30px;
}

.feature-text {
    font-family: helvetica_lt_stdlight, Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.status-cell {
    flex: 0 0 25%;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

/* Highlighted Column (Column 1) */
.col1-cell.highlighted {
    background: rgba(90, 122, 154, 0.15);
    position: relative;
}

.table-row:last-child .col1-cell.highlighted {
    border-radius: 0 0 16px 16px;
}

/* Status Icons */
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.table-row:hover .status-icon {
    transform: scale(1.15);
}

.status-icon svg {
    width: 28px;
    height: 28px;
}

.status-check svg circle {
    fill: #4CAF50;
}

.status-x svg path {
    stroke: #000;
}

.status-warning svg path:first-child {
    fill: #000;
}

.status-note {
    font-family: helvetica_lt_stdlight, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Footnotes */
.landing-table-1-footnotes {
    margin-top: 30px;
    padding: 0 10px;
}

.landing-table-1-footnotes p {
    font-family: helvetica_lt_stdlight, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 5px;
}

/* Animation on scroll */
.table-row {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.table-row:nth-child(1) { animation-delay: 0.1s; }
.table-row:nth-child(2) { animation-delay: 0.15s; }
.table-row:nth-child(3) { animation-delay: 0.2s; }
.table-row:nth-child(4) { animation-delay: 0.25s; }
.table-row:nth-child(5) { animation-delay: 0.3s; }
.table-row:nth-child(6) { animation-delay: 0.35s; }
.table-row:nth-child(7) { animation-delay: 0.4s; }
.table-row:nth-child(8) { animation-delay: 0.45s; }
.table-row:nth-child(9) { animation-delay: 0.5s; }
.table-row:nth-child(10) { animation-delay: 0.55s; }
.table-row:nth-child(11) { animation-delay: 0.6s; }
.table-row:nth-child(12) { animation-delay: 0.65s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode */
body.dark-mode .landing-table-1-block {
    background-color: #000 !important;
}

body.dark-mode .landing-table-1-title {
    color: #fff;
}

body.dark-mode .landing-table-1-subtitle {
    color: #ccc;
}

body.dark-mode .landing-table-1-footnotes p {
    color: #ccc;
}

body.dark-mode .col1-header .header-text,
body.dark-mode .col1-header .header-subtext,
body.dark-mode .col2-header .header-text,
body.dark-mode .col2-header .header-subtext {
    color: #fff;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .landing-table-1-block {
        padding: 60px 0;
    }

    .landing-table-1-subtitle {
        margin-bottom: 40px;
    }

    .table-header .header-cell {
        padding: 20px 10px;
    }

    .header-text {
        font-size: 16px;
    }

    .header-subtext {
        font-size: 12px;
    }

    .table-cell {
        padding: 15px;
    }

    .feature-text {
        font-size: 15px;
    }

    .status-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Styles - Card Layout */
@media (max-width: 768px) {
    .landing-table-1-block {
        padding: 50px 0;
    }

    .landing-table-1-container {
        padding: 0;
    }

    .landing-table-1-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .landing-table-1-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .comparison-table {
        border-radius: 12px;
        overflow: visible;
    }

    /* Hide desktop header on mobile */
    .table-header {
        display: none;
    }

    /* Card layout for rows */
    .table-body {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .table-row {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        padding: 0;
    }

    .table-row.row-even,
    .table-row.row-odd {
        background: #fff;
    }

    .table-row:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    /* Feature title at top of card */
    .table-cell.feature-cell {
        flex: none;
        width: 100%;
        padding: 18px 20px;
        background: #f0f4f8;
        border-bottom: 1px solid #e0e5eb;
    }

    .feature-text {
        font-size: 15px;
        font-weight: 600;
        font-family: helvetica_lt_std_condensed, Arial, Helvetica, sans-serif;
        color: #000;
    }

    /* Status cells stacked vertically */
    .table-row .status-cell {
        flex: none;
        width: 100%;
        padding: 15px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        min-height: auto;
        border-top: 1px solid #e8ecf0;
    }

    .table-row .col1-cell.highlighted {
        background: rgba(90, 122, 154, 0.12);
        border-radius: 0;
    }

    .table-row:last-child .col1-cell.highlighted {
        border-radius: 0;
    }

    .table-row .status-cell {
        position: relative;
    }

    /* Add column labels on mobile - left side */
    .table-row .status-cell::before {
        content: attr(data-label);
        display: block;
        font-family: helvetica_lt_std_condensed, Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #333;
        flex: 1;
    }

    .table-row .col1-cell::before {
        color: #000;
    }

    .table-row .col1-cell .status-note {
        color: #000;
    }

    .table-row .status-cell .status-icon {
        flex-shrink: 0;
        order: 2;
    }

    .table-row .status-cell .status-note {
        flex-shrink: 0;
        order: 1;
    }

    .status-icon svg {
        width: 28px;
        height: 28px;
    }

    .status-note {
        font-size: 11px;
        text-align: center;
    }

    .landing-table-1-footnotes {
        margin-top: 25px;
    }

    .landing-table-1-footnotes p {
        font-size: 12px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .landing-table-1-block {
        padding: 40px 0;
    }

    .landing-table-1-title {
        font-size: 1.5rem;
    }

    .landing-table-1-subtitle {
        font-size: 15px;
    }

    .table-body {
        gap: 12px;
    }

    .table-cell.feature-cell {
        padding: 15px;
    }

    .feature-text {
        font-size: 14px;
    }

    .table-row .status-cell {
        padding: 12px 15px;
    }

    .table-row .status-cell::before {
        font-size: 12px;
    }

    .status-icon svg {
        width: 24px;
        height: 24px;
    }

    .status-note {
        font-size: 10px;
    }
}

/* Print Styles */
@media print {
    .landing-table-1-block {
        padding: 20px 0;
    }

    .table-row {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .table-row:hover {
        transform: none;
        box-shadow: none;
    }
}
