/* Pricing interaction overrides. Page buttons use the page theme while plan CTAs use
   the active section theme so CMS color overrides remain readable. */
.header-main.sticky-header {
    box-shadow: none !important;
    position: static !important;
    top: auto !important;
}

html {
    scroll-behavior: smooth;
}

.mwp-pricing-section-nav {
    background: var(--mwp-bg);
    border-bottom: 1px solid var(--mwp-border);
    position: sticky;
    top: 0;
    z-index: 900;
}

.mwp-pricing-section-nav-inner {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 24px;
    scrollbar-color: var(--mwp-border) transparent;
    scrollbar-width: thin;
    width: 100%;
}

.mwp-pricing-section-nav-inner.is-overflowing {
    justify-content: flex-start;
}

.mwp-pricing-section-nav-inner::-webkit-scrollbar {
    height: 6px;
}

.mwp-pricing-section-nav-inner::-webkit-scrollbar-track {
    background: transparent;
}

.mwp-pricing-section-nav-inner::-webkit-scrollbar-thumb {
    background: var(--mwp-border);
    border-radius: 999px;
}

.mwp-pricing-section-nav a {
    background: var(--mwp-surface);
    border: 1px solid var(--mwp-border);
    border-radius: 999px;
    color: var(--mwp-muted);
    flex-shrink: 0;
    font-size: .85rem;
    font-weight: 600;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
}

.mwp-pricing-section-nav a:hover,
.mwp-pricing-section-nav a:focus {
    border-color: var(--mwp-accent);
    color: var(--mwp-text);
}

.mwp-pricing-section-nav a.active {
    background: var(--mwp-accent);
    border-color: var(--mwp-accent);
    color: var(--mwp-bg);
}

