/* ITKapocs Enterprise polish layer */
:root {
    --itk-bg: #f5f8fc;
    --itk-surface: rgba(255, 255, 255, .94);
    --itk-surface-strong: #ffffff;
    --itk-text: #0f172a;
    --itk-muted: #64748b;
    --itk-border: #dbe7f5;
    --itk-border-strong: #bfdbfe;
    --itk-primary: #2563eb;
    --itk-primary-dark: #1e3a8a;
    --itk-success: #16a34a;
    --itk-warning: #f59e0b;
    --itk-danger: #dc2626;
    --itk-info: #0891b2;
    --itk-radius: 24px;
    --itk-radius-sm: 16px;
    --itk-shadow: 0 24px 70px rgba(15, 23, 42, .09);
    --itk-shadow-soft: 0 14px 38px rgba(15, 23, 42, .07);
    --itk-focus: 0 0 0 4px rgba(37, 99, 235, .18);
    --itk-ease: cubic-bezier(.2, .8, .2, 1);
}

html {
    min-width: 320px;
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
    background:
        linear-gradient(135deg, rgba(219, 234, 254, .62), rgba(248, 250, 252, .92) 35%, rgba(245, 248, 252, 1) 100%);
    color: var(--itk-text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
    overflow: hidden;
}

main {
    width: min(100%, 1320px);
}

img,
svg,
canvas,
video {
    max-width: 100%;
}

.page,
main,
.dashboardHead,
.section,
.tableCard,
.ticketCardTable,
.providerTicketCardTable,
.customerTicketCardTable,
.providerCard,
.statGrid,
.cards {
    max-width: 100%;
}

a,
button,
input,
select,
textarea,
summary {
    -webkit-tap-highlight-color: transparent;
}

:is(a, button, input, select, textarea, summary):focus-visible {
    outline: 0;
    box-shadow: var(--itk-focus);
}

.nav {
    z-index: 100000;
    min-height: 78px;
    gap: clamp(12px, 2vw, 28px);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 1px 0 rgba(219, 231, 245, .9), 0 18px 50px rgba(15, 23, 42, .05);
}

.brand {
    flex: 0 0 auto;
    letter-spacing: 0;
}

.logo {
    box-shadow: 0 14px 28px rgba(30, 58, 138, .2);
}

.hamb {
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-color: var(--itk-border);
    color: var(--itk-text);
    transition: transform .2s var(--itk-ease), border-color .2s var(--itk-ease), background .2s var(--itk-ease);
}

.hamb:hover {
    transform: translateY(-1px);
    border-color: var(--itk-border-strong);
    background: #f8fbff;
}

.navlinks {
    min-width: 0;
}

.navlinks a,
.navlinks .navPill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s var(--itk-ease), color .2s var(--itk-ease), transform .2s var(--itk-ease);
}

.navlinks a:hover,
.navlinks .navPill:hover {
    background: #eff6ff;
    color: #1d4ed8;
    transform: translateY(-1px);
}

.userpill,
.companySwitcher {
    flex: 0 0 auto;
}

.companySwitcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px 7px 13px;
    border: 1px solid var(--itk-border);
    border-radius: 999px;
    background: #eef8ff;
    box-shadow: 0 12px 28px rgba(14, 116, 144, .09);
}

.companySwitcher label {
    margin: 0;
    color: #075985;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.companySwitcher select {
    width: min(220px, 28vw);
    min-height: 36px;
    padding: 6px 30px 6px 12px;
    border: 1px solid var(--itk-border);
    border-radius: 999px;
    background-color: #fff;
    color: var(--itk-text);
    font-weight: 900;
}

.btn,
button,
input[type="submit"],
input[type="button"] {
    position: relative;
    overflow: hidden;
    min-width: 0;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
    transition: transform .2s var(--itk-ease), box-shadow .2s var(--itk-ease), filter .2s var(--itk-ease), background .2s var(--itk-ease);
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateY(-1px);
}

.btn:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(0) scale(.99);
}

button:disabled,
.btn[disabled],
input[type="submit"]:disabled,
input[type="button"]:disabled {
    cursor: not-allowed;
    transform: none;
}

