/* (c) Haxter Corporation | Inventary | h27-hx26-ms */

.hxinv_page {
    --hxinv-blue: #0067b8;
    --hxinv-blue-hover: #005da6;
    --hxinv-text: #1a1a1a;
    --hxinv-muted: #5f6368;
    --hxinv-border: #e5e5e5;
    --hxinv-soft: #f5f5f5;
    --hxinv-blue-soft: #f3f8fd;
    --hxinv-line-blue: #d8e6f2;
    --hxinv-white: #ffffff;

    margin: 0;
    background: #ffffff;
    color: var(--hxinv-text);
    font-family: "Segoe UI", "Elms Sans", Montserrat, Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.hxinv_page * {
    box-sizing: border-box;
}

.hxinv_wrap {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

/* HERO */

.hxinv_hero {
    background: #ffffff;
    border-bottom: 1px solid var(--hxinv-border);
}

.hxinv_hero_inner {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 70px;
    align-items: center;
    padding: 82px 0;
}

.hxinv_hero_copy {
    max-width: 900px;
}

.hxinv_kicker {
    margin: 0 0 22px;
    color: var(--hxinv-muted);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.hxinv_title {
    margin: 0;
    max-width: 940px;
    color: var(--hxinv-text);
    font-size: clamp(50px, 5.35vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.058em;
    font-weight: 600;
    word-break: normal;
    overflow-wrap: normal;
}

.hxinv_title span {
    display: block;
    color: var(--hxinv-blue);
}

.hxinv_title sup {
    font-size: 0.24em;
    line-height: 0;
    vertical-align: super;
    margin-left: 0.06em;
    letter-spacing: 0;
    font-weight: 500;
}

.hxinv_subtitle {
    margin: 24px 0 0;
    max-width: 780px;
    color: var(--hxinv-text);
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.hxinv_intro {
    margin: 24px 0 0;
    max-width: 780px;
    color: var(--hxinv-muted);
    font-size: 18px;
    line-height: 1.62;
}

.hxinv_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 34px;
}

.hxinv_btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 0;
    background: var(--hxinv-blue);
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.hxinv_btn:hover {
    background: var(--hxinv-blue-hover);
    color: #ffffff;
}

.hxinv_link {
    color: var(--hxinv-blue);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
}

.hxinv_link:hover {
    text-decoration: underline;
}

/* HERO PANEL ACTIONS */

.hxinv_hero_panel_group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hxinv_hero_panel_actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hxinv_panel_signin,
.hxinv_panel_enterprise {
    width: auto;
    min-width: 138px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--hxinv-blue);
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.hxinv_panel_signin {
    background: var(--hxinv-blue);
    color: #ffffff;
}

.hxinv_panel_signin:hover {
    background: var(--hxinv-blue-hover);
    color: #ffffff;
}

.hxinv_panel_enterprise {
    background: #ffffff;
    color: var(--hxinv-blue);
}

.hxinv_panel_enterprise:hover {
    background: var(--hxinv-blue-soft);
    color: var(--hxinv-blue);
}

/* HERO PANEL */

.hxinv_panel {
    background: #ffffff;
    border: 1px solid var(--hxinv-border);
    padding: 38px;
}

.hxinv_panel_logo {
    height: auto;
    display: block;
    margin-bottom: 54px;
}

.hxinv_panel_logo_global {
    width: clamp(260px, 28vw, 430px);
    max-width: 100%;
    max-height: 118px;
    object-fit: contain;
    object-position: left center;
}

.hxinv_panel_title {
    margin: 0;
    max-width: 520px;
    color: var(--hxinv-text);
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.hxinv_panel_text {
    margin: 16px 0 0;
    max-width: 520px;
    color: var(--hxinv-muted);
    font-size: 15px;
    line-height: 1.6;
}

.hxinv_panel_divider {
    width: 100%;
    height: 1px;
    margin: 30px 0;
    background: var(--hxinv-line-blue);
}

.hxinv_panel_subtitle {
    margin: 0;
    max-width: 520px;
    color: var(--hxinv-text);
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -0.035em;
    font-weight: 600;
}

/* NAV */

.hxinv_navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--hxinv-border);
}

.hxinv_navbar_inner {
    width: min(1320px, calc(100% - 80px));
    min-height: 56px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
    overflow-x: auto;
}

.hxinv_navbar_inner::-webkit-scrollbar {
    height: 0;
}

.hxinv_navbar a {
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.hxinv_navbar a:hover {
    color: var(--hxinv-blue);
    text-decoration: underline;
}

/* TOP STRIP */

.hxinv_strip {
    border-bottom: 1px solid var(--hxinv-border);
    background: #ffffff;
}

.hxinv_strip_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--hxinv-border);
}

.hxinv_strip_item {
    min-height: 132px;
    padding: 28px 26px;
    border-right: 1px solid var(--hxinv-border);
    background: #ffffff;
}

.hxinv_strip_item strong {
    display: block;
    color: var(--hxinv-text);
    font-size: 22px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hxinv_strip_item span {
    display: block;
    margin-top: 8px;
    color: var(--hxinv-muted);
    font-size: 14px;
    line-height: 1.45;
}

/* SECTIONS */

.hxinv_section {
    padding: 82px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--hxinv-border);
}

.hxinv_section_soft {
    background: var(--hxinv-soft);
}

.hxinv_section_head {
    max-width: 920px;
    margin-bottom: 42px;
}

.hxinv_label {
    margin: 0 0 12px;
    color: var(--hxinv-blue);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.hxinv_h2 {
    margin: 0;
    color: var(--hxinv-text);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 600;
}

.hxinv_text {
    margin: 18px 0 0;
    color: var(--hxinv-muted);
    font-size: 17px;
    line-height: 1.62;
}

/* CARDS */

.hxinv_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hxinv-border);
    border-left: 1px solid var(--hxinv-border);
}

.hxinv_cards_three {
    grid-template-columns: repeat(3, 1fr);
}

.hxinv_cards_four {
    grid-template-columns: repeat(4, 1fr);
}

.hxinv_card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: #ffffff;
    border-right: 1px solid var(--hxinv-border);
    border-bottom: 1px solid var(--hxinv-border);
    color: inherit;
    text-decoration: none;
}

