.pricing-page {
    --pricing-navy: #102958;
    --pricing-ink: #17213a;
    --pricing-blue: #1457d9;
    --pricing-blue-bright: #1764e8;
    --pricing-mint: #50d8aa;
    --pricing-muted: #68758d;
    --pricing-border: #dce5f2;
    --pricing-soft: #f4f7fc;
    overflow: hidden;
    color: var(--pricing-ink);
    background: #fff;
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

.pricing-page,
.pricing-page * {
    box-sizing: border-box;
}

.pricing-page-body #container_title {
    display: none;
}

.pricing-shell {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.pricing-hero {
    position: relative;
    min-height: 540px;
    padding-top: 152px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f7faff 0%, #fff 78%);
}

.pricing-hero::before {
    position: absolute;
    top: -330px;
    right: -190px;
    width: 820px;
    height: 820px;
    border: 1px solid rgba(20, 87, 217, .1);
    border-radius: 50%;
    content: "";
}

.pricing-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pricing-hero__orb--one {
    top: 120px;
    right: 12%;
    width: 330px;
    height: 330px;
    background: rgba(23, 100, 232, .055);
}

.pricing-hero__orb--two {
    top: 350px;
    right: 34%;
    width: 76px;
    height: 76px;
    background: rgba(80, 216, 170, .16);
}

.pricing-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    align-items: center;
    gap: 70px;
}

.pricing-hero h1 {
    margin: 0;
    color: var(--pricing-ink);
    font-size: clamp(50px, 4.3vw, 72px);
    font-weight: 850;
    line-height: 1.13;
    letter-spacing: -4.8px;
    word-break: keep-all;
}

.pricing-hero h1 strong {
    color: var(--pricing-blue);
    font-weight: 850;
}

.pricing-hero__copy p {
    margin: 30px 0 0;
    color: #5f6d85;
    font-size: 19px;
    font-weight: 550;
    line-height: 1.75;
    letter-spacing: -.7px;
    word-break: keep-all;
}

.pricing-hero__finder-link {
    display: inline-flex;
    height: 48px;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding: 0 18px;
    border: 1px solid #cbd9ef;
    border-radius: 12px;
    color: var(--pricing-blue);
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 69, 150, .08);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.4px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pricing-hero__finder-link:hover,
.pricing-hero__finder-link:focus-visible {
    color: var(--pricing-blue);
    border-color: var(--pricing-blue);
    box-shadow: 0 13px 28px rgba(20, 87, 217, .14);
    transform: translateY(-2px);
}

.pricing-hero__finder-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.pricing-hero__visual {
    position: relative;
    min-height: 300px;
}

.pricing-hero__ring {
    position: absolute;
    top: 0;
    right: 34px;
    display: grid;
    width: 248px;
    height: 248px;
    place-items: center;
    border: 1px solid #d9e5fa;
    border-radius: 50%;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 30px 70px rgba(20, 69, 150, .12);
    backdrop-filter: blur(10px);
}

.pricing-hero__ring::before,
.pricing-hero__ring::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.pricing-hero__ring::before {
    width: 190px;
    height: 190px;
    border: 1px dashed #b8cdf3;
}

.pricing-hero__ring::after {
    right: 18px;
    bottom: 23px;
    width: 34px;
    height: 34px;
    background: var(--pricing-mint);
    box-shadow: 0 9px 22px rgba(80, 216, 170, .38);
}

.pricing-hero__ring svg {
    width: 140px;
    height: 140px;
    fill: none;
    stroke: var(--pricing-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 10;
}

.pricing-hero__ring svg circle {
    fill: var(--pricing-blue);
    stroke: none;
}

.pricing-hero__mini-table {
    position: absolute;
    right: 225px;
    bottom: 4px;
    display: grid;
    width: 214px;
    height: 142px;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 15px;
    border: 1px solid #dbe5f3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(16, 41, 88, .13);
    transform: rotate(-4deg);
}

.pricing-hero__mini-table i {
    display: block;
    border-radius: 5px;
    background: #e8eef9;
}

.pricing-hero__mini-table i:nth-child(2),
.pricing-hero__mini-table i:nth-child(5),
.pricing-hero__mini-table i:nth-child(8) {
    background: #dce9ff;
}

.pricing-hero__mini-table i:nth-child(1),
.pricing-hero__mini-table i:nth-child(2),
.pricing-hero__mini-table i:nth-child(3) {
    background: var(--pricing-navy);
}

.pricing-tabs {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
}

.pricing-tabs__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--pricing-border);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -8px 40px rgba(18, 54, 116, .08);
}

