:root {
    --bg: #f7fbff;
    --card-bg: #ffffff;
    --text: #111111;
    --muted: #6d6d6d;
    --line: #e7e7e7;

    --primary: #4baee5;
    --primary-hover: #8acaef;
    --dot: #4baee5;

    --radius: 12px;
    --left-col-bg: #F3F6F9;
    --table-height: 668px;
    --plan-col-width: 290px;

    --plan-count: 1;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    background: #f8fcff;
}

.price-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 85px 24px 80px;
}

.price-header {
    text-align: center;
    margin-bottom: 28px;
}

.price-title {
    font-size: 35px;
    line-height: 1.2;
    margin: 0 0 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #4BAEE5;
}

.price-subtitle {
    margin: 0;
    color: #000;
    opacity: 0.7;
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
}

.pricing {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 668px;
}

.pricing__content {
    gap: 32px;
    align-items: stretch;
    min-height: 668px;
    width: 1100px;
    height: 668px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;

    box-sizing: border-box;
}

.plan-card {
    text-align: left;
    background: #fff;
    border: 1px solid #4BAEE5;
    border-radius: 12px;
    box-shadow: none;
    padding: 24px 36px;
    width: 100% !important;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.plan-card__desc {
    margin: 24px 0 16px;
    font-size: 17px;
    line-height: 1.6;
    color: #000;
}

.plan-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.plan-card__old {
    color: #B0B0B0;
    text-decoration: line-through;
    font-size: 30px;
    font-weight: 700;
}

.plan-card__new {
    color: #4BAEE5;
    font-size: 30px;
    font-weight: 900;
}

.plan-card__unit-inline {
    color: #000;
    font-size: 14px;
    margin-left: 4px;
}

.plan-card__cta {
    margin-top: 24px;
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 12px;
    background: #4BAEE5;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.plan-card__cta:hover {
    background: #8ACAef;
    color: #FFF;
}

.plan-card__limit {
    margin-top: 8px;
    font-size: 14px;
    color: #000;
    display: flex;
    justify-content: center;
}

.plan-card__divider {
    border: none;
    border-top: 1px solid #E7E7E7;
    margin: 24px 0;
}

.plan-card__section-title {
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 12px;
}

.plan-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    color: #6D6D6D;
    line-height: 1.5;
}

.plan-card__list li::before {
    content: "✓";
    color: #4BAEE5;
    font-weight: 800;
    font-size: 16px;

    flex-shrink: 0;
    margin-top: 3px;
}

.plan-card__price {
    text-align: center;
    margin-bottom: 14px;
}

.plan-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.plan-card__name {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: #000;
}

.plan-card__badge {
    margin-top: 2.5%;
    width: 120px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px;
    border-radius: 8px;
    background: #E86B55;
    color: #fff;
    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-card__badge.is-fade {
    opacity: 0;
    transition: opacity 180ms ease;
}

.feature-table {
    height: var(--table-height, 668px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.feature-head,
.feature-group,
.feature-row {
    display: grid;
    grid-template-columns: 220px repeat(var(--plan-count), var(--plan-col-width));
}

.feature-head {
    border-bottom: none;
    display: grid;
    align-items: center;
    padding: 12px 18px;
    background: transparent;
}

.feature-head__title {
    font-size: 22px;
    font-weight: 900;
}

.feature-head__plan {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
}

.feature-body {
    height: 100%;
    overflow-y: auto;
}

.feature-group {
    display: grid;
}

.feature-row--head {
    position: sticky;
    top: 0;
    z-index: 2;
}

.feature-row--head .cell-left,
.feature-row--head .cell-plan {
    font-size: 22px;
    font-weight: 900;
    color: #000;
}

.feature-group__label {
    padding: 9px 18px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.feature-group__spacer {
    background: #fff;
}

.feature-row {
    display: grid;
    min-height: 44px;
}

.cell-left {
    border-top: 1px solid var(--line);
    padding: 6px 18px;
    display: flex;
    align-items: center;
    color: #6D6D6D;
}

.cell-plan {
    border-top: 1px solid var(--line);
    padding: 6px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-row:first-child .cell-left,
.feature-row:first-child .cell-plan {
    border-top: none;
}

.plan-base {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.feature-head__plan.plan-base {
    background: #ffffff;
}

.plan-pro {
    background: #F9FCFF;
}


.dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.val {
    color: var(--primary);
    font-weight: 900;
}

@media (max-width: 920px) {
    .pricing__content {
        flex-direction: column;
        gap: 18px;
    }

    .plan-card {
        width: 100%;
    }

    .feature-table__head,
    .feature-row {
        grid-template-columns: 1fr 140px;
    }
}