.comparison-table .cmp-table {
    --cmp-blue: #0080FF;
    --cmp-navy: #0F253E;
    --cmp-border: #C0CBDC;
    --cmp-row-bg: #FFFFFF;
    --cmp-row-alt-bg: rgba(0, 128, 255, 0.06);
    --cmp-col1-bg: rgba(0, 128, 255, 0.06);
    --cmp-col1-alt-bg: #E2F0FF;
    max-width: 968px;
    margin: 0 auto;
}

.comparison-table .cmp-row {
    --row-bg: var(--cmp-row-bg);
    --cell1-bg: var(--cmp-col1-bg);
    display: grid;
    grid-template-columns: 1fr 310px 310px;
    align-items: stretch;
    background: var(--row-bg);
}

@media (min-width: 1025px) {
    #xl-reporter-table .comparison-table .cmp-row {
        grid-template-columns: 1fr 272px 272px;
    }
}

@media (max-width: 1024px) {
    .comparison-table .cmp-row {
        grid-template-columns: 1fr 220px 200px;
    }

    .comparison-table .cmp-group__title .cmp-note {
        font-size: 16px;
    }
    .comparison-table .cmp-product-name {
        font-size: 26px;
    }
}


@media (max-width: 768px) {
    .comparison-table .cmp-row {
        grid-template-columns: 1fr repeat(2, clamp(72px, 17vw + 12px, 140px));
    }
}

.comparison-table .cmp-group__body .cmp-row:nth-of-type(odd) {
    --row-bg: var(--cmp-row-alt-bg);
    --cell1-bg: var(--cmp-col1-alt-bg);
    border-radius: 8px;
}

.comparison-table .cmp-row--spacer {
    --row-bg: transparent;
    border-top: 0;
}

.comparison-table .cmp-row--spacer .cmp-cell {
    height: 12px;
    padding: 0;
}

.comparison-table .cmp-row--spacer .cmp-cell--1 {
    background: var(--cmp-col1-bg);
}

.comparison-table .cmp-cell {
    padding: 13px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .comparison-table .cmp-cell {
        padding: 15px 16px;
    }
}

.comparison-table .cmp-cell--feature {
    justify-content: flex-start;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.comparison-table .cmp-cell--1 {
    background: var(--cell1-bg);
}

.comparison-table .cmp-feature-label {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cmp-navy);
}

.comparison-table .cmp-feature-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--cmp-navy);
}

.comparison-table .cmp-feature-desc {
    font-size: 12px;
    color: rgba(15, 37, 62, 0.8);
    letter-spacing: -0.005em;
    font-weight: 500;
    line-height: 160%;
}

.comparison-table .cmp-product-name {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.01em;

    color: var(--cmp-navy);
}

@media (max-width: 768px) {
    .comparison-table .cmp-product-name {
        font-size: 16px;
    }
}

.comparison-table .cmp-row--header {
    border-bottom: 1px solid var(--cmp-navy);
}

.comparison-table .cmp-row--header .cmp-cell--feature {
    padding-left: 0;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.comparison-table .cmp-row--header .cmp-cell--1,
.comparison-table .cmp-row--header .cmp-cell--2 {
    padding: 24px 13px;
    position: relative;
}

.comparison-table .cmp-row--header .cmp-cell--1:before {
    content: '';
    width: 100%;
    height: 12px;
    background: var(--cmp-col1-bg);
    border-radius: 24px 24px 0px 0px;
    position: absolute;
    bottom: 100%;
    left: 0;
}

@media (max-width: 768px) {

    .comparison-table .cmp-row--header .cmp-cell--1,
    .comparison-table .cmp-row--header .cmp-cell--2 {
        padding: 16px 7px;
        border-radius: 8px 8px 0px 0px;
    }

    .comparison-table .cmp-row--header .cmp-cell--1:before {
        display: none;
    }

    .comparison-table .cmp-row--header .cmp-cell--feature {
        padding-bottom: 13px;
        padding-left: 16px;
    }
}

.comparison-table .cmp-note {}


.comparison-table .cmp-icon {
    width: 20px;
    height: 20px;
    display: block;
}


.comparison-table .cmp-dash {
    display: block;
    width: 14px;
    height: 2px;
    background: var(--cmp-navy);
}

.comparison-table .cmp-badge {
    display: inline-block;
    border: 1px solid var(--cmp-border);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    color: var(--cmp-navy);
    background: #FFFFFF;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .comparison-table .cmp-badge {
        white-space: normal;
        font-size: 10px;
        padding: 5px;
        border-radius: 4px;
        margin: 0 -10px;
    }
    .comparison-table .cmp-dash {
        width: 10px;
    }
    
}

.comparison-table .cmp-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--cmp-navy);
}

.comparison-table .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.comparison-table .cmp-group__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.comparison-table .cmp-group__toggle {
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.comparison-table .cmp-group__toggle .cmp-cell {
    padding-top: 20px;
    padding-bottom: 16px;
}

@media (max-width: 768px) {
    .comparison-table .cmp-group__toggle .cmp-cell {
        padding-top: 16px;
        padding-bottom: 12px;
    }
    .comparison-table .cmp-feature-title {
        line-height: 1.4;
    }
}

.comparison-table .cmp-group__toggle .cmp-cell--feature {
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding-left: 0;
}

.comparison-table .cmp-group__chevron {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    transition: transform 0.25s ease;
}

.comparison-table .cmp-group__title {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--cmp-navy);
}

@media (max-width: 768px) {
    .comparison-table .cmp-group__title {
        font-size: 20px;
    }

    .comparison-table .cmp-group__title .cmp-note {
        font-size: 12px;
    }

    .comparison-table .cmp-group__toggle .cmp-cell--feature {
        padding-left: 16px;
    }
}

.comparison-table .cmp-group__body {
    max-height: 3000px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.comparison-table .cmp-group__input:not(:checked)~.cmp-group__body {
    max-height: 0;
}

.comparison-table .cmp-group__input:not(:checked)~.cmp-group__toggle .cmp-group__chevron {
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    .comparison-table .cmp-group__toggle {
        cursor: default;
        pointer-events: none;
    }

    .comparison-table .cmp-group__chevron {
        display: none;
    }

    .comparison-table .cmp-group__body {
        max-height: none !important;
    }
}

.comparison-table .cmp-cta {
    --row-bg: transparent;
}

.comparison-table .cmp-cta .custom-btn {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    width: 100%;
    letter-spacing: 0.015em;
    max-width: 350px;
}

.comparison-table .cmp-cta .cmp-cell {
    padding: 24px;
    border-radius: 0 0 24px 24px;
}

@media (max-width: 768px) {

    .comparison-table .cmp-cta .cmp-cell--feature,
    .comparison-table .cmp-cta .cmp-cell--2 {
        display: none;
    }

    .comparison-table .cmp-cta .cmp-cell--1 {
        grid-column: 1 / -1;
    }

    .comparison-table .cmp-cta .cmp-cell {
        background: none;
    }
    .comparison-table .cmp-cta .cmp-cell {
        padding: 40px 10px 0;
    }
}