.pricing-tabs a {
    position: relative;
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--pricing-border);
    color: #66738a;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.7px;
    transition: color .2s ease, background .2s ease;
}

.pricing-tabs a:first-child {
    border-left: 0;
}

.pricing-tabs a::after {
    position: absolute;
    right: 34%;
    bottom: 0;
    left: 34%;
    height: 4px;
    border-radius: 5px 5px 0 0;
    background: var(--pricing-blue);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

.pricing-tabs a:hover,
.pricing-tabs a:focus-visible,
.pricing-tabs a.is-active {
    color: var(--pricing-blue);
    background: #f7faff;
}

.pricing-tabs a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.pricing-section {
    padding: 100px 0 108px;
    scroll-margin-top: 118px;
    background: #fff;
}

.pricing-section--tinted {
    background: var(--pricing-soft);
}

.pricing-section--seller {
    background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}

.pricing-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 38px;
}

.pricing-section__head > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-section__number {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--pricing-blue);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(20, 87, 217, .22);
}

.pricing-section h2 {
    margin: 0;
    color: var(--pricing-ink);
    font-size: clamp(38px, 3vw, 50px);
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -3px;
}

.pricing-section__head p {
    max-width: 530px;
    margin: 0 0 4px;
    color: var(--pricing-muted);
    font-size: 16px;
    font-weight: 550;
    line-height: 1.6;
    letter-spacing: -.45px;
    text-align: right;
    word-break: keep-all;
}

.pricing-table-wrap {
    overflow: hidden;
    border: 1px solid #cfdbea;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(25, 55, 105, .09);
}

.pricing-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
}

.pricing-table__feature-col {
    width: 25%;
}

.pricing-table th,
.pricing-table td {
    border-left: 1px solid #e2e8f1;
    border-top: 1px solid #e2e8f1;
    text-align: center;
    vertical-align: middle;
}

.pricing-table tr > :first-child {
    border-left: 0;
}

.pricing-table thead th {
    height: 164px;
    padding: 25px 22px;
    border-top: 0;
    color: var(--pricing-ink);
    background: #fff;
}

.pricing-table thead th:first-child {
    color: #738098;
    background: #f5f8fc;
    font-size: 16px;
    font-weight: 800;
}

.pricing-table thead th.is-featured {
    position: relative;
    color: #fff;
    border-left-color: var(--pricing-blue);
    background: var(--pricing-blue);
}

.pricing-table thead th.is-featured::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--pricing-mint);
    content: "";
}

.pricing-table thead strong {
    display: block;
    font-size: 23px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -1.2px;
    word-break: keep-all;
}

.pricing-table thead span {
    display: block;
    margin-top: 17px;
    color: var(--pricing-blue);
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -.8px;
}

.pricing-table thead th.is-featured span {
    color: #fff;
}

.pricing-table thead small {
    display: block;
    margin-top: 7px;
    color: #7e8ba1;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
}

.pricing-table thead th.is-featured small {
    color: rgba(255, 255, 255, .72);
}

.pricing-table tbody th,
.pricing-table tbody td {
    min-height: 62px;
    height: 62px;
    padding: 14px 18px;
    color: #26334b;
    background: #fff;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
    letter-spacing: -.4px;
    word-break: keep-all;
}

.pricing-table tbody th {
    color: #4a5871;
    background: #f8fafd;
    font-weight: 750;
    text-align: left;
}

.pricing-table tbody td.is-featured {
    border-right: 1px solid rgba(20, 87, 217, .18);
    border-left-color: rgba(20, 87, 217, .3);
    background: #f7faff;
}

.pricing-table tbody tr.is-price-row th,
.pricing-table tbody tr.is-price-row td {
    color: var(--pricing-navy);
    background: #eef4ff;
    font-weight: 850;
}

.pricing-table tbody tr.is-price-row td.is-featured {
    color: var(--pricing-blue);
    background: #e1ecff;
}

.pricing-table tbody tr.is-final-price th,
.pricing-table tbody tr.is-final-price td {
    height: 82px;
    font-size: 18px;
}

.pricing-status {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
}

.pricing-status svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.pricing-status--yes {
    color: #087b56;
    background: #dcf8ee;
}

.pricing-status--no {
    color: #9da7b7;
    background: #edf0f4;
}

.pricing-contact-value {
    display: inline-flex;
    min-width: 54px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border: 1px solid #cad7e9;
    border-radius: 8px;
    color: #6f7e95;
    background: #fff;
    font-size: 12px;
    font-weight: 750;
}