button:disabled:hover,
.btn[disabled]:hover,
input[type="submit"]:disabled:hover,
input[type="button"]:disabled:hover {
    transform: none;
}

.itkRipple {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    pointer-events: none;
    background: rgba(255, 255, 255, .5);
    transform: translate(-50%, -50%) scale(1);
    animation: itkRipple .55s var(--itk-ease) forwards;
}

@keyframes itkRipple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

:is(input, select, textarea, .tableSearch) {
    min-height: 46px;
    border-color: var(--itk-border);
    transition: border-color .2s var(--itk-ease), box-shadow .2s var(--itk-ease), background .2s var(--itk-ease);
}

:is(input, select, textarea, .tableSearch):focus {
    border-color: #93c5fd;
    box-shadow: var(--itk-focus);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.toast {
    box-shadow: var(--itk-shadow-soft);
    border: 1px solid rgba(255, 255, 255, .72);
}

.hero,
.heroText,
.subHero,
.trackingBox,
.searchBox,
.cityCombo {
    overflow: visible;
}

.heroText:focus-within,
.subHero:focus-within,
.trackingBox:focus-within {
    position: relative;
    z-index: 1000;
}

.cityCombo {
    position: relative;
    z-index: 20;
}

.cityCombo:focus-within,
.cityCombo.isOpen {
    z-index: 120000;
}

.cityComboList {
    z-index: 120001 !important;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
}

.trackInputRow {
    min-width: 0;
}

.trackInputRow input {
    min-width: 0;
}

.trackInputRow button,
.searchBox > button,
.searchBox > .btn {
    flex: 0 0 auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
}

.itkNotificationWrap {
    z-index: 100002;
}

.itkNotificationBell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
    font-size: 18px;
    overflow: visible;
}

.itkNotificationBadge {
    box-shadow: 0 8px 18px rgba(239, 68, 68, .25);
}

.itkNotificationPanel {
    z-index: 120002;
}

.billingPaymentHero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 22px 0;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #bfdbfe;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(30, 58, 138, .92));
    box-shadow: 0 30px 80px rgba(15, 23, 42, .14);
}

.billingPaymentHero h1 {
    margin: 14px 0 10px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
}

.billingPaymentHero p {
    margin: 0;
    color: #dbeafe;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
}

.billingPaymentActions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    max-width: 460px;
}

.billingPaymentGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 20px;
    margin: 22px 0 48px;
}

.billingPaymentCard {
    min-width: 0;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid #dbeafe;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.billingPaymentCardHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.billingPaymentCardHead h2 {
    margin: 10px 0 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
}

.billingPaymentStatus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 950;
    white-space: normal;
    text-align: center;
}

