/* ========================================================================== */
/* NET RENTALS — PRICING PAGE                                                 */
/* /css/marketing/pricing.css                                                 */
/*                                                                            */
/* Depends on:                                                               */
/* /css/marketing/rentals-marketing-ui.css                                   */
/*                                                                            */
/* Visual inspiration:                                                       */
/* - Net Rentals vehicle booking flow                                        */
/* - Booking review                                                          */
/* - Payment summary                                                         */
/* - Customer checkout                                                       */
/*                                                                            */
/* This file owns ONLY the Pricing page.                                     */
/* Header/footer/shared marketing UI stay in rentals-marketing-ui.css.       */
/* ========================================================================== */


/* ========================================================================== */
/* 1. PAGE                                                                    */
/* ========================================================================== */

.pricing-page {
    background: var(--nr-paper);
}


/* ========================================================================== */
/* 2. HERO                                                                    */
/* ========================================================================== */

.pricing-hero {
    position: relative;

    padding-top: 92px;
    padding-bottom: 96px;

    overflow: hidden;

    background: var(--nr-paper);
}

.pricing-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(430px, 1.08fr);

    align-items: center;

    gap: 72px;
}

.pricing-hero-copy {
    max-width: 640px;
}

.pricing-hero-copy .nr-page-title {
    max-width: 650px;
}

.pricing-hero-copy .nr-page-description {
    max-width: 590px;
}


/* Small pricing summary under hero buttons */

.pricing-hero-note {
    display: flex;
    flex-wrap: wrap;

    gap: 9px 18px;

    margin-top: 26px;

    color: var(--nr-text-gray);

    font-size: 13px;
    line-height: 1.45;
    font-weight: 550;
}

.pricing-hero-note span {
    display: inline-flex;
    align-items: center;

    gap: 8px;
}

.pricing-hero-note span::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--nr-primary);
}


/* ========================================================================== */
/* 3. CUSTOMER CHECKOUT HERO MOCKUP                                           */
/* ========================================================================== */

.pricing-checkout-demo {
    width: 100%;

    display: flex;
    justify-content: center;
}

.pricing-checkout-shell {
    width: min(100%, 520px);

    overflow: hidden;

    border: 1px solid #e4e7eb;
    border-radius: 26px;

    background: #ffffff;

    box-shadow: var(--nr-shadow-float);
}


/* Header */

.pricing-checkout-header {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 17px 20px;

    border-bottom: 1px solid #e7e9ed;

    background: #ffffff;
}

.pricing-checkout-heading {
    min-width: 0;
}