.pricing-mobile-plans {
    display: none;
}

.pricing-business-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pricing-business-grid--operating {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-business-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid #d4deec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(25, 55, 105, .07);
}

.pricing-business-card > span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--pricing-blue);
    background: #edf4ff;
    font-size: 12px;
    font-weight: 800;
}

.pricing-business-card h3 {
    margin: 20px 0 8px;
    color: var(--pricing-ink);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -1px;
}

.pricing-business-card > strong {
    display: block;
    color: var(--pricing-blue);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: -.8px;
}

.pricing-business-card p {
    min-height: 52px;
    margin: 18px 0 10px;
    color: #4f5d73;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.65;
    word-break: keep-all;
}

.pricing-business-card small {
    display: block;
    color: #7a879a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    word-break: keep-all;
}

.pricing-module-link {
    display: inline-flex;
    margin-top: 16px;
    padding: 9px 12px;
    border-radius: 9px;
    color: #fff;
    background: var(--pricing-blue);
    font-size: 12px;
    font-weight: 800;
}

.pricing-business-card--locked {
    border-color: #b8c7dc;
    background: linear-gradient(145deg, #fff 0%, #f2f6fc 100%);
}

.pricing-business-card--locked > span {
    color: #42536c;
    background: #e2e9f3;
}

.pricing-business-card--locked > strong {
    color: #42536c;
}

.pricing-business-card--calculator {
    border-color: #9ebdf5;
    background: linear-gradient(145deg, #fff 0%, #eef5ff 100%);
}

.pricing-locked-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-module-link--secondary {
    color: var(--pricing-blue);
    background: #fff;
    box-shadow: inset 0 0 0 1px #9ebdf5;
}

.pricing-seller-grid {
    display: grid;
    max-width: 940px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.pricing-seller-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 34px;
    border: 1px solid #dedfe2;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(73, 54, 28, .08);
}

.pricing-seller-card.is-featured {
    border: 2px solid #c96808;
    box-shadow: 0 22px 56px rgba(169, 79, 5, .14);
}

.pricing-seller-card header > span {
    display: inline-flex;
    width: fit-content;
    min-height: 27px;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    color: #5b6577;
    background: #eef1f5;
    font-size: 11px;
    font-weight: 850;
}

.pricing-seller-card.is-featured header > span {
    color: #984705;
    background: #fff1df;
}

.pricing-seller-card h3 {
    margin: 18px 0 0;
    color: var(--pricing-ink);
    font-size: 26px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: -1.3px;
}

.pricing-seller-card header > strong {
    display: block;
    margin-top: 9px;
    color: #c15f08;
    font-size: 27px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -1.1px;
}

.pricing-seller-card header > p {
    min-height: 48px;
    margin: 13px 0 0;
    color: #657186;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    word-break: keep-all;
}

.pricing-seller-card ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 29px;
    padding: 24px 0 0;
    border-top: 1px solid #e8ebf0;
}

.pricing-seller-card li {
    position: relative;
    padding-left: 25px;
    color: #47546a;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

.pricing-seller-card li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #0d9165;
    content: "✓";
    font-weight: 900;
}

.pricing-seller-link {
    display: inline-flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 18px;
    border: 1px solid #d3d9e2;
    border-radius: 12px;
    color: var(--pricing-ink);
    background: #fff;
    font-size: 14px;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease;
}

.pricing-seller-card.is-featured .pricing-seller-link {
    color: #fff;
    border-color: #c96808;
    background: #c96808;
    box-shadow: 0 13px 27px rgba(169, 79, 5, .2);
}

.pricing-seller-link:hover,
.pricing-seller-link:focus-visible {
    color: var(--pricing-ink);
    box-shadow: 0 12px 26px rgba(49, 61, 80, .1);
    transform: translateY(-2px);
}

.pricing-seller-card.is-featured .pricing-seller-link:hover,
.pricing-seller-card.is-featured .pricing-seller-link:focus-visible {
    color: #fff;
}

.pricing-seller-boundary {
    display: grid;
    max-width: 940px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
    padding: 21px 24px;
    border: 1px solid #ead9c3;
    border-radius: 16px;
    background: #fff;
}

.pricing-seller-boundary strong {
    color: #984705;
    font-size: 14px;
    font-weight: 850;
}

.pricing-seller-boundary p {
    margin: 0;
    color: #68758a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
    word-break: keep-all;
}

.pricing-seller-boundary a {
    color: #a84f05;
    font-size: 12px;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.pricing-seller-account-note {
    max-width: 940px;
    margin: 18px auto 0;
    color: #7a8495;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
    word-break: keep-all;
}

.pricing-note {
    padding: 26px 0;
    border-top: 1px solid var(--pricing-border);
    border-bottom: 1px solid var(--pricing-border);
    background: #f8fafd;
}

@media (max-width: 1080px) {
    .pricing-business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pricing-business-grid {
        grid-template-columns: 1fr;
    }

    .pricing-business-card {
        padding: 23px;
    }

    .pricing-business-card p {
        min-height: 0;
    }
}

.pricing-note .pricing-shell {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-note svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    margin-top: 1px;
    fill: none;
    stroke: var(--pricing-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.pricing-note p {
    margin: 0;
    color: #69768c;
    font-size: 14px;
    font-weight: 550;
    line-height: 1.65;
    letter-spacing: -.35px;
    word-break: keep-all;
}

.pricing-cta {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    color: #fff;
    background: var(--pricing-navy);
}

.pricing-cta::before {
    position: absolute;
    top: -190px;
    right: 4%;
    width: 440px;
    height: 440px;
    border: 54px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
    content: "";
}

.pricing-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pricing-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 2.9vw, 46px);
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -2.6px;
}

.pricing-cta p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    font-weight: 550;
    line-height: 1.65;
    letter-spacing: -.45px;
    word-break: keep-all;
}

.pricing-cta a {
    display: inline-flex;
    min-width: 180px;
    height: 62px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 14px;
    color: #fff;
    background: var(--pricing-blue-bright);
    box-shadow: 0 15px 34px rgba(2, 15, 49, .28);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -.5px;
    transition: background .2s ease, transform .2s ease;
}

.pricing-cta a:hover,
.pricing-cta a:focus-visible {
    color: #fff;
    background: #2875f0;
    transform: translateY(-2px);
}

.pricing-cta a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@media (max-width: 1050px) {
    .pricing-hero__inner {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 24px;
    }

    .pricing-hero__mini-table {
        right: 150px;
    }

    .pricing-table thead strong {
        font-size: 19px;
    }

    .pricing-table tbody th,
    .pricing-table tbody td {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 13px;
    }
}

@media (max-width: 760px) {
    .pricing-shell {
        width: calc(100% - 36px);
    }

    .pricing-hero {
        min-height: 520px;
        padding-top: 124px;
    }

    .pricing-hero::before {
        top: -180px;
        right: -230px;
        width: 520px;
        height: 520px;
    }

    .pricing-hero__orb--one {
        top: 235px;
        right: -80px;
        width: 250px;
        height: 250px;
    }

    .pricing-hero__orb--two {
        display: none;
    }

    .pricing-hero__inner {
        display: block;
    }

    .pricing-hero h1 {
        font-size: clamp(39px, 11.2vw, 50px);
        line-height: 1.16;
        letter-spacing: -3.1px;
    }

    .pricing-hero h1 br {
        display: none;
    }

    .pricing-hero__copy p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .pricing-hero__copy p br {
        display: none;
    }

    .pricing-hero__finder-link {
        height: 44px;
        margin-top: 18px;
        padding: 0 15px;
        font-size: 13px;
    }

    .pricing-hero__visual {
        display: none;
    }

    .pricing-hero__ring {
        top: 8px;
        right: 0;
        width: 150px;
        height: 150px;
    }

    .pricing-hero__ring::before {
        width: 118px;
        height: 118px;
    }

    .pricing-hero__ring::after {
        right: 9px;
        bottom: 15px;
        width: 22px;
        height: 22px;
    }

    .pricing-hero__ring svg {
        width: 82px;
        height: 82px;
    }

    .pricing-hero__mini-table {
        right: 89px;
        bottom: 0;
        width: 126px;
        height: 88px;
        padding: 9px;
        border-radius: 12px;
    }

    .pricing-tabs__inner {
        width: calc(100% - 24px);
        border-radius: 14px 14px 0 0;
    }

    .pricing-tabs a {
        min-height: 66px;
        font-size: 14px;
    }

    .pricing-section {
        padding: 72px 0 80px;
        scroll-margin-top: 64px;
    }

    .pricing-section__head {
        display: block;
        margin-bottom: 28px;
    }

    .pricing-section__head > div {
        gap: 13px;
    }

    .pricing-section__number {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .pricing-section h2 {
        font-size: 36px;
        letter-spacing: -2.3px;
    }

    .pricing-section__head p {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .pricing-seller-grid {
        grid-template-columns: 1fr;
    }

    .pricing-seller-card {
        padding: 27px 23px;
    }

    .pricing-seller-card header > p {
        min-height: 0;
    }

    .pricing-seller-boundary {
        display: block;
        padding: 20px;
    }

    .pricing-seller-boundary p {
        margin-top: 9px;
    }

    .pricing-seller-boundary a {
        display: inline-flex;
        margin-top: 12px;
    }

    .pricing-seller-account-note {
        text-align: left;
    }

    .pricing-table-wrap {
        display: none;
    }

    .pricing-mobile-plans {
        display: grid;
        gap: 18px;
    }

    .pricing-plan-card {
        overflow: hidden;
        border: 1px solid #d7e1ef;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 16px 38px rgba(25, 55, 105, .08);
    }

    .pricing-plan-card.is-featured {
        border: 2px solid var(--pricing-blue);
        box-shadow: 0 20px 44px rgba(20, 87, 217, .14);
    }

    .pricing-plan-card header {
        padding: 25px 22px 22px;
        border-bottom: 1px solid #e1e8f2;
        background: #f8faff;
    }

    .pricing-plan-card.is-featured header {
        color: #fff;
        border-bottom-color: var(--pricing-blue);
        background: var(--pricing-blue);
    }

    .pricing-plan-card h3 {
        margin: 0;
        color: var(--pricing-ink);
        font-size: 22px;
        font-weight: 850;
        line-height: 1.3;
        letter-spacing: -1.1px;
    }

    .pricing-plan-card.is-featured h3 {
        color: #fff;
    }

    .pricing-plan-card header > strong {
        display: block;
        margin-top: 12px;
        color: var(--pricing-blue);
        font-size: 19px;
        font-weight: 850;
        letter-spacing: -.7px;
    }

    .pricing-plan-card.is-featured header > strong {
        color: #fff;
    }

    .pricing-plan-card header > span {
        display: block;
        margin-top: 5px;
        color: #7a879c;
        font-size: 12px;
        font-weight: 650;
    }

    .pricing-plan-card.is-featured header > span {
        color: rgba(255, 255, 255, .72);
    }

    .pricing-plan-card dl {
        margin: 0;
    }

    .pricing-plan-card dl > div {
        display: grid;
        min-height: 57px;
        grid-template-columns: minmax(0, 1fr) minmax(105px, auto);
        align-items: center;
        gap: 14px;
        padding: 11px 18px;
        border-top: 1px solid #edf1f6;
    }

    .pricing-plan-card dl > div:first-child {
        border-top: 0;
    }

    .pricing-plan-card dl > div.is-price-row {
        background: #eef4ff;
    }

    .pricing-plan-card dt,
    .pricing-plan-card dd {
        margin: 0;
        font-size: 13px;
        line-height: 1.45;
        letter-spacing: -.35px;
        word-break: keep-all;
    }

    .pricing-plan-card dt {
        color: #657189;
        font-weight: 650;
    }

    .pricing-plan-card dd {
        color: #25324a;
        font-weight: 800;
        text-align: right;
    }

    .pricing-note {
        padding: 22px 0;
    }

    .pricing-note p {
        font-size: 12px;
    }

    .pricing-cta {
        padding: 62px 0 68px;
    }

    .pricing-cta__inner {
        display: block;
    }

    .pricing-cta h2 {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -2px;
    }

    .pricing-cta p {
        font-size: 14px;
    }

    .pricing-cta a {
        width: 100%;
        height: 58px;
        margin-top: 28px;
    }
}

@media (max-width: 380px) {
    .pricing-shell {
        width: calc(100% - 28px);
    }

    .pricing-hero {
        padding-top: 112px;
    }

    .pricing-hero h1 {
        font-size: 37px;
    }

    .pricing-tabs a {
        font-size: 13px;
    }

    .pricing-plan-card dl > div {
        grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-page *,
    .pricing-page *::before,
    .pricing-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

.pricing-pay-link {
    display: inline-flex;
    min-width: 122px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
    padding: 0 14px;
    border-radius: 10px;
    color: #fff;
    background: #1457d9;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.pricing-table th.is-featured .pricing-pay-link {
    color: #1457d9;
    background: #fff;
}

.pricing-plan-card .pricing-pay-link {
    width: 100%;
    margin-top: 18px;
}

.pricing-plan-card.is-featured .pricing-pay-link {
    color: #1457d9;
    background: #fff;
}
