/* ========================================================================== */
/* NET RENTALS — DIRECT BOOKINGS                                              */
/* /css/marketing/direct-bookings.css                                         */
/*                                                                            */
/* Depends on:                                                               */
/* /css/marketing/rentals-marketing-ui.css                                   */
/*                                                                            */
/* Visual sources:                                                           */
/* - Classic public rental website                                           */
/* - Customer confirmation flow                                              */
/* - Owner Messages dashboard                                                */
/* ========================================================================== */


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

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


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

.direct-bookings-hero {
    position: relative;

    overflow: hidden;

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

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

.direct-bookings-hero-grid {
    display: grid;

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

    gap: 72px;

    align-items: center;
}

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

.direct-bookings-hero-copy .nr-page-title {
    max-width: 680px;
}

.direct-bookings-hero-copy .nr-page-description {
    max-width: 600px;
}


/* ========================================================================== */
/* 3. PUBLIC RENTAL WEBSITE MOCKUP                                            */
/* ========================================================================== */

.direct-bookings-site-demo {
    width: 100%;
}

.direct-bookings-site-shell {
    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(11, 30, 89, 0.12);
    border-radius: 26px;

    background: #ffffff;

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

.direct-bookings-site-header {
    min-height: 66px;

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

    gap: 20px;

    padding: 14px 18px;

    border-bottom: 1px solid #eaeaea;

    background: rgba(255, 255, 255, 0.97);
}

.direct-bookings-site-brand {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 10px;
}

.direct-bookings-site-brand-mark {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

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

    border-radius: 10px;

    background: #0b1e59;
    color: #ffffff;

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

.direct-bookings-site-brand > div {
    min-width: 0;
}

.direct-bookings-site-brand strong {
    display: block;

    overflow: hidden;

    color: #111317;

    font-size: 11px;
    line-height: 1.1;
    font-weight: 750;

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

.direct-bookings-site-brand span:not(.direct-bookings-site-brand-mark) {
    display: block;

    margin-top: 3px;

    color: #7b8290;

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

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

.direct-bookings-site-menu {
    width: 27px;
    height: 27px;

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

    gap: 5px;
}

.direct-bookings-site-menu span {
    width: 18px;
    height: 2px;

    border-radius: 999px;

    background: #0b1e59;
}


/* Site hero */

.direct-bookings-site-hero {
    min-height: 210px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 26px 24px 30px;

    background: #0b1e59;
}

.direct-bookings-site-eyebrow {
    margin-bottom: 8px;

    color: #e34a25;

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

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

.direct-bookings-site-headline {
    color: #ffffff;

    font-size: clamp(27px, 4vw, 38px);
    line-height: 0.98;
    font-weight: 750;

    letter-spacing: -0.04em;
}

.direct-bookings-site-subtitle {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 10px;
    line-height: 1.45;
}


/* Search card */

.direct-bookings-search-card {
    position: relative;

    width: calc(100% - 36px);

    margin:
        -18px
        auto
        20px;

    padding: 15px;

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

    background: #ffffff;

    box-shadow:
        0 16px 34px -18px
        rgba(11, 30, 89, 0.24);
}

.direct-bookings-search-field {
    min-width: 0;

    padding: 10px 11px;

    border: 1px solid #e5e7eb;
    border-radius: 11px;

    background: #f8f9fa;
}

.direct-bookings-search-field span {
    display: block;

    color: #7b8290;

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

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

.direct-bookings-search-field strong {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    color: #0b1e59;

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

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

.direct-bookings-search-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 8px;
}

.direct-bookings-search-button {
    min-height: 42px;

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

    margin-top: 9px;

    border-radius: 11px;

    background: #e34a25;
    color: #ffffff;

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

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

    box-shadow:
        0 10px 20px
        rgba(227, 74, 37, 0.18);
}


/* ========================================================================== */
/* 4. FLOW                                                                    */
/* ========================================================================== */

.direct-bookings-flow {
    background: var(--nr-card);
}

.direct-bookings-centered-header {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
}

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

.direct-bookings-flow-grid {
    display: grid;

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

    gap: 16px;

    margin-top: 44px;
}

.direct-bookings-flow-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;

    padding: 24px;

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

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

.direct-bookings-flow-number {
    width: fit-content;

    margin-bottom: 46px;

    color: var(--nr-primary);

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

    letter-spacing: 0.08em;
}

.direct-bookings-flow-card h3 {
    margin: 0 0 10px;

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

    font-size: 20px;
    line-height: 1.2;
    font-weight: 720;

    letter-spacing: -0.02em;
}

.direct-bookings-flow-card p {
    margin: 0;

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

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


/* ========================================================================== */
/* 5. SHARED SPLIT                                                           */
/* ========================================================================== */

.direct-bookings-split {
    display: grid;

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

    gap: 72px;

    align-items: center;
}

.direct-bookings-split-copy {
    max-width: 530px;
}

.direct-bookings-check-list {
    list-style: none;

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

    gap: 12px 18px;

    margin: 30px 0 0;
    padding: 0;
}

.direct-bookings-check-list li {
    position: relative;

    padding-left: 27px;

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

    font-size: 14px;
    line-height: 1.5;
    font-weight: 560;
}

.direct-bookings-check-list li::before {
    content: "";

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

    width: 18px;
    height: 18px;

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

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

.direct-bookings-check-list li::after {
    content: "";

    position: absolute;
    top: 7px;
    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);
}


/* ========================================================================== */
/* 6. VEHICLE CARD                                                            */
/* ========================================================================== */

.direct-bookings-fleet {
    background: var(--nr-primary-tint);
}

.direct-bookings-vehicle-demo {
    width: 100%;
}

.direct-bookings-vehicle-card {
    overflow: hidden;

    border: 1px solid rgba(11, 30, 89, 0.12);
    border-radius: 24px;

    background: #ffffff;

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

.direct-bookings-vehicle-photo {
    position: relative;

    height: 260px;

    overflow: hidden;

    background: #eef1f5;
}

.direct-bookings-vehicle-photo-placeholder {
    width: 100%;
    height: 100%;

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

    color: #0b1e59;
}

.direct-bookings-vehicle-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 999px;

    background: rgba(11, 30, 89, 0.54);

    transform: translateX(-50%);
}

.direct-bookings-vehicle-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.48);
}

.direct-bookings-vehicle-dots span.active {
    width: 17px;

    border-radius: 999px;

    background: #ffffff;
}

.direct-bookings-vehicle-body {
    padding: 24px;
}

.direct-bookings-vehicle-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.direct-bookings-vehicle-heading > div:first-child {
    min-width: 0;
}

.direct-bookings-vehicle-class {
    display: block;

    color: #e34a25;

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

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

.direct-bookings-vehicle-heading strong {
    display: block;

    margin-top: 5px;

    color: #0b1e59;

    font-size: 23px;
    line-height: 1.05;
    font-weight: 750;

    letter-spacing: -0.035em;
}

.direct-bookings-vehicle-price {
    flex: 0 0 auto;

    text-align: right;
}

.direct-bookings-vehicle-price strong {
    display: block;

    margin: 0;

    color: #111317;

    font-size: 23px;
    font-weight: 800;
}

.direct-bookings-vehicle-price span {
    display: block;

    margin-top: 4px;

    color: #7b8290;

    font-size: 9px;
}

.direct-bookings-vehicle-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 14px;

    margin-top: 20px;

    color: #7b8290;

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

.direct-bookings-vehicle-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.direct-bookings-vehicle-meta span::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #e34a25;
}

.direct-bookings-vehicle-body p {
    margin: 17px 0 0;

    color: #6b7280;

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

.direct-bookings-vehicle-action {
    min-height: 48px;

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

    margin-top: 22px;

    border-radius: 14px;

    background: #e34a25;
    color: #ffffff;

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

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


/* ========================================================================== */
/* 7. BOOKING WORKSPACE                                                       */
/* ========================================================================== */

.direct-bookings-workspace {
    background: var(--nr-paper);
}

.direct-bookings-workspace-layout {
    grid-template-columns:
        minmax(440px, 1.1fr)
        minmax(0, 0.9fr);
}

.direct-bookings-booking-demo {
    width: 100%;
}

.direct-bookings-booking-shell {
    overflow: hidden;

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

    background: #ffffff;

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

.direct-bookings-booking-tabs {
    display: grid;

    grid-template-columns:
        .8fr
        1fr
        1.22fr
        .84fr
        .84fr;

    gap: 3px;

    margin: 16px;

    padding: 3px;

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

    background: #f8f9fa;
}

.direct-bookings-booking-tabs span {
    min-width: 0;
    min-height: 38px;

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

    padding: 0 5px;

    border-radius: 999px;

    color: #a0a6b1;

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

    white-space: nowrap;
}

.direct-bookings-booking-tabs span.active {
    background: #0b1e59;
    color: #ffffff;

    box-shadow:
        0 8px 18px
        rgba(11, 30, 89, 0.14);
}

.direct-bookings-booking-stage {
    padding:
        10px
        20px
        20px;
}

.direct-bookings-booking-eyebrow {
    display: block;

    color: #e34a25;

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

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

.direct-bookings-booking-title {
    display: block;

    margin-top: 5px;

    color: #0b1e59;

    font-size: 22px;
    line-height: 1.08;
    font-weight: 750;

    letter-spacing: -0.035em;
}

.direct-bookings-date-summary {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 9px;

    margin-top: 18px;
}

.direct-bookings-date-summary > div {
    padding: 12px;

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

    background: #ffffff;
}

.direct-bookings-date-summary span {
    display: block;

    color: #e34a25;

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

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

.direct-bookings-date-summary strong {
    display: block;

    margin-top: 4px;

    color: #0b1e59;

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

.direct-bookings-date-summary small {
    display: block;

    margin-top: 3px;

    color: #7b8290;

    font-size: 8px;
}


/* Calendar */

.direct-bookings-calendar {
    margin-top: 10px;

    padding: 13px;

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

    background: #ffffff;

    box-shadow:
        0 8px 24px
        rgba(11, 30, 89, 0.05);
}

.direct-bookings-calendar-top {
    display: grid;
    grid-template-columns:
        36px
        1fr
        36px;

    align-items: center;

    gap: 7px;

    margin-bottom: 9px;

    text-align: center;
}

.direct-bookings-calendar-top > span {
    width: 36px;
    height: 36px;

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

    border-radius: 50%;

    color: #0b1e59;

    font-size: 16px;
}

.direct-bookings-calendar-top strong {
    color: #0b1e59;

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

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

.direct-bookings-calendar-weekdays,
.direct-bookings-calendar-grid {
    display: grid;

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

    gap: 4px;
}

.direct-bookings-calendar-weekdays {
    margin-bottom: 4px;
}

.direct-bookings-calendar-weekdays span {
    text-align: center;

    color: #8b93a3;

    font-size: 7px;
    font-weight: 800;
}

.direct-bookings-calendar-grid > span {
    aspect-ratio: 1;

    min-height: 29px;

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

    border-radius: 50%;

    color: #111317;

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

.direct-bookings-calendar-grid .range-start,
.direct-bookings-calendar-grid .range-end {
    background: #0b1e59;
    color: #ffffff;
}

.direct-bookings-calendar-grid .range-middle {
    border-radius: 10px;

    background: rgba(11, 30, 89, 0.07);
    color: #0b1e59;
}

.direct-bookings-booking-next {
    min-height: 48px;

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

    margin-top: 13px;

    border-radius: 14px;

    background: #0b1e59;
    color: #ffffff;

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

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


/* ========================================================================== */
/* 8. TRANSPARENT PRICING                                                     */
/* ========================================================================== */

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

.direct-bookings-pricing-layout {
    display: grid;

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

    gap: 72px;

    align-items: center;
}

.direct-bookings-text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 28px;

    color: var(--nr-primary);

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

.direct-bookings-text-link:hover {
    text-decoration: underline;
}


/* Review card */

.direct-bookings-review-card {
    overflow: hidden;

    border: 1px solid #e5e7eb;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 18px 40px -20px
        rgba(17, 24, 39, 0.2);
}

.direct-bookings-review-heading {
    padding: 20px;

    border-bottom: 1px solid #e5e7eb;
}

.direct-bookings-review-heading span {
    display: block;

    color: #6b7280;

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

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

.direct-bookings-review-heading strong {
    display: block;

    margin-top: 5px;

    color: #111827;

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

    letter-spacing: -0.025em;
}

.direct-bookings-review-row {
    min-height: 54px;

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

    gap: 18px;

    padding: 12px 20px;

    border-bottom: 1px solid #e5e7eb;

    color: #6b7280;

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

.direct-bookings-review-row strong {
    color: #111827;

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

    white-space: nowrap;
}

.direct-bookings-review-row.accent {
    color: #e34a25;
}

.direct-bookings-review-row.accent strong {
    color: #e34a25;
}

.direct-bookings-review-deposit {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 15px 20px;

    border-bottom: 1px solid #e5e7eb;

    background: #fffaf3;
}

.direct-bookings-review-deposit div {
    min-width: 0;
}

.direct-bookings-review-deposit span {
    display: block;

    color: #a96d17;

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

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

.direct-bookings-review-deposit small {
    display: block;

    margin-top: 4px;

    color: #92744d;

    font-size: 9px;
}

.direct-bookings-review-deposit strong {
    color: #a96d17;

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

.direct-bookings-review-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    padding: 18px 20px;

    background: #f9fafb;
}

.direct-bookings-review-total span {
    color: #e34a25;

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

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

.direct-bookings-review-total strong {
    color: #0b1e59;

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

    letter-spacing: -0.04em;
}


/* ========================================================================== */
/* 9. AFTER BOOKING                                                           */
/* ========================================================================== */

.direct-bookings-after {
    background: var(--nr-paper);
}

.direct-bookings-after-grid {
    display: grid;

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

    gap: 18px;

    margin-top: 44px;
}

.direct-bookings-after-card {
    min-height: 280px;

    display: flex;
    flex-direction: column;

    padding: 26px;

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

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

.direct-bookings-after-card > span {
    color: var(--nr-primary);

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

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

.direct-bookings-after-card h3 {
    margin: auto 0 10px;

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

    font-size: 21px;
    line-height: 1.2;
    font-weight: 720;

    letter-spacing: -0.025em;
}

.direct-bookings-after-card p {
    margin: 0;

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

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


/* ========================================================================== */
/* 10. CONFIRMATION-INSPIRED CUSTOMER EXPERIENCE                              */
/* ========================================================================== */

.direct-bookings-after-card:nth-child(2) {
    position: relative;

    overflow: hidden;

    border-color: #e5e7eb;

    background: #ffffff;
}

.direct-bookings-after-card:nth-child(2)::before {
    content: "✓";

    width: 50px;
    height: 50px;

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

    margin-bottom: 34px;

    border-radius: 50%;

    background: #d1fae5;
    color: #10b981;

    font-size: 20px;
    font-weight: 850;
}

.direct-bookings-after-card:nth-child(2) h3 {
    margin-top: 0;
}


/* ========================================================================== */
/* 11. OWNER / MESSAGES-INSPIRED CARD                                         */
/* ========================================================================== */

.direct-bookings-after-card:first-child {
    position: relative;

    overflow: hidden;

    border-color: rgba(255, 255, 255, 0.06);

    background: #09090b;

    box-shadow:
        0 22px 42px -24px
        rgba(0, 0, 0, 0.42);
}

.direct-bookings-after-card:first-child > span {
    color: #60a5fa;
}

.direct-bookings-after-card:first-child h3 {
    color: #fafafa;
}

.direct-bookings-after-card:first-child p {
    color: #71717a;
}

.direct-bookings-after-card:first-child::before {
    content: "";

    width: 100%;
    height: 86px;

    display: block;

    margin-bottom: 30px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #18181b,
            #111113
        );
}

.direct-bookings-after-card:first-child::after {
    content: "SMS   EMAIL   IN-APP";

    position: absolute;
    top: 55px;
    left: 42px;

    color: #a1a1aa;

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

    letter-spacing: 0.09em;
}


/* ========================================================================== */
/* 12. DARK MESSAGE STRIP                                                     */
/* ========================================================================== */

.direct-bookings-after-card:first-child h3::before {
    content: "Customer: Can I pick up 30 minutes earlier?";

    display: block;

    margin-bottom: 12px;

    padding: 11px 12px;

    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius:
        12px
        12px
        4px
        12px;

    background: rgba(96, 165, 250, 0.08);
    color: #dbeafe;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 550;

    letter-spacing: 0;
}


/* ========================================================================== */
/* 13. OWNERSHIP                                                              */
/* ========================================================================== */

.direct-bookings-ownership {
    background: var(--nr-primary-tint);
}

.direct-bookings-ownership-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.72fr);

    gap: 60px;

    align-items: end;

    margin-bottom: 44px;
}

.direct-bookings-ownership-layout .nr-section-description {
    margin: 0;
}

.direct-bookings-ownership-grid {
    display: grid;

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

    overflow: hidden;

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

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

.direct-bookings-ownership-grid article {
    min-height: 190px;

    padding: 26px;

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

.direct-bookings-ownership-grid article:last-child {
    border-right: 0;
}

.direct-bookings-ownership-grid strong {
    display: block;

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

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

    letter-spacing: -0.02em;
}

.direct-bookings-ownership-grid p {
    margin: 9px 0 0;

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

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


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

@media (max-width: 1050px) {

    .direct-bookings-hero-grid {
        grid-template-columns: 1fr;

        gap: 54px;
    }

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

    .direct-bookings-site-demo {
        max-width: 720px;
    }

    .direct-bookings-flow-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .direct-bookings-split,
    .direct-bookings-workspace-layout,
    .direct-bookings-pricing-layout {
        grid-template-columns: 1fr;

        gap: 44px;
    }

    .direct-bookings-split-copy {
        max-width: 680px;
    }

    .direct-bookings-vehicle-demo,
    .direct-bookings-booking-demo,
    .direct-bookings-review-demo {
        max-width: 680px;
    }

    .direct-bookings-after-grid {
        grid-template-columns: 1fr;
    }

    .direct-bookings-after-card {
        min-height: 240px;
    }

    .direct-bookings-ownership-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .direct-bookings-ownership-grid article:nth-child(2) {
        border-right: 0;
    }

    .direct-bookings-ownership-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--nr-border);
    }
}


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

@media (max-width: 800px) {

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

    .direct-bookings-hero-grid {
        gap: 42px;
    }

    .direct-bookings-site-shell {
        border-radius: 21px;
    }

    .direct-bookings-flow-grid {
        grid-template-columns: 1fr;
    }

    .direct-bookings-flow-card {
        min-height: 0;
    }

    .direct-bookings-flow-number {
        margin-bottom: 34px;
    }

    .direct-bookings-check-list {
        grid-template-columns: 1fr;
    }

    .direct-bookings-vehicle-photo {
        height: 230px;
    }

    .direct-bookings-workspace-layout .direct-bookings-booking-demo {
        order: 2;
    }

    .direct-bookings-pricing-layout .direct-bookings-review-demo {
        order: 2;
    }

    .direct-bookings-ownership-layout {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 34px;
    }
}


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

@media (max-width: 560px) {

    .direct-bookings-site-header {
        padding:
            13px
            15px;
    }

    .direct-bookings-site-hero {
        min-height: 180px;

        padding:
            24px
            18px
            28px;
    }

    .direct-bookings-search-card {
        width: calc(100% - 28px);

        padding: 12px;
    }

    .direct-bookings-search-row {
        grid-template-columns: 1fr;
    }

    .direct-bookings-vehicle-photo {
        height: 205px;
    }

    .direct-bookings-vehicle-body {
        padding: 20px;
    }

    .direct-bookings-vehicle-heading strong {
        font-size: 20px;
    }

    .direct-bookings-vehicle-price strong {
        font-size: 20px;
    }

    .direct-bookings-booking-tabs {
        grid-template-columns:
            .72fr
            .9fr
            1.16fr
            .78fr
            .8fr;

        margin:
            13px
            10px;
    }

    .direct-bookings-booking-tabs span {
        min-height: 35px;

        padding: 0 3px;

        font-size: 6px;
    }

    .direct-bookings-booking-stage {
        padding:
            8px
            14px
            16px;
    }

    .direct-bookings-booking-title {
        font-size: 19px;
    }

    .direct-bookings-calendar {
        padding: 10px;
    }

    .direct-bookings-calendar-grid > span {
        min-height: 27px;

        font-size: 7px;
    }

    .direct-bookings-review-heading,
    .direct-bookings-review-row,
    .direct-bookings-review-deposit,
    .direct-bookings-review-total {
        padding-left: 16px;
        padding-right: 16px;
    }

    .direct-bookings-review-total strong {
        font-size: 24px;
    }

    .direct-bookings-after-card {
        min-height: 220px;

        padding: 22px;
    }

    .direct-bookings-ownership-grid {
        grid-template-columns: 1fr;
    }

    .direct-bookings-ownership-grid article {
        min-height: 0;

        border-right: 0;
        border-bottom: 1px solid var(--nr-border);
    }

    .direct-bookings-ownership-grid article:nth-child(2) {
        border-bottom: 1px solid var(--nr-border);
    }

    .direct-bookings-ownership-grid article:last-child {
        border-bottom: 0;
    }
}


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

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

    .direct-bookings-site-shell,
    .direct-bookings-vehicle-card,
    .direct-bookings-booking-shell,
    .direct-bookings-review-card,
    .direct-bookings-after-card {
        transition: none;
    }
}