/*
 * eStoreware USA Pioneer refresh
 * Load after Pioneer theme CSS and after the existing esw-site.css.
 * Scope: contact bar, header/navigation, account/cart, mobile navigation, footer.
 */

:root {
    --esw-navy: #071d3b;
    --esw-navy-deep: #06162d;
    --esw-panel: #0a111c;
    --esw-panel-hover: #111e2e;
    --esw-blue: #54b9ff;
    --esw-blue-strong: #0c7ed6;
    --esw-yellow: #f4c84b;
    --esw-white: #fff;
    --esw-muted: #9bb0c5;
    --esw-line: rgba(255, 255, 255, .1);
    --esw-shadow: 0 28px 70px rgba(1, 8, 19, .38);
}

.esw-site-header *,
.esw-contact-bar *,
.esw-footer * {
    box-sizing: border-box;
}

.esw-site-header a,
.esw-contact-bar a,
.esw-footer a {
    text-decoration: none;
}

.esw-header-container,
.esw-footer-wrap {
    width: min(1400px, calc(100% - 44px));
    margin: 0 auto;
}

/* Contact bar */
.esw-contact-bar {
    min-height: 36px;
    background: var(--esw-navy-deep);
    color: #a9c8e5;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 12px;
}

.esw-contact-bar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.esw-contact-message {
    letter-spacing: .025em;
font-size: 15px;
}

.esw-contact-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.esw-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e4f2ff;
    font-size: 15px;
    white-space: nowrap;
    transition: color .18s ease;
}

.esw-contact-links a:hover,
.esw-contact-links a:focus {
    color: #72c7ff;
}

.esw-contact-links a > span:first-child {
    color: #65bfff;
}

/* Header shell */
.esw-site-header {
    position: relative;
    z-index: 1005;
    background: var(--esw-navy);
    color: var(--esw-white);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 8px 30px rgba(3, 15, 34, .16);
}

.esw-header-main {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.esw-brand-area {
    width: 185px;
    flex: 0 0 185px;
}

.esw-brand-area .header-logo {
    margin: 0;
    width: 100%;
}

.esw-brand-area .header-logo a,
.esw-brand-area .header-logo img {
    display: block;
    width: 100%;
    max-width: 185px;
    height: auto;
}

.esw-brand-area .header-logo img,
.esw-brand-area .logo img,
.esw-brand-area > a > img {
    filter: brightness(0) invert(1);
}

/* Desktop navigation */
.esw-main-menu-area {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    gap: 2px;
    margin-left: auto;
}

.esw-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.esw-nav-link {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: #e8f2fc !important;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.esw-nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--esw-blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.esw-nav-caret {
    color: #77a0c8;
    font-size: 11px;
    transition: transform .2s ease;
}

.esw-nav-item:hover > .esw-nav-link,
.esw-nav-item:focus-within > .esw-nav-link {
    color: var(--esw-white) !important;
}

.esw-nav-item:hover > .esw-nav-link::after,
.esw-nav-item:focus-within > .esw-nav-link::after {
    transform: scaleX(1);
}

.esw-nav-item:hover .esw-nav-caret,
.esw-nav-item:focus-within .esw-nav-caret {
    transform: rotate(180deg);
}

.esw-has-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 18px;
    display: none;
}

.esw-has-dropdown:hover::before,
.esw-has-dropdown:focus-within::before {
    display: block;
}

/* Dropdowns */
.esw-nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    display: grid;
    overflow: hidden;
    color: var(--esw-white);
    background: var(--esw-panel);
    border: 1px solid var(--esw-line);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--esw-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.esw-nav-item:hover > .esw-nav-dropdown,
.esw-nav-item:focus-within > .esw-nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.esw-platform-dropdown {
    width: min(940px, 88vw);
    grid-template-columns: 285px 1fr;
}

.esw-plugin-dropdown {
    width: min(760px, 84vw);
    grid-template-columns: 250px 1fr;
}

.esw-dropdown-intro {
    padding: 34px 28px;
    background: linear-gradient(145deg, #0d2c51, #0a1e38);
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.esw-dropdown-intro small {
    color: #6fc3ff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .15em;
}

.esw-dropdown-intro h3 {
    margin: 17px 0 12px;
    color: var(--esw-white);
    font-size: 26px;
    line-height: 1.25;
}

.esw-dropdown-intro p {
    margin: 0 0 24px;
    color: #9cb1c7;
    font-size: 16px;
    line-height: 1.65;
}

.esw-dropdown-intro > a {
    display: inline-flex;
    gap: 12px;
    color: var(--esw-white) !important;
    font-size: 18px;
    font-weight: 800;
}

.esw-dropdown-intro > a b {
    color: #65c1ff;
}

.esw-dropdown-intro-compact h3 {
    margin-bottom: 28px;
    font-size: 18px;
}

.esw-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, .07);
}

.esw-dropdown-grid > a {
    min-height: 82px;
    padding: 16px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--esw-white) !important;
    background: var(--esw-panel);
    transition: background .18s ease;
}

.esw-dropdown-grid > a:hover,
.esw-dropdown-grid > a:focus {
    background: var(--esw-panel-hover);
}

.esw-dropdown-grid i {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    color: #69c3ff;
    background: #112840;
    border-radius: 9px;
    font-size: 30px;
    font-style: normal;
}

.esw-dropdown-grid span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.esw-dropdown-grid strong {
    color: var(--esw-white);
    font-size: 17px;
}

.esw-dropdown-grid small {
    color: #e3e5e7;
    font-size: 15px;
}

.esw-resource-dropdown {
    left: auto;
    right: -75px;
    width: 390px;
    display: flex;
    flex-direction: column;
    padding: 9px;
    transform: translateY(10px);
}

.esw-nav-item:hover > .esw-resource-dropdown,
.esw-nav-item:focus-within > .esw-resource-dropdown {
    transform: translateY(0);
}

.esw-resource-dropdown > a {
    padding: 17px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--esw-white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.esw-resource-dropdown > a:last-child {
    border-bottom: 0;
}

.esw-resource-dropdown > a:hover,
.esw-resource-dropdown > a:focus {
    background: #121d2a;
}

.esw-resource-dropdown > a > span {
    color: #67c3ff;
    font-size: 30px;
}

.esw-resource-dropdown > a > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.esw-resource-dropdown strong {
    color: var(--esw-white);
    font-size: 18px;
}

.esw-resource-dropdown small {
    color: #e3e5e7;
    font-size: 16px;
}

/* Header actions */
.esw-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.esw-header-action {
    position: relative;
    min-width: 46px;
    height: 52px;
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dbe9f7 !important;
    background: transparent;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
}

.esw-header-action:hover,
.esw-header-action:focus {
    color: var(--esw-white) !important;
    background: rgba(255, 255, 255, .08);
}

.esw-header-action small {
    margin-top: 4px;
    color: #9bb0c5;
    font-size: 9px;
}

.esw-account-menu,
.esw-cart-menu {
    position: relative;
}

.esw-person-icon {
    position: relative;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.esw-person-icon::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 22px;
    height: 11px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 15px 15px 0 0;
    transform: translateX(-50%);
}

.esw-search-icon {
    position: relative;
    width: 19px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.esw-search-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: right center;
}

.esw-cart-icon {
    position: relative;
    width: 23px;
    height: 15px;
    border: 2px solid currentColor;
    border-top: 0;
    transform: skew(-7deg);
}

.esw-cart-icon::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -4px;
    width: 7px;
    border-top: 2px solid currentColor;
}

