/* comparison Section - Mobile */
.comparison {
    width: 100%;
    background-size: cover;
    z-index: 100;
}

.comparison__blur {
    position: absolute;
    left: 0;
    top: -16.25rem;
    width: 97.375rem;
    height: 124.75rem;
    border-radius: 124.75rem;
    background: #FFF;
    opacity: 0.7;
    filter: blur(7.813rem);
    z-index: 0;
    pointer-events: none;
}

.comparison__container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.comparison__title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 2rem; /* 32px on mobile */
    font-style: normal;
    font-weight: 600;
    color: #303030;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.comparison__wrapper {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.05) 100%);*/
    z-index: 1;
}

.comparison__header_subtitle {
    color: #21CC9E;
    font-size: 1rem;
    margin-left: 0.25rem;
    font-weight: normal;
}

.comparison__panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: none;
    border-radius: 1rem;
}

.comparison__panel > .cell.col-b {
    background: linear-gradient(
            135deg,
            rgba(139, 124, 243, 0.20) 3.24%,
            rgba(255, 255, 255, 0.02) 94.23%
    );
}

.comparison__panel > .cell.col-c {
    background: linear-gradient(
            135deg,
            rgba(41, 255, 198, 0.20) 3.24%,
            rgba(255, 255, 255, 0.02) 94.23%
    );
}

.comparison__panel > .cell.col-b,
.comparison__panel > .cell.comparison__header.col-b {
    order: 1;
}

.comparison__panel > .cell.col-c,
.comparison__panel > .cell.comparison__header.col-c {
    order: 2;
}

.comparison__panel > .cell.comparison__header.col-c {
    /*margin-top: 2rem;*/
}

.hide-mobile {
    display: none !important;
}

.cell.comparison__header {
    padding: 16px 18px;
    font: 700 1.05rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #1E1E1E;
}

.comparison__header.col-a {
    background: linear-gradient(135deg, #F3F4F6 0%, #F9FAFB 100%);
    border-radius: 1rem 1rem 0 0;
}

.comparison__panel > .comparison__header.col-b {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.20) 0%, #FFF 100%);
    border-radius: 1rem 1rem 0 0;
}

.comparison__panel > .comparison__header.col-c {
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDFA 100%);
    border-radius: 1rem 1rem 0 0;
}

/* Body cells */
.cell {
    /*border: 1px solid var(--line);*/
    /*border-radius: var(--radius);*/
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem 0 1rem 1rem;
}

.cell > .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    width: 100%;
    color: black;
    padding: 0 1rem 0 1rem;
}

.inner .inner-header {
    color: #757575;
    font-size: 0.875rem;
    margin: 0;
}

.comparison__check {
    width: 1.5rem;
    flex-shrink: 0;
}

.hidden-check .comparison__check {
    visibility: hidden;
}

.cell::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: #F1F5F9;
}

.cell:nth-last-child(-n+2) {
    border-radius: 1rem;
}

.cell:nth-last-child(-n+2)::after {
    content: none;
}

.cell.header::after {
    content: none;
}

.comparison__pass {
    z-index: 1;
}

.comparison__pass-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E1E1E;
    text-align: center;
    margin: 5rem 0 2rem 0;
}

.comparison__pass-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /*justify-content: center;*/
    gap: 1.25rem;
    width: 100%;
    justify-content: space-between;
}

.comparison__pass-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 1.25rem 1.25rem 3rem 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: linear-gradient(221deg, rgba(139, 124, 243, 0.20) 3.99%, rgba(148, 255, 227, 0.11) 51.15%, rgba(255, 255, 255, 0.02) 98.3%);
}

.comparison__pass-item-image {
    width: 11.25rem;
    height: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.10);
}

.comparison__pass-header {
    color: #1E1E1E;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 1.5rem 0 0.75rem 0;
}

.comparison__pass-desc {
    color: #1E1E1E;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    max-width: 21rem;
}

.comparison__annotation {
    color: #757575;
    opacity: 1.0;
    z-index: 1;
    margin-top: 1rem;
}

.comparison__annotation-title {
    text-align: center;
}

.comparison__annotation-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    max-width: 1280px;
}

.comparison__annotation-container p {
    flex: 1;
}

.comparison__annotation-header {
    color: #1E1E1E;
    font-size: 1.25rem;
    font-weight: 600;
}