.hxinv_card_link:hover h3 {
    text-decoration: underline;
}

.hxinv_card_label {
    margin: 0 0 18px;
    color: var(--hxinv-blue);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.hxinv_card h3 {
    margin: 0;
    color: var(--hxinv-text);
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.hxinv_card p {
    margin: 14px 0 0;
    color: var(--hxinv-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hxinv_card span {
    margin-top: auto;
    padding-top: 24px;
    color: var(--hxinv-blue);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

/* MODALITIES */

.hxinv_modality_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hxinv_modality {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--hxinv-border);
    color: inherit;
    text-decoration: none;
}

.hxinv_modality:hover h3 {
    text-decoration: underline;
}

.hxinv_modality p {
    margin: 0 0 18px;
    color: var(--hxinv-blue);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.hxinv_modality h3 {
    margin: 0;
    color: var(--hxinv-text);
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 600;
}

.hxinv_modality span {
    display: block;
    margin: 16px 0 0;
    color: var(--hxinv-muted);
    font-size: 15px;
    line-height: 1.58;
}

.hxinv_modality strong {
    margin-top: auto;
    padding-top: 28px;
    color: var(--hxinv-blue);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* PRICING */

.hxinv_pricing_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--hxinv-border);
    border-left: 1px solid var(--hxinv-border);
}

.hxinv_price_card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #ffffff;
    border-right: 1px solid var(--hxinv-border);
    border-bottom: 1px solid var(--hxinv-border);
}

.hxinv_price_card h3 {
    margin: 0;
    color: var(--hxinv-text);
    font-size: 26px;
    line-height: 1.14;
    letter-spacing: -0.035em;
    font-weight: 600;
}

.hxinv_price_card p {
    margin: 14px 0 0;
    color: var(--hxinv-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hxinv_price_rows {
    display: grid;
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid var(--hxinv-border);
}

.hxinv_price_rows div {
    padding: 14px 0;
    border-bottom: 1px solid var(--hxinv-border);
}

.hxinv_price_rows span {
    display: block;
    color: var(--hxinv-muted);
    font-size: 13px;
    line-height: 1.4;
}

.hxinv_price_rows strong {
    display: block;
    margin-top: 5px;
    color: var(--hxinv-text);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
}

.hxinv_price_card a {
    margin-top: auto;
    padding-top: 24px;
    color: var(--hxinv-blue);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
}

.hxinv_price_card a:hover {
    text-decoration: underline;
}

.hxinv_small_note {
    margin: 24px 0 0;
    color: var(--hxinv-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* LIMITS */

.hxinv_limits_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hxinv_limit_card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--hxinv-border);
}

.hxinv_limit_card h3 {
    margin: 0;
    color: var(--hxinv-text);
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 600;
}

.hxinv_limit_card ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hxinv_limit_card li {
    color: #333333;
    font-size: 14px;
    line-height: 1.45;
}

.hxinv_limit_card li::before {
    content: "✓";
    margin-right: 9px;
    color: var(--hxinv-blue);
    font-weight: 700;
}

/* NOTICE */

.hxinv_notice {
    padding: 62px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--hxinv-border);
}

.hxinv_notice_inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.hxinv_notice h2 {
    margin: 0;
    color: var(--hxinv-text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.hxinv_notice p {
    margin: 0;
    color: var(--hxinv-muted);
    font-size: 15px;
    line-height: 1.68;
}

/* REQUEST FORM */

.hxinv_request {
    padding: 86px 0;
    background: var(--hxinv-blue-soft);
    border-top: 1px solid var(--hxinv-border);
}

.hxinv_request_inner {
    width: min(980px, calc(100% - 80px));
    margin: 0 auto;
    text-align: center;
}

.hxinv_request h2 {
    margin: 0 auto;
    max-width: 860px;
    color: var(--hxinv-text);
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.hxinv_request_intro {
    margin: 22px auto 0;
    max-width: 760px;
    color: var(--hxinv-muted);
    font-size: 16px;
    line-height: 1.6;
}

.hxinv_form_alert {
    max-width: 760px;
    margin: 30px auto 0;
    padding: 18px 20px;
    border: 1px solid var(--hxinv-border);
    background: #ffffff;
    text-align: left;
}

.hxinv_form_alert strong {
    display: block;
    color: var(--hxinv-text);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

.hxinv_form_alert span {
    display: block;
    margin-top: 6px;
    color: var(--hxinv-muted);
    font-size: 14px;
    line-height: 1.5;
}

.hxinv_form_alert_success {
    border-color: #b8d9c2;
    background: #f4fbf6;
}

.hxinv_form_alert_success strong {
    color: #107c41;
}

.hxinv_form_alert_error {
    border-color: #f1b8b8;
    background: #fff6f6;
}

.hxinv_form_alert_error strong {
    color: #b3261e;
}

.hxinv_request_form {
    margin: 42px auto 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--hxinv-border);
    text-align: left;
}

.hxinv_form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 18px;
}

.hxinv_request_form label {
    display: block;
}

.hxinv_request_form span {
    display: block;
    margin-bottom: 8px;
    color: var(--hxinv-text);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.hxinv_request_form input,
.hxinv_request_form select,
.hxinv_request_form textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--hxinv-border);
    background: #ffffff;
    color: var(--hxinv-text);
    font-family: "Segoe UI", "Elms Sans", Montserrat, Arial, Helvetica, sans-serif;
    font-size: 15px;
    outline: none;
}

.hxinv_request_form input,
.hxinv_request_form select {
    padding: 0 14px;
}

.hxinv_request_form textarea {
    padding: 14px;
    resize: vertical;
}

.hxinv_request_form input:focus,
.hxinv_request_form select:focus,
.hxinv_request_form textarea:focus {
    border-color: var(--hxinv-blue);
    box-shadow: 0 0 0 1px var(--hxinv-blue);
}

.hxinv_form_message {
    margin-top: 20px;
}

.hxinv_form_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 24px;
}

.hxinv_form_actions .hxinv_btn {
    appearance: none;
    border: 0;
}

.hxinv_request_note {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--hxinv-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* TABLET */

@media (max-width: 1180px) {
    .hxinv_hero_inner,
    .hxinv_notice_inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hxinv_cards,
    .hxinv_cards_three,
    .hxinv_cards_four,
    .hxinv_pricing_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hxinv_modality_grid,
    .hxinv_limits_grid {
        grid-template-columns: 1fr;
    }

    .hxinv_hero_panel_actions {
        justify-content: flex-start;
    }
}

/* MOBILE */

@media (max-width: 820px) {
    .hxinv_wrap,
    .hxinv_navbar_inner,
    .hxinv_request_inner {
        width: min(100% - 32px, 1320px);
    }

    .hxinv_hero_inner {
        min-height: auto;
        padding: 52px 0;
    }

    .hxinv_title,
    .hxinv_subtitle,
    .hxinv_h2,
    .hxinv_notice h2,
    .hxinv_request h2,
    .hxinv_panel_title,
    .hxinv_panel_subtitle,
    .hxinv_card h3,
    .hxinv_price_card h3,
    .hxinv_modality h3,
    .hxinv_limit_card h3 {
        font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-weight: 500;
        letter-spacing: -0.028em;
        text-wrap: balance;
    }

    .hxinv_title {
        font-size: clamp(38px, 10vw, 46px);
        line-height: 1.08;
    }

    .hxinv_title sup {
        font-size: 0.22em;
        margin-left: 0.04em;
    }

    .hxinv_subtitle {
        font-size: clamp(26px, 7.4vw, 34px);
        line-height: 1.16;
    }

    .hxinv_h2,
    .hxinv_notice h2,
    .hxinv_request h2 {
        font-size: clamp(30px, 8.4vw, 40px);
        line-height: 1.12;
    }

    .hxinv_panel_title,
    .hxinv_panel_subtitle,
    .hxinv_modality h3,
    .hxinv_limit_card h3 {
        font-size: clamp(27px, 7.4vw, 34px);
        line-height: 1.14;
    }

    .hxinv_card h3,
    .hxinv_price_card h3 {
        font-size: 21px;
        line-height: 1.2;
    }

    .hxinv_intro,
    .hxinv_text,
    .hxinv_request_intro {
        font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 17px;
        line-height: 1.68;
        letter-spacing: -0.01em;
    }

    .hxinv_panel_logo_global {
        width: min(340px, 94%);
        max-height: 104px;
    }

    .hxinv_hero_panel_actions {
        flex-direction: column;
        justify-content: stretch;
        align-items: stretch;
    }

    .hxinv_panel_signin,
    .hxinv_panel_enterprise {
        width: 100%;
        min-width: 0;
    }

    .hxinv_strip_grid,
    .hxinv_cards,
    .hxinv_cards_three,
    .hxinv_cards_four,
    .hxinv_pricing_grid,
    .hxinv_form_grid {
        grid-template-columns: 1fr;
    }

    .hxinv_section {
        padding: 58px 0;
    }

    .hxinv_panel,
    .hxinv_card,
    .hxinv_price_card,
    .hxinv_modality,
    .hxinv_limit_card,
    .hxinv_request_form {
        padding: 26px;
    }

    .hxinv_actions,
    .hxinv_form_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hxinv_btn,
    .hxinv_link,
    .hxinv_form_actions .hxinv_btn,
    .hxinv_form_actions .hxinv_link {
        width: 100%;
        justify-content: center;
    }
}

/* SMALL MOBILE */

@media (max-width: 420px) {
    .hxinv_title {
        font-size: clamp(35px, 9.4vw, 40px);
        letter-spacing: -0.028em;
    }

    .hxinv_panel_logo_global {
        width: 100%;
    }
}