.esw-cart-icon::after {
    content: "•  •";
    position: absolute;
    top: 10px;
    left: 2px;
    font-size: 11px;
    letter-spacing: 4px;
}

.esw-header-cart .cart-qty {
    position: absolute;
    top: 2px;
    right: 1px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    color: var(--esw-navy);
    background: var(--esw-yellow);
    border-radius: 999px;
    font-size: 9px;
}

.esw-account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 20;
    width: 190px;
    padding: 8px;
    display: none;
    background: var(--esw-panel);
    border: 1px solid var(--esw-line);
    border-radius: 10px;
    box-shadow: var(--esw-shadow);
}

.esw-account-menu.is-open .esw-account-dropdown {
    display: block;
}

.esw-account-dropdown a {
    display: block;
    padding: 11px 12px;
    color: #dbe9f7 !important;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.esw-account-dropdown a:hover,
.esw-account-dropdown a:focus {
    color: var(--esw-white) !important;
    background: var(--esw-panel-hover);
}

.esw-cart-menu #flyout-cart {
    top: calc(100% + 12px);
    right: 0;
}

.esw-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1190;
    padding: 18px 0;
    display: none;
    background: #09121f;
    border-top: 1px solid var(--esw-line);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .32);
}

.esw-search-open .esw-search-panel {
    display: block;
}

.esw-search-panel-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esw-search-panel form {
    display: flex;
    flex: 1 1 auto;
    gap: 10px;
}

.esw-search-panel input {
    min-width: 0;
    height: 48px;
    flex: 1 1 auto;
    padding: 0 17px;
    color: #10233b;
    background: #fff;
    border: 1px solid #d6e2ec;
    border-radius: 9px;
    font-size: 16px;
}

.esw-search-panel form button {
    min-width: 112px;
    padding: 0 22px;
    color: var(--esw-navy);
    background: var(--esw-yellow);
    border: 0;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 900;
}

.esw-search-close {
    width: 44px;
    height: 44px;
    padding: 0;
    color: #dbe9f7;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 9px;
    font-size: 29px;
    line-height: 1;
}

/*
 * The custom header already renders its own cart button. Pioneer’s flyout
 * component also contains a legacy cart-link row, so keep that duplicate row
 * out of the dropdown even if an older compiled view is still being served.
 */
.esw-cart-menu #flyout-cart > .cart-link {
    display: none !important;
}

.esw-get-started {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--esw-navy) !important;
    background: var(--esw-yellow);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease;
}

.esw-get-started:hover,
.esw-get-started:focus {
    color: var(--esw-navy) !important;
    background: #ffdc72;
    transform: translateY(-2px);
}

/* Mobile navigation */
.esw-mobile-menu-toggle,
.esw-mobile-menu-panel {
    display: none;
}

/* Footer */
.esw-footer {
    padding: 72px 0 24px;
    color: var(--esw-white);
    background: var(--esw-navy-deep);
}

.esw-footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 1.45fr) minmax(0, 3.55fr);
    gap: 54px;
    padding-bottom: 48px;
}

