/* 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);
}

.brandAppLogo {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    object-fit: cover;
    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);
}

.itkScrollProgress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100010;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #38bdf8, #172554);
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
}

.nav.isScrolled {
    background: rgba(255,255,255,.96);
    box-shadow: 0 1px 0 rgba(191, 219, 254, .9), 0 22px 56px rgba(15, 23, 42, .10);
}

.navlinks a.isActive {
    background: #e0f2fe;
    color: #075985;
    box-shadow: inset 0 0 0 1px #bae6fd;
}

.itkPremiumSurface {
    isolation: isolate;
    position: relative;
    transition:
        box-shadow .24s var(--itk-ease),
        border-color .24s var(--itk-ease),
        background .24s var(--itk-ease);
}

.itkMotionCard {
    transform:
        perspective(900px)
        rotateX(var(--itk-tilt-x, 0deg))
        rotateY(var(--itk-tilt-y, 0deg))
        translateY(var(--itk-lift, 0));
    transform-style: preserve-3d;
    transition:
        transform .24s var(--itk-ease),
        box-shadow .24s var(--itk-ease),
        border-color .24s var(--itk-ease),
        background .24s var(--itk-ease);
}

.itkPremiumSurface::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--itk-spot-x, 50%) var(--itk-spot-y, 0%),
        rgba(59, 130, 246, .10),
        transparent 34%
    );
    opacity: 0;
    transition: opacity .22s var(--itk-ease);
    pointer-events: none;
}

.itkPremiumSurface:hover::after,
.itkPremiumSurface:focus-within::after {
    opacity: 1;
}

.itkMotionCard:hover {
    --itk-lift: -2px;
}

.itkPremiumSurface > * {
    position: relative;
    z-index: 1;
}

.itkMagnetic {
    transform: translate(var(--itk-magnetic-x, 0), var(--itk-magnetic-y, 0));
}

.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);
}

.hasEnterprisePolish .cityCombo {
    --city-radius: 19px;
}

.hasEnterprisePolish .cityComboInput {
    min-height: 62px;
    padding: 16px 54px 16px 18px;
    border: 1px solid rgba(191, 219, 254, .95);
    border-radius: var(--city-radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.94));
    color: var(--itk-text);
    font-weight: 850;
    letter-spacing: 0;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .06), inset 0 1px 0 rgba(255,255,255,.85);
}

.hasEnterprisePolish .cityComboInput::selection {
    background: rgba(37, 99, 235, .14);
    color: var(--itk-text);
}

.hasEnterprisePolish .cityComboInput:hover {
    border-color: #93c5fd;
    background: #fff;
}

.hasEnterprisePolish .cityComboInput:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, .16), 0 20px 44px rgba(37, 99, 235, .12);
}

.hasEnterprisePolish .cityCombo::after {
    right: 22px;
    width: 13px;
    height: 13px;
    border-color: #64748b;
    transition: transform .22s var(--itk-ease), border-color .22s var(--itk-ease);
}

.hasEnterprisePolish .cityCombo.isOpen::after,
.hasEnterprisePolish .cityCombo:focus-within::after {
    border-color: #2563eb;
}

.hasEnterprisePolish .cityCombo.isOpen::after {
    transform: translateY(-35%) rotate(225deg);
}

.hasEnterprisePolish .cityComboList {
    top: calc(100% + 12px);
    z-index: 100020;
    display: grid;
    gap: 7px;
    max-height: min(360px, 48vh);
    padding: 10px;
    overflow: auto;
    border: 1px solid rgba(191, 219, 254, .92);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.97));
    box-shadow:
        0 30px 82px rgba(15, 23, 42, .18),
        inset 0 1px 0 rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
}

.hasEnterprisePolish .hero,
.hasEnterprisePolish .heroText,
.hasEnterprisePolish .searchBox,
.hasEnterprisePolish .cityCombo,
.hasEnterprisePolish .providerSearchHero {
    overflow: visible;
}

.hasEnterprisePolish .hero,
.hasEnterprisePolish .providerSearchHero {
    position: relative;
    z-index: 30;
}

.hasEnterprisePolish .hero:has(.cityCombo.isOpen),
.hasEnterprisePolish .heroText:has(.cityCombo.isOpen),
.hasEnterprisePolish .providerSearchHero:has(.cityCombo.isOpen) {
    z-index: 120;
}

.hasEnterprisePolish .trackingBox {
    position: relative;
    z-index: 1;
}

.hasEnterprisePolish .cityComboList::-webkit-scrollbar {
    width: 8px;
}

.hasEnterprisePolish .cityComboList::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #bfd3ea;
}

.hasEnterprisePolish .cityComboOption,
.hasEnterprisePolish .cityComboEmpty {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 17px;
    background: transparent;
    color: var(--itk-text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    text-align: left;
    box-shadow: none;
    overflow: visible;
    white-space: normal;
}

.hasEnterprisePolish .cityComboOption::before {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, .10);
}

.hasEnterprisePolish .cityComboOption:hover,
.hasEnterprisePolish .cityComboOption:focus,
.hasEnterprisePolish .cityComboOption.isSelected {
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    color: #1d4ed8;
    transform: none;
}

.hasEnterprisePolish .cityComboOption.isSelected::after {
    content: "\2713";
    margin-left: auto;
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}

.hasEnterprisePolish .cityComboEmpty {
    color: var(--itk-muted);
    background: #f8fbff;
}

.hasEnterprisePolish .heroCard p {
    color: rgba(226, 232, 240, .92) !important;
}

.hasEnterprisePolish .heroCard .tags span {
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.16);
    color: #fff;
}

.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,
.adminPanel,
.adminHero,
.providerDirectoryCard,
.featuredProviderCard,
.itkLegacyPanel,
.itkLegacyForm {
    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,
.workloadPanel,
.lifecycleCard,
.adminPanel,
.providerDirectoryCard,
.featuredProviderCard,
.itkLegacyPanel,
.itkLegacyForm {
    position: relative;
    background: var(--itk-surface);
    backdrop-filter: blur(10px);
}

.itkLegacyPanel,
.itkLegacyForm {
    border: 1px solid rgba(219, 231, 245, .95);
    border-radius: clamp(22px, 3vw, 34px);
    background:
        radial-gradient(circle at 100% 0, rgba(219, 234, 254, .82) 0 74px, transparent 76px),
        rgba(255, 255, 255, .94);
}

.itkLegacyPanel {
    padding: clamp(22px, 3vw, 34px);
    margin-block: 18px;
}

.itkLegacyPanel:has(.tableCard),
.itkLegacyPanel:has(.heroText),
.itkLegacyPanel:has(.subHero),
.itkLegacyPanel:has(.ticketMain),
.itkLegacyPanel:has(.loginBox),
.itkLegacyPanel:has(.proForm) {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.itkLegacyForm {
    display: grid;
    gap: 16px;
    padding: clamp(20px, 3vw, 30px);
}

.itkLegacyForm label {
    color: #334155;
    font-weight: 900;
}

.itkLegacyForm .inline,
.itkLegacyForm .row,
.inline,
.row {
    flex-wrap: wrap;
    min-width: 0;
}

.itkLegacyList {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 16px 0;
    list-style: none;
}

.itkLegacyList li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: rgba(248, 251, 255, .82);
    color: #334155;
    font-weight: 650;
    line-height: 1.45;
}

.itkLegacyList li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 19px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 0 0 5px rgba(219, 234, 254, .85);
}

.itkLegacyPanel h1,
.itkLegacyPanel h2,
.itkLegacyPanel h3,
.itkLegacyForm h1,
.itkLegacyForm h2,
.itkLegacyForm h3 {
    color: #0f172a;
    letter-spacing: 0;
}

.itkLegacyPanel p,
.itkLegacyPanel small,
.itkLegacyForm p,
.itkLegacyForm small {
    color: #64748b;
    line-height: 1.6;
}

.hasEnterprisePolish main :is(input, select, textarea, .tableSearch):not([type="checkbox"]):not([type="radio"]) {
    border-radius: 16px;
    background:
        linear-gradient(180deg, #fff, #f8fbff);
    color: #0f172a;
    font-weight: 650;
}

.hasEnterprisePolish main :is(input, select, textarea, .tableSearch)::placeholder {
    color: #7c8da5;
}

.hasEnterprisePolish main :is(label, th, .muted, small) {
    letter-spacing: 0;
}

.hasEnterprisePolish main :is(.btn, button, input[type="submit"], input[type="button"]) {
    min-height: 46px;
    border-radius: 16px;
}

.hasEnterprisePolish main :is(.btn.ghost, button.ghost) {
    border: 1px solid #dbeafe;
    background:
        linear-gradient(180deg, #fff, #f8fbff);
    color: #0f172a;
}

.hasEnterprisePolish main :is(.empty, .desc, .message, .demo) {
    border: 1px solid #dbeafe;
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(30, 64, 175, .08);
}

.hasEnterprisePolish main .demo {
    background:
        linear-gradient(135deg, #0f172a, #1e3a8a);
}

.hasEnterprisePolish main table:not(.invoiceTable) {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.hasEnterprisePolish main table:not(.invoiceTable) thead th {
    border-bottom: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 950;
}

.hasEnterprisePolish main table:not(.invoiceTable) tbody tr {
    background: rgba(255,255,255,.78);
}

.hasEnterprisePolish main table:not(.invoiceTable) tbody td:first-child {
    border-left: 1px solid #e8f1fb;
    border-radius: 18px 0 0 18px;
}

.hasEnterprisePolish main table:not(.invoiceTable) tbody td:last-child {
    border-right: 1px solid #e8f1fb;
    border-radius: 0 18px 18px 0;
}

.hasEnterprisePolish main table:not(.invoiceTable) tbody td {
    border-bottom: 1px solid #e8f1fb;
    border-top: 1px solid #e8f1fb;
}

.contractPage.itkLegacyPanel,
.technicianPage.itkLegacyPanel,
.workloadPage.itkLegacyPanel,
.providerDashboardPage.itkLegacyPanel,
.customerEnterprisePage.itkLegacyPanel,
.legalPage.itkLegacyPanel,
.loginPage.itkLegacyPanel,
.notificationPage.itkLegacyPanel,
.securityPage.itkLegacyPanel,
.subAutoPage.itkLegacyPanel,
.aiAssistantPage.itkLegacyPanel,
.barionModernPage.itkLegacyPanel,
.barionApprovalPage.itkLegacyPanel,
.barionTestPage.itkLegacyPanel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contractHero,
.technicianHero,
.workloadHero {
    border: 1px solid rgba(191, 219, 254, .18);
    background:
        radial-gradient(circle at 18% 0%, rgba(59,130,246,.26), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #172554 56%, #2563eb 135%) !important;
}

.contractHero h1,
.technicianHero h1,
.workloadHero h1,
.contractHero.itkLegacyPanel h1,
.technicianHero.itkLegacyPanel h1,
.workloadHero.itkLegacyPanel h1 {
    color: #ffffff !important;
    text-shadow: 0 10px 26px rgba(15, 23, 42, .22);
}

.contractHero p,
.technicianHero p,
.workloadHero p,
.contractHero .muted,
.technicianHero .muted,
.workloadHero .muted {
    color: rgba(226, 232, 240, .94) !important;
}

.contractHero .contractEyebrow,
.technicianHero .technicianEyebrow,
.workloadHero .workloadEyebrow {
    background: rgba(219, 234, 254, .96) !important;
    color: #1d4ed8 !important;
}

.contractHero .contractBtn.ghost,
.workloadHero .workloadHeroBtn {
    background: #ffffff !important;
    color: #1d4ed8 !important;
}

.technicianHeroStat {
    background: rgba(255, 255, 255, .14) !important;
    border-color: rgba(255, 255, 255, .22) !important;
    color: #ffffff !important;
}

.technicianHeroStat span {
    color: #dbeafe !important;
}

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

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

.itkReveal.isVisible.itkMotionCard {
    transform:
        perspective(900px)
        rotateX(var(--itk-tilt-x, 0deg))
        rotateY(var(--itk-tilt-y, 0deg))
        translateY(var(--itk-lift, 0));
}

.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;
    }

    .brandAppLogo {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
        border-radius: 18px;
    }

    .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;
    }
}

/* Public provider directory polish */
.providerSearchHero {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: visible;
    padding: clamp(34px, 5vw, 64px) !important;
    border: 1px solid rgba(191, 219, 254, .95) !important;
    background:
        radial-gradient(circle at 85% 12%, rgba(59, 130, 246, .18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 54%, #eff6ff 100%) !important;
    box-shadow: 0 30px 80px rgba(30, 64, 175, .12) !important;
}

.providerSearchHero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #38bdf8, #172554);
}

.providerSearchHero .eyebrow {
    width: fit-content;
    background: #dbeafe !important;
    color: #1d4ed8 !important;
    box-shadow: none;
}

.providerSearchHero h1 {
    max-width: 880px;
    color: #0f172a !important;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.03;
}

.providerSearchHero p {
    max-width: 900px;
    color: #475569 !important;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 650;
    line-height: 1.55;
}

.providerSearchHero .searchBox {
    width: min(760px, 100%);
    margin-top: 4px;
    padding: 8px;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 46px rgba(30, 64, 175, .10);
}

.providerSearchHero .cityCombo,
.providerSearchHero select {
    flex: 1 1 auto;
    min-width: 0;
}

.providerSearchHero .searchBox > button {
    min-height: 58px;
    padding-inline: 28px;
    border-radius: 17px;
    white-space: nowrap;
}

.providerDirectory {
    gap: 22px !important;
}

.providerDirectory.providerDirectoryAsCards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px !important;
    align-items: stretch;
    margin: 28px 0 46px;
}