.billingPaymentStatus.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.billingPaymentStatus.danger {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.billingPaymentStatus.pending {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.billingPaymentRows {
    display: grid;
    gap: 12px;
}

.billingPaymentRow {
    display: grid;
    grid-template-columns: minmax(130px, .36fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.billingPaymentRow:last-child {
    border-bottom: 0;
}

.billingPaymentRow span {
    color: #64748b;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0;
}

.billingPaymentRow strong {
    min-width: 0;
    color: #0f172a;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.billingPaymentRow a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 950;
    text-decoration: none;
}

.billingJsonCard .jsonBox {
    width: 100%;
    max-width: 100%;
    max-height: 520px;
    overflow: auto;
    margin: 0;
    border-radius: 20px;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.billingHistoryPanel {
    margin: 22px 0 54px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid #dbeafe;
    border-radius: 30px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.billingHistoryPanel .billingPaymentCardHead p {
    margin: 8px 0 0;
    color: #64748b;
    line-height: 1.55;
}

.billingHistoryList {
    display: grid;
    gap: 14px;
}

.billingHistoryItem {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.4fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .06);
}

.billingHistoryTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.billingHistoryTop small,
.billingHistoryMeta span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0;
}

.billingHistoryTop strong {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.billingHistoryMeta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}

.billingHistoryMeta div {
    min-width: 0;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
}

.billingHistoryMeta b {
    display: block;
    margin-top: 5px;
    color: #0f172a;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.billingHistoryAction {
    min-width: 120px;
}

.heroText,
.heroCard,
.subHero,
.tableCard,
.loginBox,
.sidePanel,
.ticketMain,
.proForm,
.providerCard,
.statGrid article,
.steps article,
.chartPanel,
.priceCard,
.legalCard,
.legalHero,
.trackingBox,
.billingCard,
.kbSection,
.kbCard,
.workloadPanel,
.lifecycleCard {
    border-color: rgba(219, 231, 245, .95);
    box-shadow: var(--itk-shadow);
}

.heroText,
.subHero,
.tableCard,
.loginBox,
.sidePanel,
.ticketMain,
.proForm,
.providerCard,
.statGrid article,
.steps article,
.chartPanel,
.priceCard,
.legalCard,
.trackingBox,
.billingCard,
.kbSection,
.kbCard {
    background: var(--itk-surface);
    backdrop-filter: blur(10px);
}

.itkReveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s var(--itk-ease), transform .55s var(--itk-ease);
}

.itkReveal.isVisible {
    opacity: 1;
    transform: none;
}

.tableCard {
    scrollbar-gutter: stable both-edges;
}

.tableCard table,
.itkTableScroll table {
    border-collapse: separate;
    border-spacing: 0;
}

.tableCard th,
.tableCard td,
.itkTableScroll th,
.itkTableScroll td {
    vertical-align: middle;
}

.tableCard tr,
.itkTableScroll tr {
    transition: background .18s var(--itk-ease);
}

.tableCard tbody tr:hover,
.itkTableScroll tbody tr:hover {
    background: rgba(239, 246, 255, .72);
}

.badge,
.statusBadge,
.navPill,
.eyebrow,
.chartBadge {
    letter-spacing: 0;
}

details.itkDetails {
    transition: box-shadow .2s var(--itk-ease), border-color .2s var(--itk-ease), transform .2s var(--itk-ease);
}

details.itkDetails[open] {
    border-color: var(--itk-border-strong);
}

details.itkDetails summary {
    cursor: pointer;
}

details.itkDetails summary::-webkit-details-marker {
    display: none;
}

.footer {
    width: min(100%, 1320px);
    margin: 0 auto;
    line-height: 1.7;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #eef4fb;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border: 3px solid #eef4fb;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

@media (min-width: 1201px) {
    .customerEnterprisePage {
        width: min(1500px, calc(100% - 56px));
    }

    .customerChartsGrid {
        grid-template-columns: minmax(0, 1.45fr) minmax(360px, .9fr);
        gap: 28px;
    }

    .customerChartsGrid.secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .customerLowerGrid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .customerLowerGrid > .cxPanel {
        overflow: hidden;
    }

    .customerLowerGrid > aside.cxPanel .cxProviderList {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .cxTableWrap:has(.customerTicketCardTable) {
        overflow: visible;
    }

    .customerTicketCardTable {
        min-width: 0 !important;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0 12px;
    }

    .customerTicketCardTable th {
        border-bottom: 0;
        padding: 0 14px 8px;
        color: #64748b;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .customerTicketCardTable th:nth-child(1),
    .customerTicketCardTable td:nth-child(1) {
        width: 17%;
    }

    .customerTicketCardTable th:nth-child(2),
    .customerTicketCardTable td:nth-child(2) {
        width: 25%;
    }

    .customerTicketCardTable th:nth-child(3),
    .customerTicketCardTable td:nth-child(3) {
        width: 19%;
    }

    .customerTicketCardTable th:nth-child(4),
    .customerTicketCardTable td:nth-child(4) {
        width: 12%;
    }

    .customerTicketCardTable th:nth-child(5),
    .customerTicketCardTable td:nth-child(5) {
        width: 15%;
    }

    .customerTicketCardTable th:nth-child(6),
    .customerTicketCardTable td:nth-child(6) {
        width: 12%;
    }

    .customerTicketCardTable td {
        border-top: 1px solid #dbeafe;
        border-bottom: 1px solid #dbeafe;
        background: linear-gradient(180deg, #fff, #f8fbff);
        padding: 16px 14px;
        vertical-align: middle;
        overflow-wrap: anywhere;
    }

    .customerTicketCardTable tbody tr {
        filter: drop-shadow(0 16px 30px rgba(15, 23, 42, .06));
    }

    .customerTicketCardTable td:first-child {
        border-radius: 18px 0 0 18px;
        border-left: 1px solid #dbeafe;
    }

    .customerTicketCardTable td:last-child {
        border-radius: 0 18px 18px 0;
        border-right: 1px solid #dbeafe;
    }

    .customerTicketCardTable b {
        color: #0f172a;
        font-size: 16px;
        line-height: 1.25;
    }

    .customerTicketCardTable .cxBadge {
        min-width: 0;
        justify-content: center;
        white-space: nowrap;
    }

    .customerTicketCardTable .cxTableBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        width: min(100%, 118px);
        min-width: 104px;
        border-radius: 999px;
        background: #eff6ff;
        color: #1d4ed8;
        text-decoration: none;
        box-shadow: inset 0 0 0 1px #bfdbfe;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 1100px) {
    .nav {
        padding-inline: clamp(14px, 3vw, 28px);
    }

    .navlinks {
        gap: 8px;
    }

    .companySwitcher select {
        width: 190px;
    }
}

@media (max-width: 1180px) {
    .nav {
        min-height: 76px;
        padding: 12px clamp(14px, 4vw, 28px);
    }

    .hamb {
        display: inline-flex !important;
        flex: 0 0 auto;
        width: 56px;
        height: 56px;
        border-radius: 18px;
        margin-left: auto;
    }

    .navlinks {
        display: grid !important;
        position: fixed !important;
        top: 88px !important;
        right: 14px !important;
        left: 14px !important;
        width: auto !important;
        min-width: 0 !important;
        max-height: calc(100dvh - 110px);
        overflow: auto;
        padding: 14px;
        border: 1px solid var(--itk-border);
        border-radius: 24px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px) scale(.98);
        transition: opacity .22s var(--itk-ease), transform .22s var(--itk-ease), visibility .22s var(--itk-ease);
        z-index: 110000;
    }

    .navlinks.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .navlinks a,
    .navlinks .btn,
    .navlinks .navPill,
    .navlinks .userpill,
    .companySwitcher {
        width: 100%;
        justify-content: flex-start;
    }

    .tableCard:has(.ticketCardTable) {
        overflow: visible;
    }

    .itk-table-scroll:has(.providerTicketCardTable) {
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
    }

    .tableCard table.ticketCardTable {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0;
    }

    .tableCard table.ticketCardTable thead {
        display: none;
    }

    .tableCard table.ticketCardTable,
    .tableCard table.ticketCardTable tbody,
    .tableCard table.ticketCardTable tr,
    .tableCard table.ticketCardTable td {
        display: block;
    }

    .tableCard table.ticketCardTable tbody {
        display: grid;
        gap: 22px;
        width: 100%;
    }

    .tableCard table.ticketCardTable tr {
        width: 100%;
        max-width: 100%;
        padding: clamp(18px, 4vw, 28px);
        border: 1px solid #bfdbfe;
        border-top: 8px solid #2563eb;
        border-radius: 24px;
        background: linear-gradient(180deg, #fff, #eff7ff);
        box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
        overflow: hidden;
    }

    .tableCard table.ticketCardTable td {
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px;
        padding: 14px 0;
        border-bottom: 1px solid #dbeafe;
        overflow: visible;
    }

    .tableCard table.ticketCardTable td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .tableCard table.ticketCardTable td:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .tableCard table.ticketCardTable td > * {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .tableCard table.ticketCardTable .badge,
    .tableCard table.ticketCardTable .statusBadge,
    .tableCard table.ticketCardTable [class*="prio-"],
    .tableCard table.ticketCardTable [class*="status-"] {
        justify-self: start;
        width: auto;
        max-width: 100%;
        min-height: 42px;
        padding: 10px 16px;
        white-space: normal;
        text-align: center;
    }

    .tableCard table.ticketCardTable .btn,
    .tableCard table.ticketCardTable button,
    .tableCard table.ticketCardTable input[type="submit"],
    .tableCard table.ticketCardTable input[type="button"] {
        width: 100%;
        min-height: 54px;
        justify-content: center;
        border-radius: 18px;
        color: inherit;
    }

    .tableCard table.ticketCardTable .btn:not(.ghost) {
        color: #fff;
    }

    .providerTicketCardTable {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0;
    }

    .providerTicketCardTable thead {
        display: none !important;
    }

    .providerTicketCardTable,
    .providerTicketCardTable tbody,
    .providerTicketCardTable tr,
    .providerTicketCardTable td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .providerTicketCardTable tbody {
        display: grid !important;
        gap: 22px;
    }

    .providerTicketCardTable tr {
        padding: clamp(18px, 4vw, 26px) !important;
        border: 1px solid #bfdbfe !important;
        border-top: 8px solid #2563eb !important;
        border-radius: 24px !important;
        background: linear-gradient(180deg, #fff, #eff7ff) !important;
        box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
        overflow: hidden !important;
    }

    .providerTicketCardTable td {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px;
        padding: 14px 0 !important;
        border-bottom: 1px solid #dbeafe !important;
        text-align: left !important;
        overflow: visible !important;
    }

    .providerTicketCardTable td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .providerTicketCardTable td:last-child {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .providerTicketCardTable td > * {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .providerTicketCardTable strong {
        display: block;
        max-width: 100%;
        font-size: clamp(22px, 7vw, 32px);
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .providerTicketCardTable .itk-muted {
        display: block;
        max-width: 100%;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    .providerTicketCardTable .itk-badge {
        justify-self: start;
        width: auto;
        max-width: 100%;
        min-height: 42px;
        padding: 10px 16px;
        white-space: normal;
        text-align: center;
    }

    .providerTicketCardTable .itk-btn {
        width: 100%;
        min-height: 56px;
        justify-content: center;
        border-radius: 18px;
        text-align: center;
    }

    .cxTableWrap:has(.customerTicketCardTable) {
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
    }

    .customerTicketCardTable {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0;
    }

    .customerTicketCardTable thead {
        display: none !important;
    }

    .customerTicketCardTable,
    .customerTicketCardTable tbody,
    .customerTicketCardTable tr,
    .customerTicketCardTable td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .customerTicketCardTable tbody {
        display: grid !important;
        gap: 22px;
    }

    .customerTicketCardTable tr {
        position: relative;
        padding: clamp(18px, 4vw, 26px) !important;
        border: 1px solid #bfdbfe !important;
        border-top: 8px solid #2563eb !important;
        border-radius: 24px !important;
        background:
            radial-gradient(circle at 88% 8%, rgba(37, 99, 235, .12), transparent 120px),
            linear-gradient(180deg, #fff 0%, #eff7ff 100%) !important;
        box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
        overflow: hidden !important;
    }

    .customerTicketCardTable td {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px;
        padding: 14px 0 !important;
        border-bottom: 1px solid #dbeafe !important;
        text-align: left !important;
        overflow: visible !important;
        color: #0f172a;
    }

    .customerTicketCardTable td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .customerTicketCardTable td:last-child {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .customerTicketCardTable td > * {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .customerTicketCardTable b {
        display: block;
        max-width: 100%;
        font-size: clamp(22px, 7vw, 32px);
        line-height: 1.15;
        color: #0f172a;
        overflow-wrap: anywhere;
    }

    .customerTicketCardTable .cxBadge {
        justify-self: start;
        width: auto;
        max-width: 100%;
        min-height: 42px;
        padding: 10px 16px;
        border-radius: 999px;
        white-space: normal;
        text-align: center;
        box-shadow: none;
    }

    .customerTicketCardTable .cxTableBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 56px;
        border-radius: 18px;
        background: #2563eb;
        color: #fff;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 18px 36px rgba(37, 99, 235, .18);
        white-space: normal;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 860px) {
    body {
        background: linear-gradient(180deg, #eef6ff, #f8fbff 42%, #f5f8fc);
    }

    main {
        padding: 18px clamp(12px, 4vw, 22px);
    }

    .nav {
        min-height: 76px;
        padding: 12px clamp(14px, 4vw, 22px);
    }

    .brand {
        font-size: clamp(22px, 8vw, 34px);
        min-width: 0;
    }

    .logo {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 20px;
    }

    .hamb {
        display: inline-flex;
        flex: 0 0 auto;
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .navlinks {
        display: grid;
        position: fixed;
        top: 88px;
        right: 14px;
        left: 14px;
        width: auto;
        min-width: 0;
        z-index: 110000;
        max-height: calc(100dvh - 110px);
        overflow: auto;
        padding: 14px;
        border: 1px solid var(--itk-border);
        border-radius: 24px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px) scale(.98);
        transition: opacity .22s var(--itk-ease), transform .22s var(--itk-ease);
    }

    .navlinks.open {
        display: grid;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .navlinks a,
    .navlinks .btn,
    .navlinks .navPill,
    .navlinks .userpill,
    .companySwitcher {
        width: 100%;
        justify-content: flex-start;
    }

    .navlinks .itkNotificationWrap {
        display: inline-flex;
        align-items: center;
        width: auto;
        min-height: 0;
        justify-self: start;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: transparent;
    }

    .navlinks .itkNotificationBell {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        border-radius: 999px;
        background: #e0f2fe;
        font-size: 22px;
    }

    .itkNotificationPanel {
        top: 92px;
        z-index: 130000;
    }

    .companySwitcher {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 18px;
        padding: 12px;
    }

    .companySwitcher select {
        width: 100%;
        min-height: 44px;
    }

    .heroText,
    .heroCard,
    .subHero,
    .tableCard,
    .loginBox,
    .sidePanel,
    .ticketMain,
    .proForm,
    .providerCard,
    .statGrid article,
    .steps article,
    .chartPanel,
    .priceCard,
    .legalCard,
    .trackingBox,
    .billingCard,
    .kbSection,
    .kbCard {
        border-radius: 22px;
    }

    .tableCard,
    .itkTableScroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tableCard table:not(.ticketCardTable):not(.billingCompactTable):not(.mobileCardTable),
    .itkTableScroll table:not(.ticketCardTable):not(.billingCompactTable):not(.mobileCardTable) {
        min-width: 760px;
    }

    .footer {
        padding-inline: 18px;
    }
}

@media (max-width: 560px) {
    main {
        padding-inline: 10px;
    }

    .heroText,
    .subHero,
    .loginBox,
    .sidePanel,
    .ticketMain,
    .proForm,
    .tableCard,
    .trackingBox,
    .legalCard,
    .kbSection {
        padding: 20px;
    }

    .btn,
    button,
    input[type="submit"],
    input[type="button"] {
        min-height: 46px;
    }

    .trackInputRow button,
    .searchBox > button,
    .searchBox > .btn {
        width: 100%;
        justify-content: center;
        padding-inline: 14px;
    }

    .billingPaymentHero {
        margin-top: 18px;
        border-radius: 28px;
        flex-direction: column;
        align-items: stretch;
    }

    .billingPaymentActions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: none;
    }

    .billingPaymentActions .btn {
        width: 100%;
    }

    .billingPaymentGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .billingPaymentCard {
        border-radius: 24px;
    }

    .billingPaymentCardHead {
        display: grid;
        gap: 12px;
    }

    .billingPaymentStatus {
        justify-self: start;
    }

    .billingPaymentRow {
        grid-template-columns: 1fr;
        gap: 7px;
        align-items: start;
    }

    .billingPaymentRow a {
        width: 100%;
    }

    .billingJsonCard .jsonBox {
        max-height: 360px;
        padding: 18px;
    }

    .billingHistoryPanel {
        border-radius: 24px;
    }

    .billingHistoryItem {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .billingHistoryTop {
        display: grid;
        gap: 12px;
    }

    .billingHistoryMeta {
        grid-template-columns: 1fr;
    }

    .billingHistoryAction {
        width: 100%;
        min-height: 54px;
    }
}

@media (max-width: 720px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .page,
    main {
        max-width: 100%;
        overflow-x: clip;
    }

    img,
    svg,
    canvas,
    video,
    iframe {
        max-width: 100%;
    }

    input,
    select,
    textarea,
    button,
    .btn,
    .itk-btn,
    .technicianBtn,
    .workloadBtn,
    .admin-btn,
    .billingPrimaryCta {
        max-width: 100%;
    }

    input,
    select,
    textarea {
        min-width: 0;
    }

    .btn,
    .itk-btn,
    .technicianBtn,
    .workloadBtn,
    .admin-btn {
        white-space: normal;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .heroText,
    .heroCard,
    .subHero,
    .tableCard,
    .loginBox,
    .sidePanel,
    .ticketMain,
    .proForm,
    .providerCard,
    .chartPanel,
    .priceCard,
    .legalCard,
    .trackingBox,
    .billingCard,
    .kbSection,
    .kbCard,
    .itk-chart-card,
    .itk-table-card,
    .workloadPanel,
    .workloadPreview,
    .technicianPanel {
        max-width: 100%;
    }

    .statGrid,
    .steps,
    .cards,
    .providerGrid,
    .ticketGrid,
    .pricingGrid,
    .billingGrid,
    .kbGrid {
        min-width: 0;
    }

    .statGrid > *,
    .steps > *,
    .cards > *,
    .providerGrid > *,
    .ticketGrid > *,
    .pricingGrid > *,
    .billingGrid > *,
    .kbGrid > * {
        min-width: 0;
    }

    h1,
    h2,
    h3,
    p,
    a,
    strong,
    span,
    small,
    label,
    td,
    th {
        overflow-wrap: anywhere;
    }

    .billingCompactTable {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .billingCompactTable,
    .billingCompactTable tbody,
    .billingCompactTable tr,
    .billingCompactTable td {
        display: block !important;
    }

    .billingCompactTable td {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        text-align: left;
    }

    .billingCompactTable td::before {
        display: block;
    }

    .billingCompactTable td > * {
        min-width: 0;
        max-width: 100%;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        border-collapse: separate;
        border-spacing: 0;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) thead {
        display: none !important;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable),
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tr,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody {
        display: grid !important;
        gap: 18px;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tr {
        position: relative;
        overflow: hidden;
        padding: 24px;
        border: 1px solid #bfdbfe !important;
        border-radius: 26px;
        background:
            radial-gradient(circle at 92% 0, rgba(219, 234, 254, .92) 0 54px, transparent 55px),
            linear-gradient(135deg, #fff 0%, #f8fbff 55%, #eff6ff 100%);
        box-shadow: 0 24px 58px rgba(30, 64, 175, .13);
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tr::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 8px;
        background: linear-gradient(90deg, #2563eb, #38bdf8, #172554);
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td {
        min-width: 0 !important;
        padding: 14px 0 !important;
        border: 0 !important;
        border-bottom: 1px solid #dbeafe !important;
        color: #0f172a;
        text-align: left !important;
        overflow-wrap: anywhere;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th {
        letter-spacing: 0;
        text-transform: none;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td:last-child,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th:last-child {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th::before,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 7px;
        color: #64748b;
        font-size: clamp(12px, 3.2vw, 14px);
        font-weight: 950;
        letter-spacing: .055em;
        line-height: 1.25;
        text-transform: uppercase;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th:first-child,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td:first-child {
        padding-top: 24px !important;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) tbody th:first-child,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td:first-child b,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td:first-child strong {
        display: inline-block;
        max-width: 100%;
        color: #0f172a;
        font-size: clamp(24px, 7.6vw, 38px);
        line-height: 1.16;
        overflow-wrap: anywhere;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) td > * {
        min-width: 0;
        max-width: 100%;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) .btn,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) button,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) input[type="submit"],
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) input[type="button"] {
        width: 100%;
        min-height: 54px;
        padding-inline: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) .badge,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) .statusBadge,
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) [class*="prio-"],
    table.mobileCardTable:not(.invoiceTable):not(.ticketCardTable):not(.billingCompactTable) [class*="status-"] {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        min-height: 38px;
        align-items: center;
        justify-content: center;
        padding: 9px 16px;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .itkReveal {
        opacity: 1;
        transform: none;
    }
}