.mwp-pricing-section {
    scroll-margin-top: 76px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 640px) {
    .mwp-pricing-section-nav-inner {
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Keep selected add-ons readable in the checkout review instead of collapsing them into one line. */
.mwp-checkout-review > .mwp-review-addons-row {
    align-items: flex-start;
    padding-bottom: 12px;
    padding-top: 12px;
}

.mwp-review-addons-label {
    flex: 0 0 auto;
    padding-top: 10px;
}

.mwp-review-addon-list {
    display: grid;
    gap: 8px;
    max-width: 560px;
    width: 68%;
}

.mwp-review-addon-item {
    align-items: center;
    background: var(--mwp-section-bg);
    border: 1px solid var(--mwp-section-border);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 10px 12px;
}

.mwp-review-addon-details {
    min-width: 0;
}

.mwp-review-addon-name {
    display: block;
    line-height: 1.3;
}

.mwp-review-addon-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.mwp-review-addon-badges span {
    border: 1px solid var(--mwp-section-border);
    color: var(--mwp-section-muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 2px 6px;
    text-transform: uppercase;
}

.mwp-review-addon-amount {
    color: var(--mwp-section-accent);
    flex: 0 0 auto;
    text-align: right;
}

.mwp-review-addon-empty {
    color: var(--mwp-section-muted);
    padding: 10px 0;
    text-align: right;
}

@media (max-width: 640px) {
    .mwp-checkout-review > .mwp-review-addons-row {
        display: block;
    }

    .mwp-review-addons-label {
        display: block;
        padding: 0 0 8px;
    }

    .mwp-review-addon-list {
        max-width: none;
        width: 100%;
    }

    .mwp-review-addon-item {
        align-items: flex-start;
    }
}

/* Clean, neutral checkout surface and comparison-table layout. */
.mwp-pricing-section-layout--comparison {
    grid-template-columns: minmax(0, 1fr) !important;
}

.mwp-checkout-wizard {
    --mwp-section-accent: #151515;
    --mwp-section-bg: #ffffff;
    --mwp-section-surface: #f7f7f7;
    --mwp-section-text: #1a1a1a;
    --mwp-section-muted: #626262;
    --mwp-section-border: #d8d8d8;
    background: var(--mwp-section-bg);
    border: 1px solid var(--mwp-section-border);
    color: var(--mwp-section-text);
    margin: 0 auto;
    max-width: 1120px;
    min-width: 0;
    padding: 30px;
    width: 100%;
}

.mwp-checkout-heading {
    border-bottom: 1px solid var(--mwp-section-border);
    margin-bottom: 22px;
    padding-bottom: 20px;
}

.mwp-checkout-heading-label {
    color: var(--mwp-section-muted);
    display: block;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.mwp-checkout-heading h2 {
    color: var(--mwp-section-text);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.08;
    margin: 0;
}

.mwp-checkout-heading p {
    color: var(--mwp-section-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin: 9px 0 0;
}

.mwp-checkout-wizard .mwp-wizard-progress {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
}

.mwp-checkout-wizard .mwp-wizard-progress--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mwp-checkout-wizard .mwp-wizard-progress--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mwp-checkout-wizard .mwp-wizard-progress li {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid var(--mwp-section-border);
    border-radius: 6px;
    color: var(--mwp-section-muted);
    display: flex;
    font-size: .76rem;
    gap: 9px;
    justify-content: flex-start;
    line-height: 1.2;
    min-height: 58px;
    min-width: 0;
    padding: 0;
    text-align: left;
    transform: none;
}

/* Padding/alignment live on the button, not the li, so a completed step is clickable edge to edge. */
.mwp-checkout-wizard .mwp-wizard-progress-link {
    gap: 9px;
    justify-content: flex-start;
    padding: 10px 12px;
    text-align: left;
}

.mwp-checkout-wizard .mwp-wizard-progress li.is-complete .mwp-wizard-progress-link:hover,
.mwp-checkout-wizard .mwp-wizard-progress li.is-complete .mwp-wizard-progress-link:focus-visible {
    background: #f2f2f2;
}

.mwp-checkout-wizard .mwp-wizard-progress-link > span:last-child {
    min-width: 0;
    white-space: nowrap;
}

.mwp-checkout-wizard .mwp-wizard-progress li.is-active {
    background: #eeeeee;
    border-color: #1a1a1a;
    box-shadow: inset 0 3px 0 #1a1a1a;
    color: #111111;
    transform: none;
}

.mwp-checkout-wizard .mwp-wizard-progress li.is-complete {
    background: #ffffff;
    border-color: #767676;
    color: #242424;
}

.mwp-checkout-wizard .mwp-step-number {
    background: #dedede;
    color: #2c2c2c;
    flex: 0 0 28px;
}

.mwp-checkout-wizard .mwp-wizard-progress li.is-active .mwp-step-number,
.mwp-checkout-wizard .mwp-wizard-progress li.is-complete .mwp-step-number {
    background: #151515;
    color: #ffffff;
}

.mwp-checkout-wizard .mwp-plan-step-title {
    color: var(--mwp-section-text);
    font-size: 1.65rem;
    margin: 0 0 16px;
}

.mwp-checkout-wizard .mwp-comparison-wrap {
    background: #ffffff;
    border: 1px solid #cfcfcf;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: #a0a0a0 #eeeeee;
    width: 100%;
}

.mwp-checkout-wizard .mwp-comparison-wrap:focus {
    outline: 2px solid #151515;
    outline-offset: 3px;
}

.mwp-checkout-wizard .mwp-comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    color: #1b1b1b;
    margin: 0;
    table-layout: fixed;
    width: 100%;
}

.mwp-checkout-wizard .mwp-comparison-table caption {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.mwp-checkout-wizard .mwp-comparison-feature-column {
    width: 300px;
}

.mwp-checkout-wizard .mwp-comparison-table th,
.mwp-checkout-wizard .mwp-comparison-table td {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    padding: 14px 18px;
    text-align: left;
    vertical-align: middle;
}

.mwp-checkout-wizard .mwp-comparison-table tr > *:last-child {
    border-right: 0;
}

.mwp-checkout-wizard .mwp-comparison-table thead th {
    background: #ffffff;
    color: #161616;
    padding-bottom: 16px;
    padding-top: 17px;
    text-align: center;
    vertical-align: top;
}

.mwp-checkout-wizard .mwp-comparison-table thead th:first-child {
    text-align: left;
}

.mwp-checkout-wizard .mwp-comparison-feature-heading {
    display: block;
    font-size: .82rem;
    font-weight: 750;
    letter-spacing: .08em;
    padding-top: 3px;
    text-transform: uppercase;
}

.mwp-checkout-wizard .mwp-comparison-plan-name {
    color: #111111;
    font-size: 1.22rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.mwp-checkout-wizard .mwp-comparison-plan-price {
    color: #111111;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.mwp-checkout-wizard .mwp-comparison-plan-price small {
    color: #686868;
    font-size: .72rem;
    font-weight: 500;
    margin-left: 3px;
}

.mwp-checkout-wizard .mwp-comparison-plan-setup {
    color: #646464;
    font-size: .76rem;
    margin-top: 5px;
    opacity: 1;
}

.mwp-checkout-wizard .mwp-comparison-select {
    align-items: center;
    background: #ffffff;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    cursor: pointer;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 750;
    gap: 7px;
    justify-content: center;
    letter-spacing: .05em;
    margin-top: 13px;
    min-height: 36px;
    padding: 7px 11px;
    text-transform: uppercase;
}

.mwp-checkout-wizard .mwp-comparison-select input {
    accent-color: #151515;
    margin: 0;
}

.mwp-checkout-wizard .mwp-comparison-table tbody th {
    color: #242424;
    font-size: .92rem;
    font-weight: 650;
    line-height: 1.35;
    text-align: left;
}

.mwp-checkout-wizard .mwp-comparison-feature-desc {
    color: #777777;
    font-size: .74rem;
    line-height: 1.35;
    margin-top: 4px;
    opacity: 1;
}

.mwp-checkout-wizard .mwp-comparison-check {
    color: #353535;
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.mwp-checkout-wizard .mwp-comparison-check.is-highlight {
    color: #111111;
    font-weight: 750;
}

.mwp-checkout-wizard .mwp-comparison-group th {
    background: #eeeeee;
    color: #191919;
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .08em;
    padding: 10px 18px;
    position: static;
    text-transform: uppercase;
}

.mwp-checkout-wizard .mwp-comparison-table [data-comparison-plan-id].is-selected-plan {
    background: #f3f3f3;
}

.mwp-checkout-wizard .mwp-comparison-table thead [data-comparison-plan-id].is-selected-plan {
    box-shadow: inset 0 4px 0 #151515;
}

.mwp-checkout-wizard .mwp-comparison-table thead [data-comparison-plan-id].is-selected-plan .mwp-comparison-select {
    background: #151515;
    color: #ffffff;
}

.mwp-checkout-wizard .mwp-comparison-table tbody tr:not(.mwp-comparison-group):hover th,
.mwp-checkout-wizard .mwp-comparison-table tbody tr:not(.mwp-comparison-group):hover td {
    background: #fafafa;
}

@media (min-width: 768px) {
    .mwp-checkout-wizard .mwp-comparison-table thead th:first-child,
    .mwp-checkout-wizard .mwp-comparison-table tbody th[scope="row"] {
        left: 0;
        position: sticky;
        z-index: 2;
    }

    .mwp-checkout-wizard .mwp-comparison-table thead th:first-child {
        z-index: 3;
    }
}

@media (max-width: 820px) {
    .mwp-checkout-wizard .mwp-wizard-progress--3,
    .mwp-checkout-wizard .mwp-wizard-progress--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mwp-checkout-wizard .mwp-wizard-progress-link > span:last-child {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .mwp-checkout-wizard {
        padding: 18px 16px;
    }

    .mwp-checkout-heading {
        margin-bottom: 18px;
        padding-bottom: 16px;
    }

    .mwp-checkout-heading h2 {
        font-size: 1.85rem;
    }

    .mwp-checkout-wizard .mwp-wizard-progress {
        gap: 7px;
        margin-bottom: 20px;
    }

    .mwp-checkout-wizard .mwp-wizard-progress li {
        flex-direction: row;
        font-size: .68rem;
        gap: 7px;
        min-height: 54px;
        padding: 0;
    }

    .mwp-checkout-wizard .mwp-wizard-progress-link {
        gap: 7px;
        padding: 8px;
    }

    .mwp-checkout-wizard .mwp-step-number {
        flex-basis: 24px;
        height: 24px;
        width: 24px;
    }

    .mwp-checkout-wizard .mwp-plan-step-title {
        font-size: 1.4rem;
    }

    .mwp-checkout-wizard .mwp-comparison-feature-column {
        width: 230px;
    }

    .mwp-checkout-wizard .mwp-comparison-table th,
    .mwp-checkout-wizard .mwp-comparison-table td {
        padding: 12px 14px;
    }
}

.mwp-pricing-button {
    background: var(--mwp-accent);
    border-color: var(--mwp-accent);
    color: var(--mwp-bg);
    font-family: inherit;
    font-size: .95rem;
}

.mwp-pricing-button:hover,
.mwp-pricing-button:focus {
    color: var(--mwp-bg);
}

.mwp-pricing-button--secondary {
    background: transparent;
    color: var(--mwp-text);
}

.mwp-pricing-button--secondary:hover,
.mwp-pricing-button--secondary:focus {
    color: var(--mwp-text);
}

.mwp-plan-cta {
    appearance: none;
    background: var(--mwp-section-accent);
    border-color: var(--mwp-section-accent);
    border-radius: 0;
    color: var(--mwp-section-bg);
    cursor: pointer;
    font-family: inherit;
    font-size: .95rem;
    line-height: 1.2;
}

.mwp-plan-cta:hover,
.mwp-plan-cta:focus {
    color: var(--mwp-section-bg);
}

.mwp-plan-cta--disabled,
.mwp-plan-cta--disabled:hover {
    background: transparent;
    border-color: var(--mwp-section-border);
    color: var(--mwp-section-muted);
    cursor: not-allowed;
    transform: none;
}

.mwp-pricing-link {
    font-size: .95rem;
}

.mwp-pricing-checkout-form {
    margin: 0;
}

.mwp-pricing-terms {
    align-items: flex-start;
    background: var(--mwp-section-surface);
    border: 1px solid var(--mwp-section-border);
    color: var(--mwp-section-muted);
    display: flex;
    gap: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 16px 18px;
}

.mwp-pricing-terms input {
    accent-color: var(--mwp-section-accent);
    margin-top: .3em;
}

.mwp-pricing-terms a {
    color: var(--mwp-section-accent);
}

.mwp-pricing-alert {
    background: #321715;
    border: 1px solid #b42318;
    color: var(--mwp-text);
    margin: 0 auto 24px;
    max-width: 900px;
    padding: 14px 18px;
    text-align: left;
}

.mwp-wizard-progress{display:grid;grid-template-columns:repeat(3,1fr);list-style:none;margin:0 0 28px;padding:0}.mwp-wizard-progress li{border-bottom:3px solid var(--mwp-section-border);color:var(--mwp-section-muted);font-size:.82rem;font-weight:700;padding:12px;text-align:center;text-transform:uppercase}.mwp-wizard-progress li.active{border-color:var(--mwp-section-accent);color:var(--mwp-section-accent)}.mwp-wizard-step>h3{font-size:1.5rem;margin:0 0 22px}.mwp-wizard-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:26px}.mwp-wizard-actions .mwp-plan-cta,.mwp-wizard-actions .mwp-pricing-button{margin-top:0;width:auto}.mwp-plan-selector{background:var(--mwp-section-bg);border:1px solid var(--mwp-section-accent);color:var(--mwp-section-accent);display:block;font-size:.82rem;font-weight:700;margin-bottom:18px;padding:10px;text-align:center;text-transform:uppercase}.mwp-wizard-radio input{accent-color:var(--mwp-section-accent);margin-right:8px}.mwp-plan-card:has(.mwp-plan-selector input:checked),.mwp-connection-choice:has(input:checked){border-color:var(--mwp-section-accent);box-shadow:0 0 0 2px var(--mwp-section-accent)}.mwp-connection-choice{cursor:pointer;position:relative}.mwp-connection-choice>input{accent-color:var(--mwp-section-accent);left:18px;position:absolute;top:18px}.mwp-connection-choice .mwp-connection-card-body{padding-top:48px}.mwp-connection-choice.is-custom{cursor:default;opacity:.8}.mwp-checkout-review{background:var(--mwp-section-surface);border:1px solid var(--mwp-section-border);padding:20px}.mwp-checkout-review>div{display:flex;gap:20px;justify-content:space-between;padding:8px 0}.mwp-checkout-review>div.total{border-top:1px solid var(--mwp-section-border);color:var(--mwp-section-accent);font-size:1.15rem;margin-top:8px;padding-top:14px}@media(max-width:640px){.mwp-wizard-progress li{font-size:.68rem;padding:9px 4px}.mwp-wizard-actions{align-items:stretch;flex-direction:column}.mwp-wizard-actions .mwp-plan-cta,.mwp-wizard-actions .mwp-pricing-button{width:100%}}

/* Wizard clarity, motion, and themed multi-select connection methods. */
.mwp-wizard-progress { gap: 12px; }
/* The li is now just the box: its padding/alignment moved to the button inside it so a completed
   step is clickable across its whole surface (see .mwp-wizard-progress-link below). */
.mwp-wizard-progress li { align-items: stretch; border: 1px solid var(--mwp-section-border); border-radius: 8px; display: flex; gap: 10px; justify-content: center; padding: 0; transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.mwp-wizard-progress-link { align-items: center; background: none; border: 0; border-radius: inherit; color: inherit; display: flex; font: inherit; gap: 10px; justify-content: center; letter-spacing: inherit; padding: 13px 12px; text-align: center; text-transform: inherit; transition: background-color .2s ease; width: 100%; }
.mwp-wizard-progress-link:disabled { cursor: default; opacity: 1; }
.mwp-wizard-progress li.is-complete .mwp-wizard-progress-link { cursor: pointer; }
.mwp-wizard-progress li.is-complete .mwp-wizard-progress-link:hover,
.mwp-wizard-progress li.is-complete .mwp-wizard-progress-link:focus-visible { background: color-mix(in srgb, var(--mwp-section-accent) 12%, transparent); }
@media (max-width: 640px) { .mwp-wizard-progress-link { padding: 9px 4px; } }
.mwp-wizard-progress li.is-active { background: color-mix(in srgb, var(--mwp-section-accent) 13%, var(--mwp-section-surface)); border-color: var(--mwp-section-accent); color: var(--mwp-section-accent); transform: translateY(-2px); }
.mwp-wizard-progress li.is-complete { border-color: color-mix(in srgb, var(--mwp-section-accent) 65%, var(--mwp-section-border)); color: var(--mwp-section-text); }
.mwp-step-number { align-items: center; background: var(--mwp-section-border); border-radius: 50%; display: inline-flex; flex: 0 0 28px; height: 28px; justify-content: center; transition: background-color .2s ease, color .2s ease; }
.mwp-wizard-progress li.is-active .mwp-step-number { background: var(--mwp-section-accent); color: var(--mwp-section-bg); }
.mwp-wizard-progress li.is-complete .mwp-step-number { background: var(--mwp-section-accent); color: var(--mwp-section-bg); }
.mwp-wizard-progress li.is-complete .mwp-step-number::before { content: "\2713"; }
.mwp-wizard-progress li.is-complete .mwp-step-number { font-size: 0; }
.mwp-wizard-progress li.is-complete .mwp-step-number::before { font-size: .9rem; }
.mwp-wizard-step { will-change: opacity, transform; }
.mwp-wizard-step.is-entering-forward { animation: mwpStepInForward .26s ease both; }
.mwp-wizard-step.is-entering-back { animation: mwpStepInBack .26s ease both; }
.mwp-wizard-step.is-leaving-forward { animation: mwpStepOutForward .26s ease both; }
.mwp-wizard-step.is-leaving-back { animation: mwpStepOutBack .26s ease both; }
.mwp-wizard-step-intro { color: var(--mwp-section-muted); margin: -10px 0 24px; }
@keyframes mwpStepInForward { from { opacity: 0; transform: translateX(34px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mwpStepOutForward { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-26px); } }
@keyframes mwpStepInBack { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mwpStepOutBack { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(26px); } }
.mwp-connection-choice > input[type="checkbox"] { height: 1px; left: 20px; opacity: 0; position: absolute; top: 20px; width: 1px; }
.mwp-connection-check { align-items: center; background: var(--mwp-section-bg); border: 2px solid var(--mwp-section-border); border-radius: 4px; display: inline-flex; height: 22px; justify-content: center; left: 18px; position: absolute; top: 18px; transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease; width: 22px; z-index: 2; }
.mwp-connection-check::after { color: var(--mwp-section-bg); content: "\2713"; font-size: .85rem; font-weight: 800; opacity: 0; transform: scale(.65); transition: opacity .15s ease, transform .15s ease; }
.mwp-connection-choice:hover .mwp-connection-check { border-color: var(--mwp-section-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--mwp-section-accent) 18%, transparent); }
.mwp-connection-choice > input:checked + input + .mwp-connection-check,
.mwp-connection-choice > input:checked + .mwp-connection-check { background: var(--mwp-section-accent); border-color: var(--mwp-section-accent); }
.mwp-connection-choice > input:checked + input + .mwp-connection-check::after,
.mwp-connection-choice > input:checked + .mwp-connection-check::after { opacity: 1; transform: scale(1); }
.mwp-connection-choice.is-mandatory { cursor: default; }
.mwp-connection-choice.is-mandatory .mwp-connection-check { box-shadow: none; }
.mwp-connection-required { color: var(--mwp-section-accent); display: block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; margin-bottom: 8px; text-transform: uppercase; }
.mwp-connection-required i { margin-right: 5px; }
.mwp-checkout-review .js-review-method { max-width: 60%; text-align: right; }
@media (prefers-reduced-motion: reduce) { .mwp-wizard-step.is-entering-forward,.mwp-wizard-step.is-entering-back,.mwp-wizard-step.is-leaving-forward,.mwp-wizard-step.is-leaving-back { animation: none; } }
@media(max-width:640px){.mwp-wizard-progress{gap:6px}.mwp-wizard-progress li{flex-direction:column;gap:5px;line-height:1.2}.mwp-step-number{flex-basis:24px;height:24px;width:24px}.mwp-checkout-review .js-review-method{max-width:55%}}

/* Compact checkout cards keep the complete plan and connection choices visible with less scrolling. */
.mwp-checkout-wizard .mwp-wizard-progress {
    margin-bottom: 20px;
}

.mwp-checkout-wizard .mwp-wizard-progress li {
    padding: 10px;
}

.mwp-checkout-wizard .mwp-wizard-step > h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.mwp-checkout-wizard .mwp-wizard-step-intro {
    line-height: 1.45;
    margin: -4px 0 16px;
}

.mwp-checkout-wizard .mwp-plan-list {
    gap: 14px;
}

.mwp-checkout-wizard .mwp-plan-card {
    padding: 18px;
}

.mwp-checkout-wizard .mwp-plan-card::before {
    left: 18px;
    right: 18px;
}

.mwp-checkout-wizard .mwp-plan-selector {
    margin-bottom: 12px;
    padding: 8px 10px;
}

.mwp-checkout-wizard .mwp-plan-name {
    font-size: 1.25rem;
    line-height: 1.2;
}

.mwp-checkout-wizard .mwp-plan-description {
    font-size: .9rem;
    line-height: 1.4;
    margin-top: 6px;
}

.mwp-checkout-wizard .mwp-plan-description p {
    margin-bottom: .35em;
}

.mwp-checkout-wizard .mwp-plan-monthly {
    margin-top: 12px;
}

.mwp-checkout-wizard .mwp-plan-amount {
    font-size: 2.15rem;
}

.mwp-checkout-wizard .mwp-plan-period {
    font-size: .9rem;
    margin-left: 5px;
}

.mwp-checkout-wizard .mwp-plan-costs {
    font-size: .9rem;
    margin-top: 12px;
    padding: 6px 0;
}

.mwp-checkout-wizard .mwp-plan-costs div {
    padding: 2px 0;
}

.mwp-checkout-wizard .mwp-plan-costs dd {
    font-size: 1.05rem;
    line-height: 1.25;
}

.mwp-checkout-wizard .mwp-plan-costs small {
    display: inline;
    font-size: .78rem;
    margin-left: 4px;
}

.mwp-checkout-wizard .mwp-plan-due {
    margin-top: 10px;
}

.mwp-checkout-wizard .mwp-plan-due strong {
    font-size: 1.35rem;
}

.mwp-checkout-wizard .mwp-plan-due-detail,
.mwp-checkout-wizard .mwp-plan-renewal {
    font-size: .78rem;
    line-height: 1.35;
    margin-top: 4px;
}

.mwp-checkout-wizard .mwp-plan-features {
    display: grid;
    gap: 5px 16px;
    grid-template-columns: 1fr;
    margin: 12px 0 0;
}

.mwp-checkout-wizard .mwp-plan-features li {
    font-size: .84rem;
    gap: 7px;
    line-height: 1.3;
    margin: 0;
}

.mwp-checkout-wizard .mwp-wizard-actions {
    margin-top: 16px;
}

.mwp-checkout-wizard .mwp-wizard-actions .mwp-plan-cta,
.mwp-checkout-wizard .mwp-wizard-actions .mwp-pricing-button {
    min-height: 44px;
    padding: 10px 20px;
}

.mwp-checkout-wizard .mwp-connection-grid--selectable {
    gap: 14px;
}

.mwp-checkout-wizard .mwp-connection-choice .mwp-connection-card-body {
    padding: 18px 58px 18px 18px;
}

.mwp-checkout-wizard .mwp-connection-choice .mwp-connection-check {
    left: auto;
    right: 18px;
    top: 18px;
}

.mwp-checkout-wizard .mwp-connection-choice > input[type="checkbox"] {
    left: auto;
    right: 20px;
    top: 20px;
}

.mwp-checkout-wizard .mwp-connection-choice h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 5px 0;
}

.mwp-checkout-wizard .mwp-connection-choice .mwp-connection-price {
    font-size: .95rem;
    margin-bottom: 8px;
}

.mwp-checkout-wizard .mwp-connection-choice p {
    font-size: .88rem;
    line-height: 1.4;
    margin: 0 0 10px;
}

.mwp-checkout-wizard .mwp-connection-choice small {
    font-size: .8rem;
}

.mwp-checkout-wizard .mwp-connection-required {
    margin-bottom: 5px;
    padding-right: 4px;
}

.mwp-checkout-wizard .mwp-custom-quote-link {
    display: block;
    font-size: .88rem;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .mwp-checkout-wizard .mwp-plan-card {
        padding: 16px;
    }

    .mwp-checkout-wizard .mwp-plan-card::before {
        left: 16px;
        right: 16px;
    }

    .mwp-checkout-wizard .mwp-connection-choice .mwp-connection-card-body {
        padding: 16px 52px 16px 16px;
    }

    .mwp-checkout-wizard .mwp-connection-choice .mwp-connection-check {
        right: 15px;
        top: 15px;
    }
}

/* Keep the checkout polish authoritative after the legacy compact-card rules above. */

/* Add-on selection uses the same right-aligned themed checkbox treatment as Connection Methods. */
.mwp-checkout-wizard .mwp-addon-card {
    display: block;
    min-height: 100%;
    padding: 18px 58px 18px 18px;
}

.mwp-checkout-wizard .mwp-addon-card > input[type="checkbox"] {
    height: 1px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 1px;
}

.mwp-checkout-wizard .mwp-addon-check {
    align-items: center;
    background: var(--mwp-section-bg);
    border: 2px solid var(--mwp-section-border);
    border-radius: 4px;
    display: inline-flex;
    height: 22px;
    justify-content: center;
    margin: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
    width: 22px;
    z-index: 2;
}

.mwp-checkout-wizard .mwp-addon-check::after {
    border: 0;
    color: var(--mwp-section-bg);
    content: "\2713";
    font-size: .85rem;
    font-weight: 800;
    height: auto;
    left: auto;
    opacity: 0;
    position: static;
    top: auto;
    transform: scale(.65);
    transition: opacity .15s ease, transform .15s ease;
    width: auto;
}

.mwp-checkout-wizard .mwp-addon-card:hover .mwp-addon-check {
    border-color: var(--mwp-section-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mwp-section-accent) 18%, transparent);
}

.mwp-checkout-wizard .mwp-addon-card > input:checked + .mwp-addon-check {
    background: var(--mwp-section-accent);
    border-color: var(--mwp-section-accent);
}

.mwp-checkout-wizard .mwp-addon-card > input:checked + .mwp-addon-check::after {
    opacity: 1;
    transform: scale(1);
}

.mwp-checkout-wizard .mwp-addon-card:has(> input:checked) {
    border-color: var(--mwp-section-accent);
    box-shadow: 0 0 0 2px var(--mwp-section-accent);
}

.mwp-checkout-wizard .mwp-addon-card.is-included .mwp-addon-check {
    box-shadow: none;
}

@media (max-width: 640px) {
    .mwp-checkout-wizard .mwp-addon-card {
        padding: 16px 52px 16px 16px;
    }

    .mwp-checkout-wizard .mwp-addon-check {
        right: 15px;
        top: 15px;
    }
}
.mwp-checkout-wizard .mwp-wizard-progress {
    margin-bottom: 26px;
}

.mwp-checkout-wizard .mwp-wizard-progress li {
    padding: 10px 12px;
}

.mwp-checkout-wizard .mwp-wizard-step > .mwp-plan-step-title {
    font-size: 1.65rem;
    margin: 0 0 16px;
}

@media (max-width: 640px) {
    .mwp-checkout-wizard .mwp-wizard-progress {
        margin-bottom: 20px;
    }

    .mwp-checkout-wizard .mwp-wizard-progress li {
        flex-direction: row;
        padding: 8px;
    }

    .mwp-checkout-wizard .mwp-wizard-step > .mwp-plan-step-title {
        font-size: 1.4rem;
    }
}