.esw-footer-logo-image {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.esw-footer-brand-tagline {
    margin-top: 18px;
    color: #d9e7f7;
    font-size: 13px;
    font-weight: 800;
}

.esw-footer-brand-tagline span {
    padding: 0 5px;
    color: #5aaeee;
}

.esw-footer-brand-text {
    max-width: 285px;
    margin: 13px 0 0;
    color: #8095ae;
    font-size: 12px;
    line-height: 1.65;
}

.esw-footer-brand-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.esw-footer-btn {
    padding: 11px 14px;
    color: var(--esw-white) !important;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
}

.esw-footer-btn.primary {
    background: var(--esw-blue-strong);
}

.esw-footer-btn.secondary {
    border: 1px solid rgba(255, 255, 255, .2);
}

.esw-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.esw-footer-trust span {
    padding: 7px 9px;
    color: #8fa8c1;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    font-size: 9px;
}

.esw-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.esw-footer-col h3 {
    margin: 0 0 18px;
}

.esw-footer-accordion-toggle {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6fbdfd;
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
    text-align: left;
    text-transform: uppercase;
}

.esw-footer-accordion-body {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.esw-footer-accordion-body a,
.esw-footer-company-links a {
    color: #a9bbcf !important;
    font-size: 12px;
    line-height: 1.35;
}

.esw-footer-accordion-body a:hover,
.esw-footer-company-links a:hover {
    color: var(--esw-white) !important;
}

.esw-footer-help {
    margin-bottom: 26px;
    padding: 20px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
}

.esw-footer-help-copy {
    display: flex;
    align-items: center;
    gap: 14px;
}

.esw-footer-help-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    background: #0e83da;
    border-radius: 50%;
    font-weight: 900;
}

.esw-footer-help h3 {
    margin: 0 0 4px;
    color: var(--esw-white);
    font-size: 14px;
}

.esw-footer-help p {
    margin: 0;
    color: #8298af;
    font-size: 11px;
}

.esw-footer-mini-btn {
    padding: 11px 15px;
    color: var(--esw-navy) !important;
    background: var(--esw-yellow);
    border-radius: 7px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.esw-footer-company {
    padding-bottom: 24px;
}

.esw-footer-company-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.esw-footer-bottom {
    padding-top: 24px;
    color: #71869f;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

/* Responsive */
@media (max-width: 1240px) {
    .esw-header-container,
    .esw-footer-wrap {
        width: min(1400px, calc(100% - 32px));
    }

    .esw-header-main {
        gap: 17px;
    }

    .esw-brand-area {
        width: 164px;
        flex-basis: 164px;
    }

    .esw-nav-link {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 12px;
    }

    .esw-get-started {
        padding: 0 16px;
    }
}

@media (max-width: 1050px) {
    .esw-header-main {
        min-height: 76px;
    }

    .esw-main-menu-area {
        display: none;
    }

    .esw-mobile-menu-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        color: var(--esw-white);
        background: transparent;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 9px;
    }

    .esw-mobile-menu-toggle span {
        width: 19px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
    }

    .esw-brand-area {
        margin-right: auto;
    }

    .esw-mobile-menu-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        color: var(--esw-white);
        background: #09121f;
        border-top: 1px solid var(--esw-line);
        box-shadow: 0 24px 55px rgba(0, 0, 0, .36);
    }

    .esw-mobile-menu-open .esw-mobile-menu-panel {
        display: block;
    }

    .esw-mobile-menu-inner {
        width: min(720px, calc(100% - 30px));
        margin: 0 auto;
        padding: 12px 0 18px;
    }

    .esw-mobile-menu-link,
    .esw-mobile-accordion-toggle {
        width: 100%;
        min-height: 48px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #d9e8f7 !important;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-size: 13px;
        font-weight: 800;
        text-align: left;
    }

    .esw-mobile-accordion-panel {
        display: none;
        padding: 6px 0 8px 16px;
        background: rgba(255, 255, 255, .025);
    }

    .esw-mobile-accordion.is-open .esw-mobile-accordion-panel {
        display: block;
    }

    .esw-mobile-accordion-panel a {
        display: block;
        padding: 10px 13px;
        color: #a9bbcf !important;
        font-size: 12px;
    }

    .esw-footer-main {
        grid-template-columns: 1fr;
    }

    .esw-footer-brand-text {
        max-width: 500px;
    }
}

@media (max-width: 760px) {
    .esw-contact-message {
        display: none;
    }

    .esw-contact-bar-inner {
        justify-content: center;
    }

    .esw-contact-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .esw-contact-links a {
        font-size: 10px;
    }

    .esw-header-actions {
        gap: 2px;
    }

    .esw-header-action {
        min-width: 37px;
    }

    .esw-header-action small {
        display: none;
    }

    .esw-get-started {
        display: none;
    }

    .esw-mobile-search-link {
        cursor: pointer;
    }

    .esw-footer {
        padding-top: 55px;
    }

    .esw-footer-links {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .esw-footer-col {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .esw-footer-col:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .esw-footer-col h3 {
        margin: 0;
    }

    .esw-footer-accordion-toggle {
        min-height: 50px;
        cursor: pointer;
    }

    .esw-footer-accordion-icon::before {
        content: "+";
        color: #8fb4d4;
        font-size: 18px;
    }

    .esw-footer-accordion.is-open .esw-footer-accordion-icon::before {
        content: "−";
    }

    .esw-footer-accordion-body {
        display: none;
        padding: 0 0 18px 8px;
    }

    .esw-footer-accordion.is-open .esw-footer-accordion-body {
        display: flex;
    }

    .esw-footer-help {
        margin-top: 28px;
    }
}

@media (max-width: 470px) {
    .esw-header-container,
    .esw-footer-wrap {
        width: min(100% - 24px, 1400px);
    }

    .esw-contact-bar,
    .esw-contact-bar-inner {
        min-height: 34px;
    }

    .esw-contact-links a {
        gap: 4px;
        font-size: 9px;
    }

    .esw-mobile-menu-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .esw-brand-area {
        width: 140px;
        flex-basis: 140px;
    }

    .esw-footer-help {
        align-items: flex-start;
        flex-direction: column;
    }

    .esw-footer-mini-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Homepage
   ========================================================= */
.html-esw-home-page .master-wrapper-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.html-esw-home-page .page.home-page,
.html-esw-home-page .page-body {
    margin: 0;
}

.esw-home {
    --home-blue: #0b63ce;
    --home-deep: #071d3b;
    --home-muted: #617087;
    --home-line: #dbe6f0;
    overflow: hidden;
    color: #12233b;
    background: #fff;
}

.esw-home *,
.esw-home *::before,
.esw-home *::after {
    box-sizing: border-box;
}

.esw-home-section {
    padding-right: clamp(24px, 7vw, 112px);
    padding-left: clamp(24px, 7vw, 112px);
}

.esw-section-label,
.esw-kicker {
    color: var(--home-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.esw-section-label.light {
    color: #75c3ff;
}

.esw-home h1,
.esw-home h2,
.esw-home h3,
.esw-home p {
    font-family: inherit;
}

.esw-home h1 em,
.esw-home h2 em {
    color: var(--home-blue);
    font-style: normal;
}

.esw-home-hero {
    position: relative;
    min-height: 735px;
    padding: 64px clamp(24px, 6vw, 94px) 76px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(125deg, #fdfefe 0%, #f8fbff 52%, #eaf6ff 100%);
}

.esw-home-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 99, 206, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 99, 206, .045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, transparent, #000 65%, transparent);
    animation: eswGridDrift 18s linear infinite;
}

.esw-home-hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -52%;
    left: 30%;
    height: 700px;
    background: radial-gradient(circle, #b8e0ff 0%, transparent 67%);
    animation: eswPulseGlow 6s ease-in-out infinite;
}

.esw-home-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.esw-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.esw-kicker span {
    width: 30px;
    height: 2px;
    background: var(--home-blue);
}

.esw-home-hero h1 {
    max-width: 820px;
    margin: 20px 0 14px;
    color: var(--home-deep);
    font-size: clamp(54px, 5.7vw, 84px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.esw-home-hero h1 em {
    color: transparent;
    background: linear-gradient(95deg, #0968cb, #00a3ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.esw-hero-rotator {
    position: relative;
    height: 39px;
    margin: 0 0 22px;
    overflow: hidden;
    color: var(--home-blue);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.esw-hero-rotator span {
    position: absolute;
    top: 4px;
    left: 0;
    opacity: 0;
    transform: translateY(28px);
    animation: eswRotateWords 9s infinite;
}

.esw-hero-rotator span:nth-child(2) { animation-delay: 3s; }
.esw-hero-rotator span:nth-child(3) { animation-delay: 6s; }

.esw-home-lead {
    max-width: 650px;
    margin: 0;
    color: #53657b;
    font-size: 18px;
    line-height: 1.65;
}

.esw-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.esw-home-btn {
    min-height: 50px;
    padding: 15px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.esw-home-btn:hover,
.esw-home-btn:focus {
    transform: translateY(-2px);
}

.esw-home-btn.primary {
    color: #fff !important;
    background: linear-gradient(100deg, #075fbd, #0794ee);
    box-shadow: 0 12px 30px rgba(11, 99, 206, .2);
}

.esw-home-btn.secondary {
    color: #233a57 !important;
    background: #fff;
    border-color: #cfdce8;
}

.esw-home-btn.yellow {
    color: var(--home-deep) !important;
    background: var(--esw-yellow);
}

.esw-home-btn.white {
    color: var(--home-deep) !important;
    background: #fff;
}

.esw-play {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    color: var(--home-blue);
    background: #eaf5ff;
    border-radius: 50%;
    font-size: 9px;
}

.esw-home-proof {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    color: #607086;
    font-size: 12px;
    font-weight: 800;
}

.esw-home-hero-visual {
    position: relative;
    z-index: 2;
    height: 575px;
    margin-left: 30px;
    perspective: 1300px;
}

.esw-home-glow {
    position: absolute;
    top: 4%;
    right: 4%;
    width: 510px;
    height: 510px;
    background: linear-gradient(145deg, #0c62c5, #63c9ff);
    border-radius: 50%;
    filter: drop-shadow(0 30px 50px rgba(11, 99, 206, .25));
    animation: eswGlowMorph 8s ease-in-out infinite;
}

.esw-browser-card {
    position: absolute;
    top: 72px;
    right: 0;
    width: min(94%, 650px);
    overflow: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid #cbdbea;
    border-radius: 16px;
    box-shadow: 0 35px 80px rgba(3, 38, 78, .23);
    transform: rotateY(-7deg) rotateZ(-1.8deg);
    animation: eswScreenCycle 15s infinite;
}

.esw-screen-two { animation-delay: 5s; }
.esw-screen-three { animation-delay: 10s; }

.esw-browser-top {
    height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f7fafc;
    border-bottom: 1px solid #e3ebf2;
}

.esw-browser-top i {
    width: 8px;
    height: 8px;
    background: #bdc8d3;
    border-radius: 50%;
}

.esw-browser-top i:first-child { background: #ff6a66; }
.esw-browser-top i:nth-child(2) { background: #ffc558; }
.esw-browser-top i:nth-child(3) { background: #48c97d; }

.esw-browser-top span {
    margin-left: 9px;
    color: #8090a3;
    font-size: 10px;
}

.esw-browser-card > img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: top;
}

.esw-float-card {
    position: absolute;
    z-index: 8;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1px solid #dce7ef;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(4, 34, 67, .18);
    animation: eswFloatY 4.5s ease-in-out infinite;
}

.esw-float-card b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #12a66a;
    background: #e5f9ef;
    border-radius: 10px;
}

.esw-float-card span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.esw-float-card small { color: #7b8999; font-size: 10px; }
.esw-float-card strong { color: #183451; font-size: 12px; white-space: nowrap; }

.esw-payment-card { top: 55px; left: -16px; }
.esw-quote-card { right: -12px; bottom: 36px; animation-delay: .7s; }
.esw-quote-card b { color: var(--home-blue); background: #eaf3ff; }

.esw-security-pill {
    position: absolute;
    z-index: 8;
    bottom: 68px;
    left: 42px;
    padding: 12px 17px;
    color: #fff;
    background: #082650;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(7, 29, 59, .25);
    font-size: 11px;
    font-weight: 900;
    animation: eswFloatY 4.2s ease-in-out 1.1s infinite;
}

.esw-mini-admin {
    min-height: 390px;
    padding: 24px;
    color: #eef6ff;
    background: #0a1424;
}

.esw-mini-admin-head {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.esw-mini-admin-head small { color: #63809e; font-size: 8px; letter-spacing: .14em; }
.esw-mini-admin-head strong { font-size: 20px; }

.esw-mini-metrics {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.esw-mini-metrics > span {
    padding: 13px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: #101f33;
    border-radius: 9px;
}

.esw-mini-metrics small { color: #758ba4; font-size: 8px; }
.esw-mini-metrics b { font-size: 18px; }
.esw-mini-metrics em { color: #43d391; font-size: 8px; font-style: normal; }

.esw-mini-chart {
    margin-top: 12px;
    padding: 16px;
    background: #101f33;
    border-radius: 9px;
}

.esw-mini-chart > strong { font-size: 12px; }
.esw-mini-chart > div {
    position: relative;
    height: 140px;
    margin-top: 15px;
    overflow: hidden;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .05) 1px, transparent 1px, transparent 34px);
}

.esw-mini-chart > div span {
    position: absolute;
    inset: 10px 0 0;
    background: linear-gradient(to bottom, rgba(49, 169, 243, .5), transparent);
    clip-path: polygon(0 82%, 12% 64%, 23% 70%, 35% 38%, 47% 55%, 60% 27%, 73% 43%, 86% 12%, 100% 22%, 100% 100%, 0 100%);
}

.esw-capability-marquee {
    padding: 23px clamp(24px, 6vw, 94px);
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e5edf4;
    border-bottom: 1px solid #e5edf4;
}

.esw-capability-marquee p {
    margin: 0;
    color: #8190a1;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.esw-capability-marquee > div {
    min-width: max-content;
    display: flex;
    gap: 32px;
    animation: eswMarquee 28s linear infinite;
}

.esw-capability-marquee span {
    color: #5f7084;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
}

.esw-capability-marquee span::after {
    content: "✦";
    margin-left: 32px;
    color: #59b7fb;
}

.esw-checkout-showcase {
    position: relative;
    min-height: 760px;
    padding-top: 105px;
    padding-bottom: 105px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    color: #fff;
    background: #061a36;
}

.esw-checkout-showcase::before {
    content: "";
    position: absolute;
    top: 15%;
    right: 3%;
    width: 460px;
    height: 460px;
    opacity: .3;
    background: #0e70d4;
    border-radius: 50%;
    filter: blur(130px);
}

.esw-checkout-copy,
.esw-checkout-visual {
    position: relative;
    z-index: 2;
}

.esw-checkout-copy h2 {
    max-width: 690px;
    margin: 17px 0 25px;
    color: #fff;
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -.05em;
}

.esw-checkout-copy > p:not(.esw-section-label) {
    max-width: 650px;
    color: #aebed1;
    font-size: 16px;
    line-height: 1.75;
}

.esw-checkout-points {
    margin: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.esw-checkout-points > div {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.esw-checkout-points b { color: #65bfff; font-size: 11px; }
.esw-checkout-points span { color: #94a9c0; font-size: 12px; }
.esw-checkout-points strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; }

.esw-checkout-visual {
    height: 550px;
    perspective: 1100px;
}

.esw-checkout-browser {
    position: absolute;
    top: 72px;
    right: 0;
    width: min(95%, 650px);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 17px;
    box-shadow: 0 50px 90px rgba(0, 0, 0, .42);
    transform: rotateY(-7deg) rotateZ(1.4deg);
    animation: eswCheckoutHover 6s ease-in-out infinite;
}

.esw-checkout-browser img {
    width: 100%;
    height: 405px;
    object-fit: cover;
    object-position: top;
}

.esw-checkout-orbit {
    position: absolute;
    border: 1px solid rgba(105, 195, 255, .25);
    border-radius: 50%;
    animation: eswSpin 20s linear infinite;
}

.esw-checkout-orbit.one { top: 15px; right: -30px; width: 500px; height: 500px; }
.esw-checkout-orbit.two { top: 85px; right: 40px; width: 360px; height: 360px; animation-direction: reverse; }

.esw-checkout-badge {
    position: absolute;
    z-index: 5;
    padding: 15px 18px;
    color: #102a49;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.esw-checkout-badge small { display: block; margin-bottom: 5px; color: #7e8b99; font-size: 9px; }
.esw-checkout-badge strong { font-size: 12px; }
.esw-checkout-badge.fast { top: 35px; left: 0; }
.esw-checkout-badge.secure { right: -15px; bottom: 20px; }

.esw-admin-showcase {
    padding-top: 110px;
    padding-bottom: 110px;
    background: #f5f9fd;
}

.esw-admin-heading,
.esw-vendor-heading {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 80px;
}

.esw-admin-heading h2,
.esw-vendor-heading h2 {
    margin: 15px 0 0;
    color: var(--home-deep);
    font-size: clamp(39px, 4.3vw, 61px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.esw-admin-heading > div:last-child p,
.esw-vendor-heading > div:last-child p {
    margin: 0 0 24px;
    color: #66778b;
    font-size: 15px;
    line-height: 1.75;
}

.esw-text-link {
    display: inline-flex;
    gap: 14px;
    color: var(--home-blue) !important;
    font-size: 14px;
    font-weight: 900;
}

.esw-admin-stage {
    position: relative;
    max-width: 1280px;
    min-height: 580px;
    margin: 0 auto;
    display: grid;
    place-items: center;
}

.esw-admin-dashboard {
    width: 88%;
    min-height: 510px;
    display: flex;
    overflow: hidden;
    color: #eef6ff;
    background: #0a1424;
    border-radius: 18px;
    box-shadow: 0 50px 100px rgba(8, 35, 68, .27);
    transform: rotateX(2deg) rotateY(-2deg);
    animation: eswAdminHover 7s ease-in-out infinite;
}

.esw-admin-sidebar {
    width: 62px;
    flex: 0 0 62px;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    color: #637790;
    background: #07101e;
}

.esw-admin-sidebar b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #0575d9, #15b5ff);
    border-radius: 8px;
    font-size: 11px;
}

.esw-admin-sidebar i { font-style: normal; }
.esw-admin-body { min-width: 0; flex: 1; padding: 28px; }

.esw-admin-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.esw-admin-title span { display: flex; flex-direction: column; gap: 5px; }
.esw-admin-title small { color: #63809e; font-size: 8px; letter-spacing: .14em; }
.esw-admin-title strong { font-size: 20px; }
.esw-admin-title em { padding: 6px 10px; color: #7189a3; border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; font-size: 8px; font-style: normal; }

.esw-admin-metrics {
    margin: 24px 0 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.esw-admin-metrics > div {
    padding: 16px;
    background: #101f33;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 9px;
}

.esw-admin-metrics small { display: block; color: #758ba4; font-size: 9px; }
.esw-admin-metrics strong { display: block; margin: 9px 0 6px; font-size: 20px; }
.esw-admin-metrics em { color: #43d391; font-size: 8px; font-style: normal; }

.esw-admin-panels {
    display: grid;
    grid-template-columns: 1.55fr .75fr;
    gap: 12px;
}

.esw-admin-chart,
.esw-admin-attention {
    min-height: 280px;
    padding: 18px;
    background: #101f33;
    border-radius: 10px;
}

.esw-admin-chart small,
.esw-admin-attention small { display: block; margin-bottom: 6px; color: #63809e; font-size: 8px; letter-spacing: .14em; }
.esw-admin-chart strong,
.esw-admin-attention strong { font-size: 12px; }

.esw-admin-chart span {
    display: block;
    height: 205px;
    margin-top: 20px;
    background:
        linear-gradient(to bottom, rgba(49, 169, 243, .45), transparent);
    clip-path: polygon(0 82%, 12% 64%, 23% 70%, 35% 38%, 47% 55%, 60% 27%, 73% 43%, 86% 12%, 100% 22%, 100% 100%, 0 100%);
}

.esw-admin-attention p {
    margin: 16px 0 0;
    padding-top: 14px;
    color: #9fb1c4;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 9px;
}

.esw-admin-float {
    position: absolute;
    z-index: 4;
    padding: 14px 17px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #18334f;
    background: #fff;
    border: 1px solid #dce8f2;
    border-radius: 13px;
    box-shadow: 0 18px 45px rgba(8, 42, 78, .18);
    animation: eswFloatY 4.5s ease-in-out infinite;
}

.esw-admin-float small { color: #8999a9; font-size: 8px; letter-spacing: .1em; }
.esw-admin-float strong { font-size: 12px; }
.esw-admin-float em { color: #20a76d; font-size: 9px; font-style: normal; }
.esw-admin-float.orders { top: 72px; left: 0; }
.esw-admin-float.sales { top: 25px; right: 2%; }

.esw-admin-capabilities {
    max-width: 1280px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d5e2ec;
    border-left: 1px solid #d5e2ec;
}

.esw-admin-capabilities > div {
    padding: 28px;
    background: #fff;
    border-right: 1px solid #d5e2ec;
    border-bottom: 1px solid #d5e2ec;
}

.esw-admin-capabilities span { color: #0a77d3; font-size: 10px; font-weight: 900; }
.esw-admin-capabilities h3 { margin: 16px 0 9px; color: var(--home-deep); font-size: 17px; }
.esw-admin-capabilities p { margin: 0; color: #728195; font-size: 12px; line-height: 1.6; }

.esw-workflow-intro {
    padding-top: 105px;
    padding-bottom: 72px;
    text-align: center;
}

.esw-workflow-intro h2 {
    max-width: 900px;
    margin: 16px auto 20px;
    color: var(--home-deep);
    font-size: clamp(38px, 4.3vw, 61px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.esw-workflow-intro > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: var(--home-muted);
    font-size: 17px;
    line-height: 1.7;
}

.esw-feature-stories {
    padding-bottom: 110px;
}

.esw-feature-story {
    max-width: 1280px;
    margin: 0 auto 115px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}

.esw-feature-story:last-child { margin-bottom: 0; }
.esw-feature-story.reverse .esw-feature-copy { order: 2; }
.esw-feature-story.reverse .esw-feature-visual { order: 1; }

.esw-feature-copy {
    position: relative;
    padding-left: 34px;
}

.esw-story-number {
    position: absolute;
    top: -3px;
    left: 0;
    color: #afc1d4;
    font-size: 11px;
    font-weight: 900;
}

.esw-feature-copy h3 {
    margin: 14px 0 22px;
    color: var(--home-deep);
    font-size: clamp(31px, 3.4vw, 47px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.esw-feature-copy > p:not(.esw-section-label) {
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.75;
}

.esw-feature-copy ul {
    padding: 0;
    margin: 25px 0 29px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    list-style: none;
}

.esw-feature-copy li {
    color: #3e536a;
    font-size: 13px;
    font-weight: 800;
}

.esw-feature-visual {
    position: relative;
    min-height: 420px;
    padding: 48px 35px 34px;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #e8f4ff, #f7fbff);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px #daeaf7;
}

.esw-feature-visual img {
    position: relative;
    width: 100%;
    max-height: 370px;
    object-fit: contain;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 24px 55px rgba(5, 44, 82, .18);
    transition: transform .45s ease;
}

.esw-feature-story:hover .esw-feature-visual img {
    transform: scale(1.02) translateY(-3px);
}

.esw-vendor-section {
    padding-top: 105px;
    padding-bottom: 110px;
    background: #f4f8fc;
    border-top: 1px solid #dfebf4;
}

.esw-vendor-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.esw-vendor-grid > a {
    min-height: 170px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
    background: #fff;
    border: 1px solid #dbe7f0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 38, 68, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.esw-vendor-grid > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 19px 42px rgba(8, 38, 68, .12);
}

.esw-vendor-grid strong {
    color: #17334f;
    font-size: 18px;
    letter-spacing: .04em;
}

.esw-vendor-grid strong i {
    display: block;
    font-size: 9px;
    font-style: normal;
    letter-spacing: .13em;
}

.esw-vendor-grid small { color: #75869a; font-size: 10px; }
.esw-vendor-grid .arlington { color: #ca2c31; }
.esw-vendor-grid .acm { color: #175788; }
.esw-vendor-grid .ninestar { color: #ef4d28; }
.esw-vendor-grid .clover { color: #398b42; font-size: 15px; }

.esw-final-cta {
    padding: 75px clamp(24px, 7vw, 112px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    color: #fff;
    background: linear-gradient(115deg, #0a3d78, #0876d7);
}

.esw-final-cta h2 {
    max-width: 790px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(32px, 3.6vw, 49px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.esw-final-cta > div:last-child {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.esw-cta-link {
    padding-bottom: 3px;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 900;
}

@keyframes eswGridDrift { to { background-position: 48px 48px; } }
@keyframes eswPulseGlow { 50% { opacity: .95; transform: scale(1.08); } }
@keyframes eswGlowMorph {
    0%, 100% { border-radius: 50% 44% 55% 48%; }
    50% { border-radius: 42% 56% 45% 58%; transform: rotate(5deg) scale(1.04); }
}
@keyframes eswRotateWords {
    0% { opacity: 0; transform: translateY(26px); }
    7%, 27% { opacity: 1; transform: translateY(0); }
    34%, 100% { opacity: 0; transform: translateY(-25px); }
}
@keyframes eswScreenCycle {
    0% { opacity: 0; transform: rotateY(-7deg) rotateZ(-1.8deg) translateY(20px); }
    5%, 29% { opacity: 1; transform: rotateY(-7deg) rotateZ(-1.8deg) translateY(0); }
    34%, 100% { opacity: 0; transform: rotateY(-7deg) rotateZ(-1.8deg) translateY(-17px); }
}
@keyframes eswFloatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes eswMarquee { to { transform: translateX(-28%); } }
@keyframes eswCheckoutHover {
    0%, 100% { transform: rotateY(-7deg) rotateZ(1.4deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateZ(.5deg) translateY(-12px); }
}
@keyframes eswSpin { to { transform: rotate(360deg); } }
@keyframes eswAdminHover {
    0%, 100% { transform: rotateX(2deg) rotateY(-2deg) translateY(0); }
    50% { transform: rotateX(1deg) rotateY(-1deg) translateY(-10px); }
}

@media (max-width: 1050px) {
    .esw-home-hero {
        grid-template-columns: 1fr;
        padding-top: 58px;
    }

    .esw-home-hero-copy {
        max-width: 790px;
    }

    .esw-home-hero-visual {
        width: min(100%, 720px);
        margin: 38px auto 0;
    }

    .esw-checkout-showcase {
        grid-template-columns: 1fr;
    }

    .esw-checkout-visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .esw-admin-heading,
    .esw-vendor-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .esw-admin-capabilities {
        grid-template-columns: 1fr 1fr;
    }

    .esw-feature-story {
        gap: 50px;
    }
}

@media (max-width: 760px) {
    .esw-home-hero {
        min-height: 0;
        padding: 48px 22px 55px;
        display: block;
    }

    .esw-home-hero h1 {
        font-size: 48px;
    }

    .esw-hero-rotator {
        font-size: 20px;
    }

    .esw-home-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .esw-home-proof {
        display: grid;
    }

    .esw-home-hero-visual {
        height: 430px;
        margin-top: 35px;
    }

    .esw-home-glow {
        width: 350px;
        height: 350px;
    }

    .esw-browser-card > img {
        height: 280px;
    }

    .esw-mini-admin {
        min-height: 300px;
        padding: 14px;
    }

    .esw-mini-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .esw-mini-chart > div {
        height: 85px;
    }

    .esw-capability-marquee p {
        display: none;
    }

    .esw-checkout-showcase {
        min-height: 0;
        padding-top: 75px;
        padding-bottom: 75px;
        gap: 35px;
    }

    .esw-checkout-copy h2 {
        font-size: 40px;
    }

    .esw-checkout-visual {
        height: 390px;
    }

    .esw-checkout-browser {
        top: 55px;
    }

    .esw-checkout-browser img {
        height: 285px;
    }

    .esw-checkout-orbit.one { width: 350px; height: 350px; }
    .esw-checkout-orbit.two { width: 250px; height: 250px; }

    .esw-admin-showcase,
    .esw-vendor-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .esw-admin-heading h2,
    .esw-vendor-heading h2,
    .esw-workflow-intro h2 {
        font-size: 40px;
    }

    .esw-admin-stage {
        min-height: 430px;
    }

    .esw-admin-dashboard {
        width: 120%;
        min-height: 410px;
        transform: scale(.78);
    }

    .esw-admin-float {
        display: none;
    }

    .esw-admin-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .esw-admin-panels {
        grid-template-columns: 1fr;
    }

    .esw-admin-attention {
        display: none;
    }

    .esw-admin-capabilities {
        margin-top: 20px;
    }

    .esw-workflow-intro {
        padding-top: 75px;
    }

    .esw-feature-stories {
        padding-bottom: 75px;
    }

    .esw-feature-story,
    .esw-feature-story.reverse {
        margin-bottom: 75px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .esw-feature-story.reverse .esw-feature-copy,
    .esw-feature-story.reverse .esw-feature-visual {
        order: initial;
    }

    .esw-feature-copy ul {
        grid-template-columns: 1fr;
    }

    .esw-feature-visual {
        min-height: 300px;
        padding: 35px 18px 22px;
    }

    .esw-vendor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .esw-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   Final header/footer compatibility overrides
   These intentionally outrank the legacy /estoreware/css/esw-site.css
   rules that may be injected again after the Pioneer theme styles.
   ========================================================= */
@media (min-width: 1001px) {
    html body .esw-site-header .esw-nav-link {
        padding-right: 20px !important;
        padding-left: 20px !important;
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    html body .esw-site-header .esw-header-actions {
        gap: 10px !important;
    }

    html body .esw-site-header .esw-header-action {
        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        height: 56px !important;
        padding: 5px 4px !important;
        overflow: visible !important;
    }

    html body .esw-site-header .esw-header-account small {
        margin-top: 14px !important;
        font-size: 18px !important;
        line-height: 1 !important;
        text-transform: none !important;
    }

    html body .esw-site-header .esw-header-cart small {
        margin-top: 8px !important;
        color: #dbe9f7 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }

    html body .esw-site-header .esw-header-cart .cart-qty {
        top: 0 !important;
        right: 0 !important;
        min-width: 19px !important;
        height: 19px !important;
        font-size: 11px !important;
    }

    html body .esw-site-header .esw-get-started {
        min-height: 50px !important;
        padding-right: 23px !important;
        padding-left: 23px !important;
        font-size: 20px !important;
        line-height: 1 !important;
    }
}

html body .esw-site-header .esw-cart-menu {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
}

html body .esw-site-header .esw-cart-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 48px;
    height: 14px;
}

html body .esw-site-header .esw-cart-menu #flyout-cart {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;
    left: auto !important;
    z-index: 1200 !important;
    width: 320px !important;
    min-width: 320px !important;
    height: auto !important;
    margin: 0 !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

html body .esw-site-header .esw-cart-menu #flyout-cart > .cart-link {
    display: none !important;
}

html body .esw-site-header .esw-cart-menu:hover #flyout-cart,
html body .esw-site-header .esw-cart-menu:focus-within #flyout-cart,
html body .esw-site-header .esw-cart-menu.is-open #flyout-cart,
html body .esw-site-header .esw-cart-menu #flyout-cart.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

html body .esw-site-header .esw-cart-menu #flyout-cart .mini-shopping-cart {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 1050px) {
    html body .esw-site-header .esw-cart-menu {
        width: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
    }

    html body .esw-site-header .esw-cart-menu #flyout-cart,
    html body .esw-site-header .esw-cart-menu::after {
        display: none !important;
    }
}

@media (max-width: 470px) {
    .esw-search-panel {
        padding: 12px 0;
    }

    .esw-search-panel form {
        gap: 6px;
    }

    .esw-search-panel input {
        height: 44px;
        padding: 0 12px;
        font-size: 14px;
    }

    .esw-search-panel form button {
        min-width: 76px;
        padding: 0 12px;
        font-size: 13px;
    }

    .esw-search-close {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }
}

html body footer.esw-footer {
    padding: 72px 0 24px !important;
    color: #fff !important;
    background: #06162d !important;
    border-top: 0 !important;
    font-size: 20px !important;
    line-height: 1.5 !important;
}

html body footer.esw-footer .esw-footer-wrap {
    width: min(1400px, calc(100% - 44px)) !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

html body footer.esw-footer .esw-footer-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 48px !important;
    grid-template-columns: minmax(250px, 1.45fr) minmax(0, 3.55fr) !important;
    gap: 54px !important;
}

html body footer.esw-footer .esw-footer-brand {
    padding: 0 !important;
    border: 0 !important;
}

html body footer.esw-footer .esw-footer-logo-image {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
}

html body footer.esw-footer .esw-footer-brand-tagline,
html body footer.esw-footer .esw-footer-brand-tagline span {
    margin: 18px 0 0 !important;
    color: #d9e7f7 !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
    opacity: 1 !important;
}

html body footer.esw-footer .esw-footer-brand-tagline span {
    margin: 0 !important;
    padding: 0 5px !important;
    color: #5aaeee !important;
}

html body footer.esw-footer .esw-footer-brand-text,
html body footer.esw-footer .esw-footer-brand > p {
    max-width: 285px !important;
    margin: 13px 0 0 !important;
    color: #8095ae !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    opacity: 1 !important;
}

html body footer.esw-footer .esw-footer-brand-actions {
    gap: 9px !important;
    margin: 22px 0 0 !important;
}

html body footer.esw-footer .esw-footer-btn,
html body footer.esw-footer .esw-footer-mini-btn {
    width: auto !important;
    min-height: 38px !important;
    
    border-radius: 7px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

html body footer.esw-footer .esw-footer-btn.primary {
    color: #fff !important;
    background: #0c7ed6 !important;
    border: 1px solid #0c7ed6 !important;
}

html body footer.esw-footer .esw-footer-btn.secondary {
    color: #fff !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
}

html body footer.esw-footer .esw-footer-trust {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 8px !important;
    margin-top: 18px !important;
}

html body footer.esw-footer .esw-footer-trust span,
html body footer.esw-footer .esw-footer-trust-item {
    padding: 7px 9px !important;
    color: #8fa8c1 !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .09) !important;
    border-radius: 999px !important;
    font-size: 13px !important;
}

html body footer.esw-footer .esw-footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px !important;
}

html body footer.esw-footer .esw-footer-col h3,
html body footer.esw-footer .esw-footer-col h3 *,
html body footer.esw-footer .esw-footer-accordion-toggle,
html body footer.esw-footer .esw-footer-accordion-toggle * {
    margin: 0 !important;
    color: #6fbdfd !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
}

html body footer.esw-footer .esw-footer-col h3::after {
    display: none !important;
}

html body footer.esw-footer .esw-footer-accordion-body {
    gap: 11px !important;
    margin-top: 18px !important;
}

html body footer.esw-footer .esw-footer-accordion-body > a,
html body footer.esw-footer .esw-footer-accordion-body > a *,
html body footer.esw-footer .esw-footer-company-links a {
    color: #a9bbcf !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    opacity: 1 !important;
}

html body footer.esw-footer .esw-footer-help {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 26px !important;
    padding: 20px 23px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .035) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
}

html body footer.esw-footer .esw-footer-help h3 {
    color: #fff !important;
    font-size: 18px !important;
}

html body footer.esw-footer .esw-footer-help p {
    color: #8298af !important;
    font-size: 15px !important;
}

html body footer.esw-footer .esw-footer-mini-btn {
    color: #06162d !important;
    background: #f4c84b !important;
    border: 1px solid #f4c84b !important;
}

html body footer.esw-footer .esw-footer-company {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 24px !important;
    border: 0 !important;
}

html body footer.esw-footer .esw-footer-bottom {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 24px 0 0 !important;
    color: #71869f !important;
    border-top: 1px solid rgba(255, 255, 255, .1) !important;
    font-size: 11px !important;
}

html body footer.esw-footer .esw-footer-copyright,
html body footer.esw-footer .esw-footer-bottom-links a {
    color: #71869f !important;
    font-size: 11px !important;
}

@media (max-width: 1000px) {
    html body footer.esw-footer .esw-footer-main {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    html body footer.esw-footer {
        padding-top: 55px !important;
    }

    html body footer.esw-footer .esw-footer-wrap {
        width: min(100% - 30px, 1400px) !important;
    }

    html body footer.esw-footer .esw-footer-links {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    html body footer.esw-footer .esw-footer-brand-actions {
        flex-direction: row !important;
    }

    html body footer.esw-footer .esw-footer-help {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}

@media (max-width: 470px) {
    .esw-home-hero h1 {
        font-size: 43px;
    }

    .esw-home-hero-visual {
        height: 350px;
    }

    .esw-browser-card > img {
        height: 220px;
    }

    .esw-quote-card,
    .esw-checkout-badge.secure {
        display: none;
    }

    .esw-checkout-copy h2,
    .esw-admin-heading h2,
    .esw-vendor-heading h2,
    .esw-workflow-intro h2 {
        font-size: 36px;
    }

    .esw-checkout-visual {
        height: 325px;
    }

    .esw-checkout-browser img {
        height: 225px;
    }

    .esw-admin-stage {
        min-height: 350px;
    }

    .esw-admin-dashboard {
        width: 155%;
        min-height: 420px;
        transform: scale(.62);
    }

    .esw-admin-capabilities,
    .esw-vendor-grid {
        grid-template-columns: 1fr;
    }

    .esw-vendor-grid > a {
        min-height: 145px;
    }

    .esw-final-cta > div:last-child {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .esw-screen-one {
        opacity: 1;
    }

    .esw-screen-two,
    .esw-screen-three {
        display: none;
    }
}

<!--
  eStoreware Quick Order Forms product long description
  Product URL: /esw-quick-order-forms
  Screenshot base: /images/uploaded/estoreware/qof-faq/
-->
  .esw-qof-product {
    --esw-navy: #0b1d3a;
    --esw-blue: #0757b9;
    --esw-bright: #1677e8;
    --esw-gold: #f4c542;
    --esw-ink: #17233a;
    --esw-muted: #5f6f86;
    --esw-line: #dfe7f1;
    --esw-soft: #f5f8fc;
    color: var(--esw-ink);
    font-family: inherit;
    line-height: 1.65;
  }
  .esw-qof-product * { box-sizing: border-box; }
  .esw-qof-product h2,
  .esw-qof-product h3,
  .esw-qof-product p { margin-top: 0; }
  .esw-qof-wrap {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
  }
  .esw-qof-hero {
    overflow: hidden;
    padding: 70px 0;
    color: #fff;
    background:
      radial-gradient(circle at 84% 20%, rgba(22,119,232,.38), transparent 34%),
      linear-gradient(135deg, #07172f 0%, #0d2a54 58%, #0757b9 100%);
  }
  .esw-qof-hero-grid,
  .esw-qof-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
  }
  .esw-qof-eyebrow {
    margin-bottom: 12px;
    color: #9cc8ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .esw-qof-hero h2 {
    max-width: 720px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1.06;
  }
  .esw-qof-hero-copy {
    max-width: 700px;
    margin-bottom: 28px;
    color: #dbe9fb;
    font-size: 18px;
  }
  .esw-qof-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .esw-qof-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
  }
  .esw-qof-button-primary {
    color: #08172d !important;
    background: var(--esw-gold);
  }
  .esw-qof-button-secondary {
    border-color: rgba(255,255,255,.55);
    color: #fff !important;
    background: rgba(255,255,255,.08);
  }
  .esw-qof-hero-shot,
  .esw-qof-shot {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--esw-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(9,32,68,.16);
  }
  .esw-qof-hero-shot { transform: perspective(1200px) rotateY(-3deg); }
  .esw-qof-trust {
    padding: 17px 0;
    border-bottom: 1px solid var(--esw-line);
    background: #fff;
  }
  .esw-qof-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    color: #40516a;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  .esw-qof-section { padding: 76px 0; }
  .esw-qof-section-soft { background: var(--esw-soft); }
  .esw-qof-heading {
    max-width: 800px;
    margin: 0 auto 36px;
    text-align: center;
  }
  .esw-qof-heading h2,
  .esw-qof-split h2,
  .esw-qof-cta h2 {
    margin-bottom: 14px;
    color: var(--esw-navy);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.16;
  }
  .esw-qof-heading p,
  .esw-qof-split p {
    color: var(--esw-muted);
    font-size: 17px;
  }
  .esw-qof-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .esw-qof-feature {
    padding: 26px;
    border: 1px solid var(--esw-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(13,42,84,.06);
  }
  .esw-qof-feature-icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--esw-blue), var(--esw-bright));
    font-size: 21px;
    font-weight: 900;
  }
  .esw-qof-feature h3 {
    margin-bottom: 8px;
    color: var(--esw-navy);
    font-size: 19px;
  }
  .esw-qof-feature p {
    margin-bottom: 0;
    color: var(--esw-muted);
  }
  .esw-qof-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
  }
  .esw-qof-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 27px;
  }
  .esw-qof-list li::before {
    position: absolute;
    left: 0;
    color: var(--esw-blue);
    content: "✓";
    font-weight: 900;
  }
  .esw-qof-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .esw-qof-figure {
    margin: 0;
    padding: 14px;
    border: 1px solid var(--esw-line);
    border-radius: 14px;
    background: #fff;
  }
  .esw-qof-figure figcaption {
    padding: 12px 5px 3px;
    color: #43536b;
    font-size: 14px;
    font-weight: 700;
  }
  .esw-qof-cta {
    padding: 68px 0;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #07172f, #0d2a54);
  }
  .esw-qof-cta h2 { color: #fff; }
  .esw-qof-cta p {
    max-width: 760px;
    margin: 0 auto 25px;
    color: #dce9f9;
    font-size: 17px;
  }
  .esw-qof-cta .esw-qof-buttons { justify-content: center; }
  @media (max-width: 900px) {
    .esw-qof-hero-grid,
    .esw-qof-split { grid-template-columns: 1fr; }
    .esw-qof-feature-grid { grid-template-columns: 1fr 1fr; }
    .esw-qof-trust-grid { grid-template-columns: 1fr 1fr; }
    .esw-qof-hero-shot { transform: none; }
  }
  @media (max-width: 620px) {
    .esw-qof-hero,
    .esw-qof-section,
    .esw-qof-cta { padding: 52px 0; }
    .esw-qof-feature-grid,
    .esw-qof-gallery { grid-template-columns: 1fr; }
    .esw-qof-button { width: 100%; }
  }