.hasEnterprisePolish .featuredProviders,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    outline: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    isolation: auto !important;
}

.hasEnterprisePolish .featuredProviders::before,
.hasEnterprisePolish .featuredProviders::after,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards::before,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards::after {
    display: none !important;
    content: none !important;
}

.hasEnterprisePolish .featuredProviders.itkPremiumSurface::after,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards.itkPremiumSurface::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
}

.hasEnterprisePolish .featuredProviderGrid {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    overflow: visible !important;
    isolation: auto !important;
}

.hasEnterprisePolish .featuredProviderGrid::before,
.hasEnterprisePolish .featuredProviderGrid::after {
    display: none !important;
    content: none !important;
}

.providerDirectoryAsCards .featuredProviderCard {
    min-height: 430px;
}

.providerDirectoryAsCards .featuredProviderCard > p {
    min-height: 58px;
}

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

.providerDirectoryAsCards .featuredProviderMetrics span:first-child {
    grid-column: 1 / -1;
}

.providerDirectoryAsCards .publicProviderActions.compact {
    margin-top: auto;
}

.providerDirectoryCard {
    border: 1px solid #bfdbfe !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--provider-accent) 13%, transparent) 0 90px, transparent 92px),
        linear-gradient(135deg, #fff 0%, #f8fbff 58%, #eff6ff 100%) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10) !important;
}

.hasEnterprisePolish .providerDirectoryCard.isFeatured {
    border-color: color-mix(in srgb, var(--provider-accent) 34%, #bfdbfe) !important;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--provider-accent-2) 22%, transparent) 0 110px, transparent 112px),
        linear-gradient(135deg,
            color-mix(in srgb, var(--provider-accent) 14%, #ffffff) 0%,
            #ffffff 44%,
            color-mix(in srgb, var(--provider-accent-2) 13%, #eff6ff) 100%) !important;
    box-shadow:
        0 14px 30px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255,255,255,.78) !important;
}

.hasEnterprisePolish .providerDirectoryCard.isFeatured::before {
    background: linear-gradient(90deg, var(--provider-accent), #38bdf8, var(--provider-accent-2));
}

.hasEnterprisePolish .providerDirectoryCard.isFeatured:hover {
    border-color: color-mix(in srgb, var(--provider-accent) 48%, #93c5fd) !important;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, .14),
        0 0 0 1px rgba(255,255,255,.6) !important;
}

.providerDirectoryCard::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--provider-accent), #38bdf8, var(--provider-accent-2));
}

.providerDirectoryCard:hover {
    transform: translateY(-3px);
}

.providerDirectoryIdentity h3,
.providerDirectoryCard h3 {
    color: #0f172a !important;
    font-size: clamp(25px, 2.2vw, 32px);
}

.providerDirectoryIdentity p,
.providerDirectoryBody > p {
    color: #52637a !important;
    font-size: 16px;
    font-weight: 600;
}

.providerDirectoryBody > p {
    max-width: 640px;
}

.providerDirectoryAside {
    border-left-color: #dbeafe !important;
}

.providerDirectoryCard .featuredProviderMetrics span,
.providerDirectoryCard .featuredUsage {
    border-color: #dbeafe;
    background: rgba(255,255,255,.74);
    color: #52637a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.providerDirectoryCard .featuredProviderMetrics b,
.providerDirectoryCard .featuredUsage strong {
    color: #0f172a;
}

.providerDirectoryCard .btn {
    min-height: 50px;
    border-radius: 16px;
}

.hasEnterprisePolish .featuredProviderCard {
    isolation: isolate;
}

.hasEnterprisePolish .featuredProviderCard.itkPremiumSurface::after {
    display: none !important;
    content: none !important;
}

.hasEnterprisePolish .featuredProviderCard::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--provider-shine-x, 82%) var(--provider-shine-y, 16%), rgba(255,255,255,.12), transparent 30%);
    opacity: 0;
    transform: none;
    transition: opacity .22s var(--itk-ease);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hasEnterprisePolish .featuredProviderCard:hover::before,
.hasEnterprisePolish .featuredProviderCard:focus-within::before {
    opacity: .42;
}

.hasEnterprisePolish .featuredProviderCard .providerGlow {
    z-index: 1;
    background:
        radial-gradient(circle at var(--provider-shine-x, 50%) var(--provider-shine-y, 34%),
            rgba(255,255,255,.30) 0%,
            rgba(255,255,255,.16) 12%,
            rgba(255,255,255,.04) 28%,
            transparent 44%);
    filter: none;
    mix-blend-mode: screen;
}

.hasEnterprisePolish .featuredProviderCard:hover .providerGlow,
.hasEnterprisePolish .featuredProviderCard:focus-within .providerGlow {
    opacity: .56;
    transform: none;
}

.hasEnterprisePolish .featuredProviderCard > :not(.providerGlow) {
    position: relative;
    z-index: 2;
}

.hasEnterprisePolish .featuredProviderCard.isPrime,
.hasEnterprisePolish .featuredProviderCard.isFeatured {
    box-shadow:
        0 12px 26px rgba(15, 23, 42, .18),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.hasEnterprisePolish .featuredProviderCard.isPrime:hover,
.hasEnterprisePolish .featuredProviderCard.isFeatured:hover {
    border-color: rgba(255,255,255,.46);
    box-shadow:
        0 16px 34px rgba(15, 23, 42, .20),
        0 0 0 1px rgba(255,255,255,.16),
        inset 0 1px 0 rgba(255,255,255,.24);
}

@media (max-width: 1100px) {
    .providerDirectory.providerDirectoryAsCards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .providerSearchHero {
        padding: 30px 22px !important;
        border-radius: 28px !important;
    }

    .providerSearchHero .searchBox {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .providerSearchHero .searchBox > button {
        width: 100%;
        white-space: normal;
    }

    .providerDirectory.providerDirectoryAsCards {
        grid-template-columns: 1fr;
        gap: 18px !important;
        margin-top: 22px;
    }

    .providerDirectoryAsCards .featuredProviderCard {
        min-height: 0;
    }

    .providerDirectoryAsCards .featuredProviderCard > p {
        min-height: 0;
    }

    .providerDirectoryAsCards .featuredProviderMetrics {
        grid-template-columns: 1fr;
    }

    .providerDirectoryCard {
        padding: 24px !important;
        border-radius: 28px !important;
    }

    .providerDirectoryIdentity {
        gap: 14px;
    }

    .providerBadgeStack {
        justify-content: flex-start;
    }

    .providerDirectoryAside {
        border-top-color: #dbeafe !important;
    }

    .providerDirectoryAside .publicProviderActions {
        grid-template-columns: 1fr;
    }
}

/* Unified chart polish */
.hasEnterprisePolish .itk-chart-grid,
.hasEnterprisePolish .itk-chart-grid.three,
.hasEnterprisePolish .customerChartsGrid,
.hasEnterprisePolish .customerChartsGrid.secondary,
.hasEnterprisePolish .itk-ba-charts,
.hasEnterprisePolish .itk-sub-analytics-grid,
.hasEnterprisePolish .chartGrid,
.hasEnterprisePolish .lowerCharts {
    min-width: 0;
    align-items: stretch;
}

.hasEnterprisePolish .itk-chart-card,
.hasEnterprisePolish .cxPanel:has(canvas),
.hasEnterprisePolish .chartPanel,
.hasEnterprisePolish .itk-ba-card,
.hasEnterprisePolish .itk-sub-card {
    min-width: 0;
    overflow: hidden;
}

.hasEnterprisePolish .itk-chart-box,
.hasEnterprisePolish .cxChartBox,
.hasEnterprisePolish .itk-ba-chart,
.hasEnterprisePolish .itk-sub-chart-box,
.hasEnterprisePolish .chartPanel,
.hasEnterprisePolish .chartBox {
    min-width: 0;
    max-width: 100%;
}

.hasEnterprisePolish .itk-chart-box canvas,
.hasEnterprisePolish .cxChartBox canvas,
.hasEnterprisePolish .itk-ba-chart canvas,
.hasEnterprisePolish .itk-sub-chart-box canvas,
.hasEnterprisePolish .chartPanel canvas,
.hasEnterprisePolish .chartBox canvas {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
}

.hasEnterprisePolish canvas[id*="Chart"],
.hasEnterprisePolish canvas[id^="chart"] {
    display: block;
    max-width: 100% !important;
}

.hasEnterprisePolish .itk-chart-box,
.hasEnterprisePolish .cxChartBox,
.hasEnterprisePolish .itk-ba-chart,
.hasEnterprisePolish .itk-sub-chart-box {
    height: clamp(270px, 26vw, 360px);
}

.hasEnterprisePolish .itk-chart-box.large,
.hasEnterprisePolish .cxChartBox.large {
    height: clamp(330px, 34vw, 430px);
}

.hasEnterprisePolish .cxChartBox.doughnut,
.hasEnterprisePolish .itk-chart-card:has(canvas[id*="Status"]) .itk-chart-box,
.hasEnterprisePolish .itk-chart-card:has(canvas[id*="Priority"]) .itk-chart-box,
.hasEnterprisePolish .itk-chart-card:has(canvas[id*="Plan"]) .itk-chart-box {
    height: clamp(310px, 30vw, 390px);
}

.hasEnterprisePolish .providerDashboardPage .itk-chart-grid,
.hasEnterprisePolish .providerDashboardPage .itk-chart-grid + .itk-chart-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

@media (max-width: 980px) {
    .hasEnterprisePolish .providerDashboardPage .itk-chart-grid,
    .hasEnterprisePolish .providerDashboardPage .itk-chart-grid + .itk-chart-grid,
    .hasEnterprisePolish .customerChartsGrid,
    .hasEnterprisePolish .customerChartsGrid.secondary,
    .hasEnterprisePolish .itk-chart-grid,
    .hasEnterprisePolish .itk-chart-grid.three {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    .hasEnterprisePolish .itk-chart-card,
    .hasEnterprisePolish .cxPanel:has(canvas),
    .hasEnterprisePolish .chartPanel,
    .hasEnterprisePolish .itk-ba-card,
    .hasEnterprisePolish .itk-sub-card {
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .hasEnterprisePolish .itk-chart-box,
    .hasEnterprisePolish .itk-chart-box.large,
    .hasEnterprisePolish .cxChartBox,
    .hasEnterprisePolish .cxChartBox.large,
    .hasEnterprisePolish .cxChartBox.doughnut,
    .hasEnterprisePolish .itk-ba-chart,
    .hasEnterprisePolish .itk-sub-chart-box,
    .hasEnterprisePolish .chartPanel,
    .hasEnterprisePolish .chartBox {
        height: min(330px, 74vw) !important;
        min-height: 250px;
    }

    .hasEnterprisePolish .itk-chart-head,
    .hasEnterprisePolish .cxPanelHeader {
        gap: 8px;
    }

    .hasEnterprisePolish .itk-chart-head h2,
    .hasEnterprisePolish .cxPanelHeader h2,
    .hasEnterprisePolish .chartPanel h2 {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }
}

/* v41.2 - clean provider showcase surfaces and premium edge gleam */
.hasEnterprisePolish .featuredProviders,
.hasEnterprisePolish .featuredProviderGrid,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards,
.hasEnterprisePolish .featuredProviders.itkLegacyPanel,
.hasEnterprisePolish .featuredProviders.itkPremiumSurface,
.hasEnterprisePolish .featuredProviderGrid.itkLegacyPanel,
.hasEnterprisePolish .featuredProviderGrid.itkPremiumSurface,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards.itkLegacyPanel,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards.itkPremiumSurface {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    outline: 0 !important;
    overflow: visible !important;
}

.hasEnterprisePolish .featuredProviders::before,
.hasEnterprisePolish .featuredProviders::after,
.hasEnterprisePolish .featuredProviderGrid::before,
.hasEnterprisePolish .featuredProviderGrid::after,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards::before,
.hasEnterprisePolish .providerDirectory.providerDirectoryAsCards::after {
    display: none !important;
    content: none !important;
}

.hasEnterprisePolish .featuredProviderCard {
    box-shadow: 0 12px 26px rgba(15, 23, 42, .12) !important;
    transform-style: preserve-3d;
}

.hasEnterprisePolish .featuredProviderCard:hover,
.hasEnterprisePolish .featuredProviderCard:focus-within {
    box-shadow: 0 16px 34px rgba(15, 23, 42, .16) !important;
}

.hasEnterprisePolish .featuredProviderCard.isPrime,
.hasEnterprisePolish .featuredProviderCard.isFeatured {
    box-shadow: 0 14px 28px rgba(15, 23, 42, .18) !important;
}

.hasEnterprisePolish .featuredProviderCard.isPrime:hover,
.hasEnterprisePolish .featuredProviderCard.isFeatured:hover,
.hasEnterprisePolish .featuredProviderCard.isPrime:focus-within,
.hasEnterprisePolish .featuredProviderCard.isFeatured:focus-within {
    box-shadow:
        0 18px 36px rgba(15, 23, 42, .20),
        inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.hasEnterprisePolish .featuredProviderCard::before {
    display: none !important;
    content: none !important;
}

.hasEnterprisePolish .featuredProviderCard .providerGlow {
    z-index: 1;
    background:
        radial-gradient(circle at var(--provider-shine-x, 50%) var(--provider-shine-y, 34%),
            rgba(255,255,255,.26) 0%,
            rgba(255,255,255,.13) 18%,
            rgba(255,255,255,.04) 38%,
            transparent 60%),
        radial-gradient(circle at 86% 14%,
            rgba(255,255,255,.12),
            transparent 28%);
    filter: none;
    mix-blend-mode: screen;
}

.hasEnterprisePolish .featuredProviderCard .providerGlow::before {
    display: none !important;
    content: none !important;
}

.hasEnterprisePolish .featuredProviderCard:hover .providerGlow,
.hasEnterprisePolish .featuredProviderCard:focus-within .providerGlow {
    opacity: .58;
    transform: none;
}

.hasEnterprisePolish .featuredProviderCard:hover .providerGlow::before,
.hasEnterprisePolish .featuredProviderCard:focus-within .providerGlow::before {
    opacity: 0;
}

.hasEnterprisePolish .providerListControls {
    margin: 22px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px 14px 18px;
    border: 1px solid rgba(191, 219, 254, .9);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.hasEnterprisePolish .providerDirectoryControls {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.hasEnterprisePolish .providerListControls > div {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    color: #64748b;
    font-weight: 850;
}

.hasEnterprisePolish .providerListControls strong {
    color: #0f172a;
    font-size: 18px;
}

.hasEnterprisePolish .providerListControls form,
.hasEnterprisePolish .providerListControls label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hasEnterprisePolish .providerListControls label span {
    color: #64748b;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.hasEnterprisePolish .providerListControls select {
    min-width: 92px;
    min-height: 46px;
    border: 1px solid rgba(191, 219, 254, .95);
    border-radius: 16px;
    background: #fff;
    color: #0f172a;
    font: inherit;
    font-weight: 950;
    padding: 0 34px 0 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.hasEnterprisePolish .providerPaginator {
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hasEnterprisePolish .providerPaginator a {
    min-width: 46px;
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191, 219, 254, .95);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    color: #1d4ed8;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(37, 99, 235, .1);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.hasEnterprisePolish .providerPaginator a:hover,
.hasEnterprisePolish .providerPaginator a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 99, 235, .18);
}

.hasEnterprisePolish .providerPaginator a.isActive {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-color: transparent;
}

.hasEnterprisePolish .providerPaginator a.isDisabled {
    pointer-events: none;
    opacity: .45;
    color: #64748b;
}

@media (max-width: 680px) {
    .hasEnterprisePolish .providerListControls {
        align-items: stretch;
        flex-direction: column;
        border-radius: 20px;
    }

    .hasEnterprisePolish .providerListControls form,
    .hasEnterprisePolish .providerListControls label,
    .hasEnterprisePolish .providerListControls select {
        width: 100%;
    }

    .hasEnterprisePolish .providerListControls label {
        align-items: stretch;
        flex-direction: column;
    }

    .hasEnterprisePolish .providerPaginator {
        justify-content: stretch;
    }

    .hasEnterprisePolish .providerPaginator a {
        flex: 1 1 46px;
    }
}

@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;
    }

    .itkPremiumSurface,
    .itkMotionCard,
    .itkReveal.isVisible.itkMotionCard,
    .itkMagnetic {
        transform: none !important;
    }
}

/* v42 - unified avatar, company logo and chat identity layer */
.hasEnterprisePolish .itkIdentityAvatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #172554 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(191, 219, 254, .95);
    box-shadow: 0 14px 34px rgba(37, 99, 235, .22);
}

.hasEnterprisePolish .itkIdentityAvatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hasEnterprisePolish .itkIdentityAvatar.hasImage {
    background: #fff;
}

.hasEnterprisePolish .itkIdentityAvatar.isCompany {
    background: linear-gradient(135deg, #172554 0%, #2563eb 100%);
}

.hasEnterprisePolish .itkIdentityAvatar.navIdentityAvatar {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 13px;
    box-shadow: none;
}

.hasEnterprisePolish .companySwitcherIdentity,
.hasEnterprisePolish .navUserIdentity,
.hasEnterprisePolish .itkTicketCustomerCell,
.hasEnterprisePolish .itkSideIdentity {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hasEnterprisePolish .companySwitcherIdentity label {
    margin: 0;
}

.hasEnterprisePolish .navUserIdentity {
    padding: 6px 10px 6px 6px;
}

.hasEnterprisePolish .itkTicketCustomerCell > div,
.hasEnterprisePolish .providerHeroIdentity > div,
.hasEnterprisePolish .itkChatBody {
    min-width: 0;
}

.hasEnterprisePolish .itkIdentityAvatar.itkTableAvatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: none;
}

.hasEnterprisePolish .itkIdentityAvatar.itkChatAvatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.hasEnterprisePolish .itkIdentityAvatar.itkSideLogo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 24px;
}

.hasEnterprisePolish .itkSideIdentity {
    gap: 14px;
    margin: 0 0 18px;
}

.hasEnterprisePolish .itkSideIdentity.compactIdentity {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #dbeafe;
    background: #f8fbff;
}

.hasEnterprisePolish .itkSideIdentity h3,
.hasEnterprisePolish .itkSideIdentity p {
    margin: 0;
}

.hasEnterprisePolish .itkSideIdentity p {
    color: #64748b;
}

.hasEnterprisePolish .itkChatMessage {
    display: flex !important;
    align-items: flex-start;
    gap: 13px;
    position: relative;
    padding: 16px !important;
    border-left: 0 !important;
}

.hasEnterprisePolish .itkChatMessage::before {
    content: "";
    width: 5px;
    align-self: stretch;
    flex: 0 0 5px;
    border-radius: 999px;
    background: #64748b;
}

.hasEnterprisePolish .itkChatMessage.messageRoleCustomer::before {
    background: #16a34a;
}

.hasEnterprisePolish .itkChatMessage.messageRoleProvider::before {
    background: #2563eb;
}

.hasEnterprisePolish .itkChatMessage.messageRoleTechnician::before {
    background: #7c3aed;
}

.hasEnterprisePolish .itkChatMessage.messageRoleAdmin::before {
    background: #dc2626;
}

.hasEnterprisePolish .itkChatMessage.messageRoleSystem::before {
    background: #64748b;
}

.hasEnterprisePolish .itkChatMeta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.hasEnterprisePolish .itkChatMeta span {
    display: inline;
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.hasEnterprisePolish .itkChatBody p {
    margin: 8px 0 0;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.hasEnterprisePolish .timelineItem {
    grid-template-columns: 48px minmax(0, 1fr);
}

.hasEnterprisePolish .timelineItem > .itkChatAvatar {
    margin-top: 2px;
}

.hasEnterprisePolish .customerAvatar.itkIdentityAvatar {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    font-size: 34px;
}

.hasEnterprisePolish .customerAvatar.large.itkIdentityAvatar {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    font-size: 42px;
}

.hasEnterprisePolish .itkIdentityAvatar.cxProviderLogo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
}

.hasEnterprisePolish .providerHeroIdentity {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.hasEnterprisePolish .itkIdentityAvatar.providerHeroLogo {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    font-size: 34px;
}

.hasEnterprisePolish .itkIdentityAvatar.recommendationAvatar,
.hasEnterprisePolish .itkIdentityAvatar.technicianAvatar,
.hasEnterprisePolish .itkIdentityAvatar.workloadAvatar {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 24px;
}

.hasEnterprisePolish .itkIdentityAvatar.technicianAvatar.compactAvatar,
.hasEnterprisePolish .itkIdentityAvatar.workloadMiniAvatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 17px;
    box-shadow: none;
}

.hasEnterprisePolish .itkIdentityAvatar.queueRecommendedAvatar {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 12px;
    box-shadow: none;
}

.hasEnterprisePolish .queueRecommendedTech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hasEnterprisePolish .technicianLoadItem.withAvatar,
.hasEnterprisePolish .workloadMiniRow.withAvatar {
    justify-content: flex-start;
    align-items: center;
}

.hasEnterprisePolish .technicianLoadItem.withAvatar > div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.hasEnterprisePolish .workloadMiniRow.withAvatar {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
}

.hasEnterprisePolish .contractAvatar.itkIdentityAvatar {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    font-size: 22px;
}

@media (max-width: 720px) {
    .hasEnterprisePolish .providerHeroIdentity {
        align-items: flex-start;
        gap: 14px;
    }

    .hasEnterprisePolish .itkIdentityAvatar.providerHeroLogo {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 24px;
    }

    .hasEnterprisePolish .itkChatMessage {
        padding: 14px !important;
    }

    .hasEnterprisePolish .itkIdentityAvatar.itkSideLogo {
        width: 52px;
        height: 52px;
    }

    .hasEnterprisePolish .itkTicketCustomerCell {
        align-items: flex-start;
    }

    .hasEnterprisePolish .companySwitcherIdentity,
    .hasEnterprisePolish .navUserIdentity {
        width: 100%;
        justify-content: flex-start;
    }

    .hasEnterprisePolish .workloadMiniRow.withAvatar {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .hasEnterprisePolish .workloadMiniRow.withAvatar span {
        grid-column: 2;
    }
}

/* v42.1 - technician and AI identity refinements */
.hasEnterprisePolish .itkIdentityAvatar.technicianTicketAvatar,
.hasEnterprisePolish .itkIdentityAvatar.aiCustomerAvatar {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    flex: 0 0 46px;
}

.hasEnterprisePolish .technicianTicketRow.withAvatar {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
}

.hasEnterprisePolish .technicianTicketRow.withAvatar > div {
    min-width: 0;
}

.hasEnterprisePolish .aiMetaIdentity b {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hasEnterprisePolish .aiMetaIdentity b span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 720px) {
    .hasEnterprisePolish .technicianTicketRow.withAvatar {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .hasEnterprisePolish .technicianTicketRow.withAvatar > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hasEnterprisePolish .aiMetaIdentity b {
        display: flex;
        width: 100%;
    }
}