.pricing-checkout-eyebrow {
    display: block;

    color: #e34a25;

    font-size: 9px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-checkout-title {
    display: block;

    margin-top: 5px;

    overflow: hidden;

    color: #0b1e59;

    font-size: 16px;
    line-height: 1.15;
    font-weight: 750;

    letter-spacing: -0.025em;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.pricing-checkout-days {
    flex: 0 0 auto;

    padding: 7px 10px;

    border: 1px solid #e1e4e9;
    border-radius: 999px;

    background: #f8f9fa;
    color: #6b7280;

    font-size: 9px;
    font-weight: 750;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* Vehicle */

.pricing-checkout-vehicle {
    display: grid;

    grid-template-columns:
        74px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border-bottom: 1px solid #e7e9ed;
}

.pricing-checkout-vehicle-media {
    width: 74px;
    height: 56px;

    overflow: hidden;

    border-radius: 13px;

    background: #eef1f5;
}

.pricing-checkout-vehicle-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.pricing-checkout-vehicle-copy {
    min-width: 0;
}

.pricing-checkout-vehicle-copy strong {
    display: block;

    overflow: hidden;

    color: #0b1e59;

    font-size: 14px;
    line-height: 1.25;
    font-weight: 750;

    letter-spacing: -0.015em;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.pricing-checkout-vehicle-copy span {
    display: block;

    margin-top: 5px;

    color: #7b8290;

    font-size: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.pricing-checkout-rate {
    text-align: right;

    white-space: nowrap;
}

.pricing-checkout-rate strong {
    display: block;

    color: #111317;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: -0.02em;
}

.pricing-checkout-rate span {
    display: block;

    margin-top: 3px;

    color: #8a909b;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* ========================================================================== */
/* 4. CHECKOUT PRICE BREAKDOWN                                                */
/* ========================================================================== */

.pricing-checkout-summary {
    padding: 8px 20px 0;

    background: #ffffff;
}

.pricing-checkout-row {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #e7e9ed;

    color: #707783;

    font-size: 11px;
    line-height: 1.35;
    font-weight: 650;
}

.pricing-checkout-row:last-child {
    border-bottom: 0;
}

.pricing-checkout-row strong {
    flex: 0 0 auto;

    color: #111317;

    font-size: 11px;
    font-weight: 750;

    white-space: nowrap;
}


/* Net Rentals fee line */

.pricing-checkout-row.platform-fee {
    color: #e34a25;
}

.pricing-checkout-row.platform-fee strong {
    color: #e34a25;
}

.pricing-fee-label {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.pricing-fee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 3px 6px;

    border-radius: 999px;

    background: rgba(227, 74, 37, 0.08);
    color: #e34a25;

    font-size: 7px;
    line-height: 1;
    font-weight: 850;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* Deposit */

.pricing-checkout-deposit {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 12px 20px;

    border-top: 1px solid #e7e9ed;

    background: #fffaf3;
}

.pricing-checkout-deposit-copy {
    min-width: 0;
}

.pricing-checkout-deposit-label {
    display: block;

    color: #a96d17;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-checkout-deposit-copy small {
    display: block;

    margin-top: 4px;

    color: #92744d;

    font-size: 9px;
    line-height: 1.35;
}

.pricing-checkout-deposit strong {
    color: #a96d17;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}


/* Total */

.pricing-checkout-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px 20px;

    border-top: 1px solid #e7e9ed;

    background: #f8f9fa;
}

.pricing-checkout-total-label {
    color: #e34a25;

    font-size: 9px;
    line-height: 1;
    font-weight: 850;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-checkout-total strong {
    color: #0b1e59;

    font-size: 29px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -0.045em;
}


/* Fake checkout button */

.pricing-checkout-action {
    padding: 0 20px 20px;

    background: #f8f9fa;
}

.pricing-checkout-button {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 18px;

    background: #e34a25;
    color: #ffffff;

    font-size: 11px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    box-shadow: 0 12px 26px rgba(227, 74, 37, 0.20);
}


/* ========================================================================== */
/* 5. TWO-SIDED PRICING INTRO                                                */
/* ========================================================================== */

.pricing-model {
    background: var(--nr-card);
}

.pricing-centered-header {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
}

.pricing-centered-header .nr-section-description {
    margin-inline: auto;
}

.pricing-model-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    max-width: 920px;

    margin: 48px auto 0;
}


/* ========================================================================== */
/* 6. BUSINESS PLAN CARD                                                      */
/* ========================================================================== */

.pricing-model-card {
    min-height: 440px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    border: 1px solid var(--nr-border);
    border-radius: 26px;

    background: var(--nr-paper);
}

.pricing-model-card.primary {
    border-color: var(--nr-primary-line);

    background: var(--nr-primary-tint);
}

.pricing-model-label {
    display: block;

    margin-bottom: 18px;

    color: var(--nr-primary);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-model-card h3 {
    margin: 0;

    color: var(--nr-text-dark);

    font-size: 25px;
    line-height: 1.15;
    font-weight: 720;

    letter-spacing: -0.03em;
}

.pricing-model-card > p {
    margin: 12px 0 0;

    color: var(--nr-text-gray);

    font-size: 14px;
    line-height: 1.6;
}

.pricing-model-price {
    display: flex;
    align-items: baseline;

    gap: 5px;

    margin-top: 30px;

    color: var(--nr-text-dark);
}

.pricing-model-price strong {
    font-size: 52px;
    line-height: 0.95;
    font-weight: 780;

    letter-spacing: -0.055em;
}

.pricing-model-price span {
    color: var(--nr-text-gray);

    font-size: 14px;
    font-weight: 600;
}


/* Customer fee price */

.pricing-model-percentage {
    display: flex;
    align-items: baseline;

    gap: 5px;

    margin-top: 30px;

    color: var(--nr-text-dark);
}

.pricing-model-percentage strong {
    color: var(--nr-primary);

    font-size: 52px;
    line-height: 0.95;
    font-weight: 780;

    letter-spacing: -0.055em;
}

.pricing-model-percentage span {
    color: var(--nr-text-gray);

    font-size: 14px;
    font-weight: 600;
}


/* Feature list */

.pricing-model-list {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 13px;

    margin: 30px 0 0;
    padding: 24px 0 0;

    border-top: 1px solid var(--nr-border);
}

.pricing-model-card.primary .pricing-model-list {
    border-top-color: var(--nr-primary-line);
}

.pricing-model-list li {
    position: relative;

    padding-left: 27px;

    color: var(--nr-text-dark);

    font-size: 13px;
    line-height: 1.45;
    font-weight: 560;
}

.pricing-model-list li::before {
    content: "";

    position: absolute;
    top: 1px;
    left: 0;

    width: 17px;
    height: 17px;

    border: 1px solid var(--nr-primary-line);
    border-radius: 50%;

    background: var(--nr-card);
}

.pricing-model-list li::after {
    content: "";

    position: absolute;
    top: 5px;
    left: 5px;

    width: 6px;
    height: 3px;

    border-left: 1.5px solid var(--nr-primary);
    border-bottom: 1.5px solid var(--nr-primary);

    transform: rotate(-45deg);
}

.pricing-model-action {
    margin-top: auto;
    padding-top: 32px;
}


/* ========================================================================== */
/* 7. 3.25% PLATFORM FEE EXPLANATION                                          */
/* ========================================================================== */

.pricing-platform-fee {
    background: var(--nr-primary-tint);
}

.pricing-fee-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(440px, 1.18fr);

    align-items: center;

    gap: 78px;
}

.pricing-fee-copy {
    max-width: 500px;
}

.pricing-fee-number {
    margin-top: 26px;

    color: var(--nr-primary);

    font-size: clamp(68px, 10vw, 110px);
    line-height: 0.86;
    font-weight: 800;

    letter-spacing: -0.07em;
}

.pricing-fee-number span {
    font-size: 0.34em;
    font-weight: 700;

    letter-spacing: -0.025em;
}

.pricing-fee-caption {
    max-width: 430px;

    margin: 18px 0 0;

    color: var(--nr-text-gray);

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================================================== */
/* 8. PLATFORM FEE CHECKOUT EXAMPLE                                           */
/* ========================================================================== */

.pricing-fee-example {
    overflow: hidden;

    border: 1px solid var(--nr-primary-line);
    border-radius: 24px;

    background: #ffffff;

    box-shadow: var(--nr-shadow-lg);
}

.pricing-fee-example-header {
    padding: 22px;

    border-bottom: 1px solid #e5e8ec;
}

.pricing-fee-example-header span {
    display: block;

    color: #e34a25;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-fee-example-header strong {
    display: block;

    margin-top: 6px;

    color: #0b1e59;

    font-size: 20px;
    line-height: 1.15;
    font-weight: 750;

    letter-spacing: -0.025em;
}

.pricing-fee-example-body {
    padding: 8px 22px;
}

.pricing-fee-example-row {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #e7e9ed;

    color: #747b86;

    font-size: 12px;
    font-weight: 650;
}

.pricing-fee-example-row strong {
    color: #111317;

    font-weight: 750;

    white-space: nowrap;
}

.pricing-fee-example-row.highlight {
    color: #e34a25;
}

.pricing-fee-example-row.highlight strong {
    color: #e34a25;
}

.pricing-fee-example-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 22px 21px;

    background: #f8f9fa;
}

.pricing-fee-example-total span {
    color: #e34a25;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-fee-example-total strong {
    color: #0b1e59;

    font-size: 26px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -0.04em;
}


/* ========================================================================== */
/* 9. PAYMENT PROCESSING                                                      */
/* ========================================================================== */

.pricing-processing {
    background: var(--nr-paper);
}

.pricing-processing-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(420px, 1.05fr);

    align-items: center;

    gap: 70px;
}

.pricing-processing-copy {
    max-width: 520px;
}

.pricing-processing-note {
    display: flex;

    gap: 14px;

    margin-top: 28px;

    padding: 18px;

    border: 1px solid var(--nr-border);
    border-radius: 18px;

    background: var(--nr-card);
}

.pricing-processing-note-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--nr-primary-tint);
    color: var(--nr-primary);
}

.pricing-processing-note-icon svg {
    width: 19px;
    height: 19px;
}

.pricing-processing-note strong {
    display: block;

    color: var(--nr-text-dark);

    font-size: 13px;
    font-weight: 700;
}

.pricing-processing-note p {
    margin: 5px 0 0;

    color: var(--nr-text-gray);

    font-size: 12px;
    line-height: 1.55;
}


/* Processing visual */

.pricing-processing-card {
    overflow: hidden;

    border: 1px solid #e2e5ea;
    border-radius: 24px;

    background: #ffffff;

    box-shadow: var(--nr-shadow-lg);
}

.pricing-processing-card-header {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 16px 20px;

    border-bottom: 1px solid #e5e8ec;
}

.pricing-processing-card-header div {
    min-width: 0;
}

.pricing-processing-card-header span {
    display: block;

    color: #e34a25;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-processing-card-header strong {
    display: block;

    margin-top: 4px;

    color: #0b1e59;

    font-size: 15px;
    font-weight: 750;
}

.pricing-processing-badge {
    flex: 0 0 auto;

    padding: 6px 9px;

    border: 1px solid rgba(15, 124, 85, 0.18);
    border-radius: 999px;

    background: rgba(15, 124, 85, 0.07);
    color: #0f7c55;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-processing-lines {
    padding: 8px 20px;
}

.pricing-processing-line {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    border-bottom: 1px solid #e7e9ed;

    color: #747b86;

    font-size: 11px;
    font-weight: 650;
}

.pricing-processing-line:last-child {
    border-bottom: 0;
}

.pricing-processing-line strong {
    color: #111317;

    font-size: 11px;
    font-weight: 750;

    white-space: nowrap;
}


/* ========================================================================== */
/* 10. SECURITY DEPOSIT                                                       */
/* ========================================================================== */

.pricing-deposit {
    background: var(--nr-card);
}

.pricing-deposit-layout {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    align-items: center;

    gap: 70px;
}

.pricing-deposit-card {
    overflow: hidden;

    border: 1px solid #e4e7eb;
    border-radius: 24px;

    background: #ffffff;

    box-shadow: var(--nr-shadow-lg);
}

.pricing-deposit-card-top {
    padding: 22px;

    border-bottom: 1px solid #e7e9ed;
}

.pricing-deposit-card-top span {
    display: block;

    color: #b7791f;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-deposit-card-top strong {
    display: block;

    margin-top: 6px;

    color: #0b1e59;

    font-size: 20px;
    font-weight: 750;

    letter-spacing: -0.025em;
}

.pricing-deposit-amount {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    padding: 22px;

    background: #fffaf3;
}

.pricing-deposit-amount span {
    color: #92744d;

    font-size: 11px;
    line-height: 1.5;
    font-weight: 650;
}

.pricing-deposit-amount strong {
    color: #a96d17;

    font-size: 30px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -0.04em;
}

.pricing-deposit-copy {
    max-width: 520px;
}


/* ========================================================================== */
/* 11. WHAT THE MONTHLY PLAN INCLUDES                                         */
/* ========================================================================== */

.pricing-included {
    background: var(--nr-paper);
}

.pricing-included-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    margin-top: 44px;
}

.pricing-included-card {
    min-height: 210px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    border: 1px solid var(--nr-border);
    border-radius: 20px;

    background: var(--nr-card);
}

.pricing-included-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    border: 1px solid var(--nr-primary-line);
    border-radius: 13px;

    background: var(--nr-primary-tint);
    color: var(--nr-primary);
}

.pricing-included-icon svg {
    width: 20px;
    height: 20px;
}

.pricing-included-card strong {
    color: var(--nr-text-dark);

    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;
}

.pricing-included-card p {
    margin: 8px 0 0;

    color: var(--nr-text-gray);

    font-size: 13px;
    line-height: 1.6;
}


/* ========================================================================== */
/* 12. PRICING FAQ                                                            */
/* ========================================================================== */

.pricing-faq {
    background: var(--nr-card);
}

.pricing-faq-layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 70px;

    align-items: start;
}

.pricing-faq-copy {
    position: sticky;
    top: 120px;
}

.pricing-faq-list {
    overflow: hidden;

    border: 1px solid var(--nr-border);
    border-radius: 22px;

    background: var(--nr-paper);
}

.pricing-faq-item {
    border-bottom: 1px solid var(--nr-border);
}

.pricing-faq-item:last-child {
    border-bottom: 0;
}

.pricing-faq-item summary {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px;

    list-style: none;

    cursor: pointer;

    color: var(--nr-text-dark);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 650;
}

.pricing-faq-item summary::-webkit-details-marker {
    display: none;
}

.pricing-faq-item summary::after {
    content: "+";

    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--nr-primary-line);
    border-radius: 50%;

    background: var(--nr-card);
    color: var(--nr-primary);

    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.pricing-faq-item[open] summary::after {
    content: "−";
}

.pricing-faq-answer {
    padding:
        0
        20px
        20px;

    color: var(--nr-text-gray);

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================================================== */
/* 13. SMALL DISCLOSURE                                                       */
/* ========================================================================== */

.pricing-disclosure {
    max-width: 820px;

    margin: 32px auto 0;

    color: var(--nr-text-muted);

    font-size: 11px;
    line-height: 1.65;

    text-align: center;
}


/* ========================================================================== */
/* 14. TABLET                                                                 */
/* ========================================================================== */

@media (max-width: 1050px) {

    .pricing-hero-grid {
        grid-template-columns: 1fr;

        gap: 54px;
    }

    .pricing-hero-copy {
        max-width: 760px;
    }

    .pricing-checkout-demo {
        justify-content: flex-start;
    }

    .pricing-checkout-shell {
        max-width: 620px;
    }

    .pricing-fee-layout,
    .pricing-processing-layout,
    .pricing-deposit-layout {
        grid-template-columns: 1fr;

        gap: 44px;
    }

    .pricing-fee-copy,
    .pricing-processing-copy,
    .pricing-deposit-copy {
        max-width: 680px;
    }

    .pricing-included-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .pricing-faq-layout {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .pricing-faq-copy {
        position: static;

        max-width: 680px;
    }
}


/* ========================================================================== */
/* 15. MOBILE                                                                 */
/* ========================================================================== */

@media (max-width: 800px) {

    .pricing-hero {
        padding-top: 62px;
        padding-bottom: 72px;
    }

    .pricing-hero-grid {
        gap: 42px;
    }

    .pricing-checkout-shell {
        border-radius: 21px;
    }

    .pricing-model-grid {
        grid-template-columns: 1fr;

        max-width: 580px;
    }

    .pricing-model-card {
        min-height: 0;
    }

    .pricing-fee-layout,
    .pricing-processing-layout,
    .pricing-deposit-layout {
        gap: 36px;
    }

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


/* ========================================================================== */
/* 16. SMALL MOBILE                                                           */
/* ========================================================================== */

@media (max-width: 560px) {

    .pricing-checkout-header {
        padding: 15px 16px;
    }

    .pricing-checkout-vehicle {
        grid-template-columns:
            60px
            minmax(0, 1fr);

        padding: 16px;
    }

    .pricing-checkout-vehicle-media {
        width: 60px;
        height: 48px;
    }

    .pricing-checkout-rate {
        grid-column: 2;

        text-align: left;
    }

    .pricing-checkout-summary {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-checkout-deposit,
    .pricing-checkout-total {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-checkout-action {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-checkout-total strong {
        font-size: 26px;
    }

    .pricing-model-card {
        padding: 26px 22px;
    }

    .pricing-model-price strong,
    .pricing-model-percentage strong {
        font-size: 46px;
    }

    .pricing-fee-number {
        font-size: 76px;
    }

    .pricing-fee-example-header,
    .pricing-fee-example-body,
    .pricing-fee-example-total {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pricing-processing-card-header,
    .pricing-processing-lines {
        padding-left: 17px;
        padding-right: 17px;
    }

    .pricing-deposit-card-top,
    .pricing-deposit-amount {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pricing-deposit-amount {
        align-items: flex-start;

        flex-direction: column;
    }

    .pricing-faq-item summary {
        padding-left: 17px;
        padding-right: 17px;
    }

    .pricing-faq-answer {
        padding-left: 17px;
        padding-right: 17px;
    }
}


/* ========================================================================== */
/* 17. REDUCED MOTION                                                         */
/* ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .pricing-model-card,
    .pricing-checkout-shell,
    .pricing-fee-example,
    .pricing-processing-card,
    .pricing-deposit-card {
        transition: none;
    }
}