body.xjm-site{
    --xjm-color-ink: #0f172a;
    --xjm-color-ink-light: #1f2937;
    --xjm-color-muted: #64748b;
    --xjm-color-accent: #e3443a;
    --xjm-color-accent-dark: #c9352d;
    --xjm-color-surface: #ffffff;
    --xjm-color-bg: #f4f6fb;
    --xjm-color-shadow: rgba(15, 23, 42, 0.12);
    --xjm-color-border: rgba(15, 23, 42, 0.08);
    --xjm-radius-lg: 24px;
    --xjm-radius-md: 16px;
    --xjm-radius-sm: 10px;
}body.xjm-site *{
    box-sizing: border-box;
}body.xjm-site{
    margin: 0;
    font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", "Optima", sans-serif;
    color: var(--xjm-color-ink);
    background: radial-gradient(circle at top left, rgba(227, 68, 58, 0.12), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(15, 23, 42, 0.1), transparent 35%),
        var(--xjm-color-bg);
    overflow-x: hidden;
}body.xjm-site img{
    max-width: 100%;
    display: block;
}body.xjm-site a{
    color: inherit;
    text-decoration: none;
}body.xjm-site .xjm-container{
    width: 100%;
    margin: 0;
}body.xjm-site .xjm-site-main{
    position: relative;
    overflow: hidden;
}body.xjm-site /* Header */
.xjm-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}body.xjm-site .xjm-header.is-scrolled, body.xjm-site .xjm-header.active{
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}body.xjm-site .xjm-header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 80px;
    padding: 0;
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
}body.xjm-site .xjm-brand{
    display: flex;
    align-items: center;
    gap: 14px;
}body.xjm-site .xjm-brand-link{
    display: flex;
    align-items: center;
    gap: 12px;
}body.xjm-site .xjm-brand-logo{
    height: auto;
    max-width: 260px;
    max-height: 60px;
    width: auto;
}body.xjm-site .xjm-brand-text{
    font-weight: 700;
    letter-spacing: 0.04em;
}body.xjm-site .xjm-brand-tagline{
    display: none;
}body.xjm-site .xjm-nav-wrap{
    flex: 1;
    display: flex;
    justify-content: center;
}body.xjm-site .xjm-nav{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    align-items: center;
}body.xjm-site .xjm-nav > li{
    position: relative;
}body.xjm-site .xjm-nav > li > a{
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    color: #333;
    letter-spacing: 0;
    line-height: 80px;
    padding: 0;
    position: relative;
}body.xjm-site .xjm-nav > li > a::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    margin: 0 auto;
    background: #f60;
    transition: width 0.3s ease;
}body.xjm-site .xjm-nav > li:hover > a, body.xjm-site .xjm-nav > li:focus-within > a{
    color: #f60;
    border-bottom-color: #f60;
}body.xjm-site .xjm-nav > li:hover > a::after, body.xjm-site .xjm-nav > li:focus-within > a::after{
    width: 100%;
}body.xjm-site .xjm-nav > li > ul{
    list-style: none;
    margin: 0;
    padding: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--xjm-radius-sm);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
    display: none;
    z-index: 20;
}body.xjm-site .xjm-nav > li:hover > ul, body.xjm-site .xjm-nav > li:focus-within > ul{
    display: block;
}body.xjm-site .xjm-nav > li > ul li{
    margin-bottom: 8px;
}body.xjm-site .xjm-nav > li > ul li:last-child{
    margin-bottom: 0;
}body.xjm-site .xjm-header-tools{
    display: flex;
    align-items: center;
    gap: 18px;
}body.xjm-site .xjm-hotline{
    display: grid;
    gap: 2px;
    font-size: 12px;
    color: var(--xjm-color-muted);
}body.xjm-site .xjm-hotline-value{
    font-weight: 700;
    color: var(--xjm-color-ink);
}body.xjm-site .xjm-nav-toggle{
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}body.xjm-site .xjm-nav-toggle-line{
    width: 24px;
    height: 2px;
    background: #f60;
    display: block;
    margin: 4px 0;
}body.xjm-site .xjm-header.is-scrolled{
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}body.xjm-site .xjm-mobile-panel{
    display: none;
    background: #fff;
    border-top: 1px solid var(--xjm-color-border);
}body.xjm-site .xjm-mobile-panel.is-open{
    display: block;
}body.xjm-site .xjm-mobile-nav{
    list-style: none;
    margin: 0;
    padding: 20px 0;
    display: grid;
    gap: 14px;
}body.xjm-site .xjm-mobile-nav ul{
    list-style: none;
    padding-left: 16px;
    margin-top: 8px;
    display: grid;
    gap: 8px;
    color: var(--xjm-color-muted);
}body.xjm-site /* Hero */
.xjm-hero{
    position: relative;
    color: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}body.xjm-site .xjm-hero-slider{
    position: absolute;
    inset: 0;
    overflow: hidden;
}body.xjm-site .xjm-hero-track{
    position: absolute;
    inset: 0;
}body.xjm-site .xjm-hero-slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}body.xjm-site .xjm-hero-slide.is-active{
    opacity: 1;
}body.xjm-site .xjm-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 15, 23, 0.78), rgba(17, 24, 39, 0.45));
    pointer-events: none;
}body.xjm-site .xjm-hero-slide-link{
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    text-indent: -9999px;
}body.xjm-site .xjm-hero-content{
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    padding: 120px 0 100px;
    max-width: 620px;
    width: 94%;
    margin: 0 auto;
}body.xjm-site .xjm-hero-eyebrow{
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(227, 68, 58, 0.2);
    border: 1px solid rgba(227, 68, 58, 0.4);
    width: fit-content;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}body.xjm-site .xjm-hero-title{
    font-size: clamp(34px, 5vw, 56px);
    margin: 0;
    font-weight: 700;
}body.xjm-site .xjm-hero-subtitle{
    font-size: 18px;
    margin: 0;
}body.xjm-site .xjm-hero-text{
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}body.xjm-site .xjm-hero-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
    margin-top: 12px;
}body.xjm-site .xjm-hero-controls{
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: flex;
    gap: 10px;
    z-index: 3;
}body.xjm-site .xjm-hero-nav{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}body.xjm-site .xjm-hero-dots{
    position: absolute;
    left: 32px;
    bottom: 32px;
    display: flex;
    gap: 8px;
    z-index: 3;
}body.xjm-site .xjm-hero-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}body.xjm-site .xjm-hero-dot.is-active{
    background: #fff;
}body.xjm-site /* Buttons */
.xjm-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}body.xjm-site .xjm-button-primary{
    background: var(--xjm-color-accent);
    color: #fff;
    box-shadow: 0 18px 32px rgba(227, 68, 58, 0.35);
}body.xjm-site .xjm-button-primary:hover{
    background: var(--xjm-color-accent-dark);
}body.xjm-site .xjm-button-ghost, body.xjm-site .xjm-button-outline{
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}body.xjm-site .xjm-button-outline{
    color: var(--xjm-color-ink);
    border-color: var(--xjm-color-border);
}body.xjm-site /* Sections */
.xjm-section, body.xjm-site .xjm-page-section{
    padding: 90px 0;
}body.xjm-site .xjm-section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
}body.xjm-site .xjm-about-hero-bg{
    background-image: url("https://omo-oss-image1.thefastimg.com/portal-saas/new2023122617223461745/cms/image/e7d8d75b-343e-4086-9dfa-e85ab2870b17.jpg");
    background-repeat: no-repeat;
    background-position: top center;
}body.xjm-site .xjm-section-tag{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--xjm-color-accent);
    font-weight: 700;
}body.xjm-site .xjm-section-title{
    font-size: clamp(26px, 3vw, 38px);
    margin: 8px 0;
}body.xjm-site .xjm-section-subtitle{
    color: var(--xjm-color-muted);
    margin: 0 0 8px;
}body.xjm-site .xjm-section-text{
    color: var(--xjm-color-muted);
    line-height: 1.7;
}body.xjm-site .xjm-section-image img{
    width: 220px;
    border-radius: var(--xjm-radius-lg);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}body.xjm-site /* About */
.xjm-about{
    min-height: 300px;
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 80px;
}body.xjm-site .xjm-about-inner{
    text-align: center;
}body.xjm-site .xjm-about-logo{
    max-width: 195px;
    margin: 0 auto;
}body.xjm-site .xjm-about-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}body.xjm-site .xjm-about-title{
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0;
}body.xjm-site .xjm-about-text p{
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin: 0 0 10px;
}body.xjm-site .xjm-about-stats{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}body.xjm-site .xjm-about-stat{
    flex: 1 1 180px;
    max-width: 260px;
    text-align: center;
}body.xjm-site .xjm-about-stat-top{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
}body.xjm-site .xjm-about-number{
    height: 60px;
    line-height: 60px;
    font-size: 48px;
    color: #f60;
    font-weight: 700;
}body.xjm-site .xjm-about-plus{
    color: #f60;
    margin-top: 32px;
}body.xjm-site .xjm-about-label{
    display: block;
    color: #f60;
    margin-top: 32px;
}body.xjm-site .xjm-about-desc{
    display: block;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}body.xjm-site .xjm-about-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    margin-top: 40px;
    border-radius: 50px;
    border: 1px solid #f60;
    color: #f60;
    transition: all 0.3s ease;
}body.xjm-site .xjm-about-button:hover{
    background: #f60;
    color: #fff;
}body.xjm-site /* Categories */
.xjm-category-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 40px 0;
}body.xjm-site .xjm-category-card{
    background: #fff;
    border-radius: var(--xjm-radius-md);
    border: 1px solid var(--xjm-color-border);
    padding: 18px;
    display: grid;
    gap: 12px;
    text-align: left;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}body.xjm-site .xjm-category-card-anim{
    position: relative;
    overflow: hidden;
    min-height: 160px;
}body.xjm-site .xjm-category-card-anim img{
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 55%;
    opacity: 0.2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}body.xjm-site .xjm-category-card-anim:hover img{
    transform: translateY(-10px) scale(1.05);
    opacity: 0.35;
}body.xjm-site .xjm-category-title{
    font-size: 18px;
    font-weight: 700;
}body.xjm-site .xjm-category-sub{
    color: var(--xjm-color-muted);
    font-size: 13px;
}body.xjm-site .xjm-category-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

@keyframes xjm-pro-circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}body.xjm-site .xjm-products{
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    background-image: url("https://omo-oss-image1.thefastimg.com/portal-saas/new2023122617223461745/cms/image/8532d380-f822-4530-b945-e47d6c2dbd52.jpg");
    padding-top: 80px;
    padding-bottom: 80px;
}body.xjm-site .xjm-products-header{
    width: 90%;
    margin: 0 auto 40px;
    text-align: center;
}body.xjm-site .xjm-products-title{
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
}body.xjm-site .xjm-products-subtitle{
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 1.8;
}body.xjm-site .xjm-pro-swiper{
    display: flex;
    align-items: center;
    gap: 3vw;
    padding: 30px 0 60px;
    height: 100%;
    max-height: 1440px;
    width: 90%;
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
}body.xjm-site .xjm-pro-col{
    padding: 15px;
}body.xjm-site .xjm-pro-left{
    width: calc(100% - 40vw - 25vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
}body.xjm-site .xjm-pro-title h3{
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}body.xjm-site .xjm-pro-title p{
    margin: 6px 0 20px;
    font-size: 18px;
    text-transform: uppercase;
}body.xjm-site .xjm-pro-title{
    display: none;
}body.xjm-site .xjm-pro-slider{
    position: relative;
}body.xjm-site .xjm-pro-slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}body.xjm-site .xjm-pro-slide.is-active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}body.xjm-site .xjm-pro-name{
    font-size: 1.8vw;
    color: #f60;
    font-weight: 700;
    text-shadow: rgb(255 255 255) 2px 2px;
    margin: 0 0 10px;
}body.xjm-site .xjm-pro-line{
    width: 80px;
    height: 2px;
    background: var(--xjm-color-accent);
    margin-bottom: 12px;
}body.xjm-site .xjm-pro-models{
    color: #282828;
    line-height: 1.6;
    padding: 10px 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}body.xjm-site .xjm-pro-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f60;
    color: #fff;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
}body.xjm-site .xjm-pro-middle{
    width: 35vw;
    height: 35vw;
    max-width: 520px;
    max-height: 520px;
    min-width: 260px;
    min-height: 260px;
    aspect-ratio: 1 / 1;
    position: relative;
    padding: 20px;
}body.xjm-site .xjm-pro-circle{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px rgba(255, 255, 255, 0.4) solid;
    animation: xjm-pro-circle 10s infinite linear;
}body.xjm-site .xjm-pro-circle::before{
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #f60;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: conic-gradient(
        #f60 0 45deg,
        transparent 45deg 90deg,
        #f60 90deg 135deg,
        transparent 135deg 180deg,
        #f60 180deg 225deg,
        transparent 225deg 270deg,
        #f60 270deg 315deg,
        transparent 315deg 360deg
    );
}body.xjm-site .xjm-pro-images{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}body.xjm-site .xjm-pro-image{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 1;
    left: 0;
    top: 0;
    overflow: hidden;
}body.xjm-site .xjm-pro-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    transform: scale(0.5);
    opacity: 0;
}body.xjm-site .xjm-pro-image.is-active{
    position: relative;
    z-index: 3;
    opacity: 1;
    visibility: visible;
}body.xjm-site .xjm-pro-image.is-active img{
    transform: scale(1);
    opacity: 1;
}body.xjm-site .xjm-pro-image.is-active:hover img{
    transform: scale(1.1);
    opacity: 1;
}body.xjm-site .xjm-pro-right{
    width: 25vw;
    height: 100%;
    padding-left: 3%;
    position: relative;
}body.xjm-site .xjm-pro-right::after{
    content: "";
    display: block;
    width: 0;
    height: 100vh;
    max-height: 1440px;
    border-right: 0px dashed var(--xjm-color-muted);
    position: absolute;
    right: 0;
    top: 105%;
    transform: translate(0, -50%);
    opacity: 0.8;
}body.xjm-site .xjm-pro-thumbs{
    display: grid;
    gap: 20px;
}body.xjm-site .xjm-pro-thumb{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}body.xjm-site .xjm-pro-thumb img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}body.xjm-site .xjm-pro-thumb-title{
    display: block;
    font-size: 16px;
    font-weight: 600;
}body.xjm-site .xjm-pro-thumb-link{
    font-size: 12px;
    color: var(--xjm-color-muted);
}body.xjm-site .xjm-pro-thumb.is-active .xjm-pro-thumb-title{
    color: #f60;
}body.xjm-site .xjm-category-card span{
    font-weight: 600;
}body.xjm-site /* Carousel */
.xjm-carousel{
    position: relative;
}body.xjm-site .xjm-carousel-track{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}body.xjm-site .xjm-carousel-track::-webkit-scrollbar{
    height: 6px;
}body.xjm-site .xjm-carousel-track::-webkit-scrollbar-thumb{
    background: rgba(15, 23, 42, 0.2);
    border-radius: 999px;
}body.xjm-site .xjm-carousel-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 30px 0 16px;
    text-align: center;
}body.xjm-site .xjm-carousel-title{
    font-size: 22px;
    margin: 0;
}body.xjm-site .xjm-carousel-subtitle{
    color: #666;
    margin: 0;
    font-size: 14px;
}body.xjm-site .xjm-carousel-controls{
    display: flex;
    gap: 10px;
}body.xjm-site .xjm-carousel-btn{
    background: transparent;
    border: 1px solid var(--xjm-color-border);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
}body.xjm-site /* Product cards */
.xjm-product-card{
    min-width: 260px;
    background: #fff;
    border-radius: var(--xjm-radius-md);
    border: 1px solid var(--xjm-color-border);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}body.xjm-site .xjm-product-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}body.xjm-site .xjm-product-card-body{
    padding: 16px;
    display: grid;
    gap: 6px;
}body.xjm-site .xjm-product-carousel{
    position: relative;
    /* max-width: 700px; */
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}body.xjm-site .xjm-product-carousel-track{
    display: flex;
    gap: 20px;
    transition: transform 0.8s ease;
    will-change: transform;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}body.xjm-site .xjm-product-carousel img{
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
}body.xjm-site .xjm-product-carousel.is-dragging .xjm-product-carousel-track{
    cursor: grabbing;
}body.xjm-site .xjm-product-carousel.is-dragging a{
    pointer-events: none;
}body.xjm-site .xjm-product-carousel-slide{
    flex: 0 0 670px;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.8s ease;
}body.xjm-site .xjm-product-carousel-slide.is-active{
    transform: scale(1);
}body.xjm-site .xjm-product-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 0;
}body.xjm-site .xjm-product-control{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
}body.xjm-site .xjm-product-prev::after, body.xjm-site .xjm-product-next::after{
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}body.xjm-site .xjm-product-prev::after{
    content: "‹";
}body.xjm-site .xjm-product-next::after{
    content: "›";
}body.xjm-site .xjm-product-scrollbar{
    width: 100px;
    height: 2px;
    background: #e1e1e1;
    border-radius: 2px;
    position: relative;
}body.xjm-site .xjm-product-scrollbar-drag{
    display: block;
    height: 2px;
    width: 12px;
    border-radius: 2px;
    background: #333;
    transition: transform 0.5s ease;
}body.xjm-site .xjm-product-pagination{
    min-width: 62px;
    height: 20px;
    padding: 0 10px;
    background: #f60;
    border-radius: 25px;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}body.xjm-site .xjm-product-dots{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}body.xjm-site .xjm-product-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8d8d8;
    border: none;
    cursor: pointer;
}body.xjm-site .xjm-product-dot.is-active{
    background: #f60;
}body.xjm-site .xjm-product-media{
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #000;
    border: 5px solid #fff;
    border-radius: 20px;
    transition: all 1s ease;
}body.xjm-site .xjm-product-carousel-slide:hover .xjm-product-media{
    border-color: #f60;
    background: transparent;
}body.xjm-site .xjm-product-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0.7;
}body.xjm-site .xjm-product-carousel-slide:hover .xjm-product-media img{
    transform: scale(1.05);
    opacity: 1;
}body.xjm-site .xjm-product-carousel-body{
    position: absolute;
    top: 0;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 9;
}body.xjm-site .xjm-product-carousel-body h4{
    font-size: 24px;
    color: #fff;
    margin: 0;
    transition: all 1s ease;
}body.xjm-site .xjm-product-carousel-slide:hover .xjm-product-carousel-body h4{
    transform: scale(1.2);
    opacity: 0;
    margin-bottom: 50%;
}body.xjm-site .xjm-product-arrow{
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}body.xjm-site .xjm-product-overlay{
    position: absolute;
    left: 10%;
    bottom: 60%;
    width: 80%;
    background: #f60;
    color: #fff;
    padding: 20px 24px;
    border-radius: 10px;
    opacity: 0;
    transition: all 1s ease;
}body.xjm-site .xjm-product-overlay h5{
    margin: 0;
    font-size: 22px;
}body.xjm-site .xjm-product-overlay p{
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
}body.xjm-site .xjm-product-carousel-slide:hover .xjm-product-overlay{
    opacity: 1;
    bottom: -5%;
}body.xjm-site .xjm-product-carousel-slide::after{
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    border: 0px solid #e1e1e1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    transition: all 1.5s ease 0.3s;
}

@media (max-width: 900px) {body.xjm-site .xjm-product-carousel{
        max-width: 90vw;
    }body.xjm-site .xjm-product-carousel-slide{
        flex-basis: 80vw;
    }
}body.xjm-site .xjm-product-carousel-slide.is-active::after{
    transform: translate(-50%, -50%) scale(1);
}body.xjm-site .xjm-product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}body.xjm-site .xjm-product-price{
    color: var(--xjm-color-accent);
    font-weight: 600;
}body.xjm-site .xjm-product-link{
    color: var(--xjm-color-accent);
    font-weight: 600;
}body.xjm-site /* Why choose us */
.xjm-why{
    background-color: #f60;
    background-image: url("https://omo-oss-image.thefastimg.com/portal-saas/new2023122617223461745/cms/image/316c3308-b1b2-41c7-92d4-154c464845a5.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
    padding-top: 80px;
    padding-bottom: 80px;
}body.xjm-site .xjm-why-inner{
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}body.xjm-site .xjm-why-title{
    font-size: 38px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}body.xjm-site .xjm-why-subtitle{
    font-size: 18px;
    color: #fff;
    margin: 10px 0 0;
}body.xjm-site .xjm-why-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}body.xjm-site .xjm-why-card{
    color: #fff;
    text-align: center;
}body.xjm-site .xjm-why-icon{
    max-width: 65px;
    margin: 0 auto;
}body.xjm-site .xjm-why-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}body.xjm-site .xjm-why-card h3{
    font-size: 20px;
    margin: 20px 0 0;
}body.xjm-site .xjm-why-card p{
    margin: 10px 0 0;
}body.xjm-site /* News */
.xjm-news-center{
    margin-top: 80px;
    margin-bottom: 80px;
}body.xjm-site .xjm-news-inner{
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
}body.xjm-site .xjm-news-header{
    text-align: center;
}body.xjm-site .xjm-news-title{
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}body.xjm-site .xjm-news-subtitle{
    font-size: 18px;
    color: #333;
    margin: 10px 0 0;
    line-height: 32px;
}body.xjm-site .xjm-news-grid{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}body.xjm-site .xjm-news-card{
    flex: 0 0 30%;
    margin: 20px;
}body.xjm-site .xjm-news-card a{
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}body.xjm-site .xjm-news-content{
    position: relative;
    z-index: 2;
    padding: 30px;
    background: #fff;
    transition: all ease 0.5s;
}body.xjm-site .xjm-news-date{
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.8;
}body.xjm-site .xjm-news-line{
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}body.xjm-site .xjm-news-heading{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
    min-height: 87px;
}body.xjm-site .xjm-news-excerpt{
    font-size: 14px;
    color: #747474;
    margin: 20px 0 0;
    min-height: 76px;
    line-height: 1.8;
}body.xjm-site .xjm-news-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    margin-top: 40px;
    background: #f4f4f4;
    border-radius: 50%;
    color: #b0b0b0;
}body.xjm-site .xjm-news-icon svg{
    width: 24px;
    height: 24px;
}body.xjm-site .xjm-news-bg{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 395px;
    overflow: hidden;
}body.xjm-site .xjm-news-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all ease 0.5s;
}body.xjm-site .xjm-news-card:hover .xjm-news-content{
    background: rgba(0, 0, 0, 0.6);
}body.xjm-site .xjm-news-card:hover .xjm-news-date, body.xjm-site .xjm-news-card:hover .xjm-news-line, body.xjm-site .xjm-news-card:hover .xjm-news-heading, body.xjm-site .xjm-news-card:hover .xjm-news-excerpt{
    filter: brightness(0) invert(100%);
}body.xjm-site .xjm-news-card:hover .xjm-news-icon{
    background: #fff;
    color: #000;
}body.xjm-site .xjm-news-card:hover .xjm-news-bg img{
    opacity: 1;
}body.xjm-site .xjm-news-button{
    display: block;
    max-width: 260px;
    margin: 50px auto 0;
    text-align: center;
    padding: 8px;
    border-radius: 50px;
    background: #f60;
    color: #fff;
    border: 1px solid #f60;
    transition: all 0.3s ease;
}body.xjm-site .xjm-news-button:hover{
    background: #fff;
    color: #f60;
    border-radius: 20px;
}body.xjm-site /* Contact */
.xjm-contact-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}body.xjm-site .xjm-contact-cards{
    display: grid;
    gap: 16px;
    margin: 20px 0;
}body.xjm-site .xjm-contact-card{
    background: #fff;
    border-radius: var(--xjm-radius-md);
    border: 1px solid var(--xjm-color-border);
    padding: 16px;
    display: grid;
    gap: 6px;
}body.xjm-site .xjm-contact-media img{
    border-radius: var(--xjm-radius-lg);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}body.xjm-site /* Page hero */
.xjm-page-hero{
    padding: 100px 0 60px;
    position: relative;
}body.xjm-site .xjm-page-title{
    font-size: clamp(32px, 4vw, 48px);
    margin: 12px 0;
}body.xjm-site .xjm-page-subtitle{
    color: var(--xjm-color-muted);
    max-width: 680px;
}body.xjm-site .xjm-service-hero-media, body.xjm-site .xjm-product-hero-media, body.xjm-site .xjm-about-hero-media{
    margin-top: 24px;
    border-radius: var(--xjm-radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
}body.xjm-site /* Filters */
.xjm-filter-bar{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}body.xjm-site .xjm-filter-link{
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--xjm-color-border);
    font-size: 14px;
}body.xjm-site .xjm-filter-link.is-active{
    background: var(--xjm-color-ink);
    color: #fff;
}body.xjm-site .xjm-product-filters{
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}body.xjm-site .xjm-filter-group{
    display: grid;
    gap: 8px;
}body.xjm-site .xjm-filter-options{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}body.xjm-site .xjm-filter-options label{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--xjm-color-border);
    padding: 6px 12px;
    border-radius: 999px;
}body.xjm-site /* Blog */
.xjm-blog-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}body.xjm-site .xjm-blog-card{
    background: #fff;
    border-radius: var(--xjm-radius-md);
    border: 1px solid var(--xjm-color-border);
    overflow: hidden;
    display: grid;
    gap: 12px;
}body.xjm-site .xjm-blog-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}body.xjm-site .xjm-blog-card-body{
    padding: 16px;
}body.xjm-site .xjm-blog-meta{
    display: flex;
    justify-content: space-between;
    color: var(--xjm-color-muted);
    font-size: 12px;
}body.xjm-site .xjm-article{
    background: #fff;
    padding: 32px;
    border-radius: var(--xjm-radius-lg);
    border: 1px solid var(--xjm-color-border);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}body.xjm-site .xjm-article-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--xjm-color-muted);
    font-size: 13px;
}body.xjm-site .xjm-article-content{
    line-height: 1.8;
    color: var(--xjm-color-ink-light);
}body.xjm-site /* Product detail */
.xjm-product-detail-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}body.xjm-site .xjm-product-gallery{
    display: grid;
    gap: 16px;
}body.xjm-site .xjm-product-placeholder{
    padding: 40px;
    border: 1px dashed var(--xjm-color-border);
    border-radius: var(--xjm-radius-md);
    text-align: center;
    color: var(--xjm-color-muted);
}body.xjm-site .xjm-product-main{
    width: 100%;
    border-radius: var(--xjm-radius-md);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}body.xjm-site .xjm-product-thumbs{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}body.xjm-site .xjm-product-thumb{
    border: 1px solid transparent;
    background: none;
    padding: 0;
    border-radius: var(--xjm-radius-sm);
    overflow: hidden;
    cursor: pointer;
}body.xjm-site .xjm-product-thumb.is-active{
    border-color: var(--xjm-color-accent);
}body.xjm-site .xjm-product-summary{
    display: grid;
    gap: 16px;
}body.xjm-site .xjm-product-actions .button, body.xjm-site .xjm-product-actions button{
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--xjm-color-accent);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}body.xjm-site .xjm-product-actions .button:hover, body.xjm-site .xjm-product-actions button:hover{
    background: var(--xjm-color-accent-dark);
}body.xjm-site .xjm-product-price{
    font-size: 24px;
    font-weight: 700;
    color: var(--xjm-color-accent);
}body.xjm-site .xjm-specs-table{
    display: grid;
    gap: 10px;
}body.xjm-site .xjm-spec-row{
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--xjm-color-border);
    padding: 12px 16px;
    border-radius: var(--xjm-radius-sm);
}body.xjm-site.xjm-product-page{
    background: #f6f6f6;
}body.xjm-site /* Product detail layout (match product detail HTML) */
body.xjm-site .xjm-product-topcats{
    background: #fff;
}body.xjm-site .xjm-product-topcats-wrap{
    width: 94%;
    margin: 0 auto;
    max-width: 1560px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 4% 0;
}body.xjm-site .xjm-product-topcat{
    display: block;
    text-align: center;
    color: #333;
    text-decoration: none;
}body.xjm-site .xjm-product-topcat img{
    width: min(100%, 132px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}body.xjm-site .xjm-product-topcat span{
    display: block;
    margin-top: 10px;
    font-size: 16px;
}body.xjm-site .xjm-product-topcat:hover span{
    color: #f60;
}body.xjm-site .xjm-product-topcat:hover img{
    transform: translateY(-4px);
}
.xjm-product-detail-hero{
    background: #f6f6f6;
}body.xjm-site .xjm-product-detail-wrap{
    width: 94%;
    margin: 0 auto;
    max-width: 1560px;
    padding: 4% 4% 2%;
    background: #fff;
}body.xjm-site .xjm-product-intro{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}body.xjm-site .xjm-product-intro-left{
    flex: 0 0 35%;
}body.xjm-site .xjm-product-intro-eyebrow{
    font-size: 50px;
    color: #e4e4e4;
    line-height: 1;
    margin: 0;
    font-family: Impact, "Arial Black", sans-serif;
    font-weight: normal;
}body.xjm-site .xjm-product-intro-model{
    font-size: 28px;
    color: #222;
    line-height: 1;
    margin: 20px 0 0;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-weight: normal;
}body.xjm-site .xjm-product-intro-right{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}body.xjm-site .xjm-product-intro-text{
    text-align: right;
}body.xjm-site .xjm-product-intro-tagline{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, #f60, #fea94f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}body.xjm-site .xjm-product-intro-subtitle{
    margin: 10px 0 0;
    font-size: 16px;
    color: #afafaf;
}body.xjm-site .xjm-product-intro-media{
    flex: 0 0 130px;
}body.xjm-site .xjm-product-intro-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}body.xjm-site .xjm-product-intro-line{
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0 0;
    position: relative;
}body.xjm-site .xjm-product-intro-line::after{
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    width: 110px;
    height: 3px;
    background: linear-gradient(-90deg, #fea94f, #f60);
    border-radius: 30px;
}body.xjm-site .xjm-product-detail-main{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    margin-top: 3%;
}body.xjm-site .xjm-product-detail-gallery{
    flex: 1 1 48%;
    max-width: 760px;
}body.xjm-site .xjm-product-magnifier-main{
    position: relative;
    border: 1px solid #ddd;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}body.xjm-site .xjm-product-magnifier-main img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}body.xjm-site .xjm-product-magnifier-main:hover img{
    transform: scale(1);
}body.xjm-site .xjm-product-magnifier-main.is-zooming img{
    transform: scale(1.6);
}body.xjm-site .xjm-product-magnifier-plus{
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 700;
}body.xjm-site .xjm-product-magnifier-thumbs{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}body.xjm-site .xjm-product-magnifier-thumbs .xjm-product-thumb{
    width: 84px;
    height: 84px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}body.xjm-site .xjm-product-magnifier-thumbs .xjm-product-thumb.is-active{
    border-color: #f60;
}body.xjm-site .xjm-product-magnifier-thumbs .xjm-product-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}body.xjm-site .xjm-product-detail-summary{
    flex: 1 1 340px;
    min-width: 280px;
}body.xjm-site .xjm-product-detail-name{
    font-size: 24px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 10px;
    font-weight: normal;
}body.xjm-site .xjm-product-detail-text{
    font-size: 15px;
    color: #8d8d8d;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 1%;
}body.xjm-site .xjm-product-detail-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin-top: 3%;
}body.xjm-site .xjm-product-btn{
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 30px;
    font-size: 15px;
}body.xjm-site .xjm-product-btn-outline{
    color: #f60;
    border: 1px solid #f60;
    background: transparent;
}body.xjm-site .xjm-product-btn-outline:hover{
    background: linear-gradient(-90deg, #fea94f, #f60);
    color: #fff;
}body.xjm-site .xjm-product-btn-primary{
    color: #fff;
    background: linear-gradient(-90deg, #fea94f, #f60);
    border: 1px solid #f60;
}body.xjm-site .xjm-product-btn-primary:hover{
    color: #f60;
    background: transparent;
}body.xjm-site .xjm-product-contact{
    display: grid;
    gap: 10px;
    background: rgba(242, 242, 242, 1);
    margin-top: 5%;
    padding: 20px;
    border-radius: 5px;
}body.xjm-site .xjm-product-contact-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f60;
    font-size: 15px;
}body.xjm-site .xjm-product-contact-item a{
    color: inherit;
}body.xjm-site .xjm-product-contact-icon{
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}body.xjm-site .xjm-product-contact-icon svg{
    width: 100%;
    height: 100%;
}body.xjm-site .xjm-product-spec-section{
    background: #f6f6f6;
    padding: 20px 0 0;
}body.xjm-site .xjm-product-spec-wrap{
    width: 94%;
    margin: 0 auto;
    max-width: 1560px;
    padding: 4%;
    background: #fff;
}body.xjm-site .xjm-product-spec-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}body.xjm-site .xjm-product-spec-content{
    flex: 1 1 60%;
    color: #333;
}body.xjm-site .xjm-product-spec-content table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}body.xjm-site .xjm-product-spec-content table tr:first-child td{
    background: #ff6600;
    color: #fff;
    font-weight: 700;
}body.xjm-site .xjm-product-spec-content table tr:nth-child(even) td{
    background: #f6f6f6;
}body.xjm-site .xjm-product-spec-content td{
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    font-size: 14px;
}body.xjm-site .xjm-product-spec-aside{
    flex: 1 1 30%;
}body.xjm-site .xjm-product-spec-title{
    font-size: 18px;
    margin: 0 0 10px;
}body.xjm-site .xjm-product-spec-aside img{
    width: 100%;
    max-width: 400px;
    height: auto;
}body.xjm-site .xjm-product-related{
    background: #f6f6f6;
}body.xjm-site .xjm-product-related-wrap{
    width: 94%;
    margin: 40px auto 6%;
    max-width: 1560px;
    padding: 4%;
    background: #fff;
    border-radius: 0 0 10px 10px;
}body.xjm-site .xjm-related-title{
    font-size: 24px;
    color: #222;
    margin: 0 0 20px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-weight: normal;
}body.xjm-site .xjm-related-grid{
    display: flex;
    flex-wrap: wrap;
}body.xjm-site .xjm-related-card{
    flex: 0 0 25%;
    position: relative;
    padding: 10px;
}body.xjm-site .xjm-related-media{
    overflow: hidden;
}body.xjm-site .xjm-related-media img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.6s;
}body.xjm-site .xjm-related-card:hover img{
    transform: scale(1.1);
}body.xjm-site .xjm-related-body{
    padding: 12px 0 0;
}body.xjm-site .xjm-related-body h3{
    margin: 0;
    font-size: 18px;
    color: #222;
    font-weight: normal;
}body.xjm-site /* Accordion */
.xjm-accordion{
    display: grid;
    gap: 12px;
}body.xjm-site .xjm-accordion-item{
    border: 1px solid var(--xjm-color-border);
    border-radius: var(--xjm-radius-md);
    background: #fff;
    overflow: hidden;
}body.xjm-site .xjm-accordion-trigger{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
}body.xjm-site .xjm-accordion-panel{
    display: none;
    padding: 0 16px 16px;
    color: var(--xjm-color-muted);
}body.xjm-site .xjm-accordion-item.is-active .xjm-accordion-panel{
    display: block;
}body.xjm-site /* Training cards */
.xjm-training-card{
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--xjm-color-border);
    border-radius: var(--xjm-radius-md);
    padding: 20px;
    scroll-snap-align: start;
}body.xjm-site .xjm-service-intro{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}body.xjm-site .xjm-service-card{
    background: #fff;
    border-radius: var(--xjm-radius-md);
    border: 1px solid var(--xjm-color-border);
    padding: 20px;
}body.xjm-site /* Footer */
.xjm-footer{
    background: #0c1320;
    color: #e2e8f0;
    padding: 70px 0 32px;
}body.xjm-site .xjm-footer-top{
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
}body.xjm-site .xjm-footer-title{
    margin: 0;
    font-size: 20px;
}body.xjm-site .xjm-footer-tagline{
    color: rgba(226, 232, 240, 0.7);
}body.xjm-site .xjm-footer-address{
    font-size: 14px;
    color: rgba(226, 232, 240, 0.7);
}body.xjm-site .xjm-footer-contacts{
    display: grid;
    gap: 6px;
    font-size: 14px;
}body.xjm-site .xjm-footer-heading{
    font-size: 16px;
    margin-bottom: 12px;
}body.xjm-site .xjm-footer-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}body.xjm-site .xjm-footer-menu ul{
    list-style: none;
    padding-left: 16px;
    margin: 6px 0 0;
    display: grid;
    gap: 6px;
    color: rgba(226, 232, 240, 0.7);
}body.xjm-site .xjm-footer-socials{
    display: grid;
    gap: 6px;
}body.xjm-site .xjm-footer-bottom{
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: rgba(226, 232, 240, 0.6);
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}body.xjm-site .xjm-pagination{
    margin-top: 24px;
}body.xjm-site .xjm-pagination .page-numbers{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 10px;
    margin-right: 6px;
    border-radius: 999px;
    border: 1px solid var(--xjm-color-border);
    color: var(--xjm-color-muted);
}body.xjm-site .xjm-pagination .current{
    background: var(--xjm-color-ink);
    color: #fff;
}body.xjm-site .xjm-empty-note{
    color: var(--xjm-color-muted);
}body.xjm-site /* Mega menu */
.xjm-nav-item{
    position: static;
}body.xjm-site .xjm-mega{
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    background: #f2f3f1;
    border-bottom: 4px solid #f60;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 30;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}body.xjm-site .xjm-nav-item.has-mega:hover .xjm-mega, body.xjm-site .xjm-nav-item.has-mega:focus-within .xjm-mega{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}body.xjm-site .xjm-mega-inner{
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 0 34px;
}body.xjm-site .xjm-mega-left, body.xjm-site .xjm-mega-center, body.xjm-site .xjm-mega-right{
    display: flex;
    flex-direction: column;
}body.xjm-site .xjm-mega-left{
    flex: 0 0 42%;
    min-width: 260px;
}body.xjm-site .xjm-mega-center{
    flex: 0 0 28%;
    min-width: 260px;
}body.xjm-site .xjm-mega-right{
    flex: 0 0 26%;
    min-width: 240px;
    align-items: flex-start;
}body.xjm-site .xjm-mega-title{
    font-size: 26px;
    line-height: 26px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}body.xjm-site .xjm-mega-desc{
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 15px;
}body.xjm-site .xjm-mega-list, body.xjm-site .xjm-mega-models{
    list-style: none;
    margin: 0;
    padding: 0;
}body.xjm-site .xjm-mega-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}body.xjm-site .xjm-mega-link::after{
    content: "›";
    font-size: 12px;
    color: #999;
}body.xjm-site .xjm-mega-link:hover{
    color: #f60;
    border-bottom-color: #f60;
}body.xjm-site .xjm-mega-link.is-active{
    color: #f60;
    border-bottom-color: #f60;
}body.xjm-site .xjm-mega-link.is-active::after{
    color: #f60;
}body.xjm-site .xjm-mega-empty{
    padding: 12px 0;
    color: #999;
    font-size: 14px;
}body.xjm-site .xjm-mega-image-wrap{
    width: 100%;
}body.xjm-site .xjm-mega-image-card{
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 49%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease 0.1s;
}body.xjm-site .xjm-mega-center:hover .xjm-mega-image-card{
    transform: scale(1.03);
}body.xjm-site .xjm-mega-sublist{
    margin-top: 10px;
}body.xjm-site .xjm-mega-model-link{
    display: flex;
    align-items: center;
    padding: 0 50px;
    line-height: 46px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}body.xjm-site .xjm-mega-model-link:hover{
    color: #f60;
    border-bottom: 1px solid #f60;
}body.xjm-site .xjm-mega-right-inner{
    width: 100%;
}body.xjm-site .xjm-mega-right-title{
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #333;
}body.xjm-site .xjm-mega-actions{
    display: flex;
    flex-direction: column;
}body.xjm-site .xjm-mega-actions a{
    width: 220px;
    height: 46px;
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border: 2px solid #bfbfbf;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}body.xjm-site .xjm-mega-actions a::after{
    content: "›";
    font-size: 12px;
    color: #333;
    transition: all 0.5s ease;
}body.xjm-site .xjm-mega-actions a:hover{
    color: #fff;
    background: linear-gradient(-90deg, #fea94f, #f60);
    border: 0;
}body.xjm-site .xjm-mega-actions a:hover::after{
    color: #fff;
}body.xjm-site .xjm-mega-tel{
    padding-top: 10px;
}body.xjm-site .xjm-mega-tel-label{
    font-size: 16px;
    line-height: 20px;
    color: #666;
}body.xjm-site .xjm-mega-tel-value{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    color: #f60;
}body.xjm-site .xjm-mega-products .xjm-mega-left{
    flex-basis: 50%;
}body.xjm-site .xjm-mega-products .xjm-mega-center{
    flex-basis: 32%;
}body.xjm-site .xjm-mega-products .xjm-mega-image-wrap{
    display: none;
}body.xjm-site /* About page */
.xjm-about-hero{
    margin-top: 80px;
}body.xjm-site .xjm-about-hero img{
    width: 100%;
    height: auto;
    display: block;
}body.xjm-site .xjm-about-intro{
    width: 94%;
    max-width: 1400px;
    margin: 60px auto 0;
    display: flex;
    gap: 40px;
}body.xjm-site .xjm-about-intro-left{
    flex: 0 0 55%;
}body.xjm-site .xjm-about-intro-title{
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
}body.xjm-site .xjm-about-intro-text p{
    margin: 0 0 14px;
    line-height: 2;
    color: #333;
}body.xjm-site .xjm-about-intro-right{
    flex: 1;
    display: grid;
    gap: 24px;
}body.xjm-site .xjm-about-stat{
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}body.xjm-site .xjm-about-stat:last-child{
    border-bottom: none;
}body.xjm-site .xjm-about-stat-title{
    font-size: 16px;
    color: #333;
    margin: 0 0 10px;
}body.xjm-site .xjm-about-stat-row{
    display: flex;
    align-items: flex-end;
    gap: 8px;
}body.xjm-site .xjm-about-stat-number{
    font-size: 48px;
    color: #f60;
    font-weight: 700;
    line-height: 1;
}body.xjm-site .xjm-about-stat-unit{
    font-size: 18px;
    color: #f60;
}body.xjm-site .xjm-about-stat-sub{
    margin: 10px 0 0;
    color: #333;
}body.xjm-site .xjm-about-video{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
}body.xjm-site .xjm-about-video video{
    width: 100%;
    border-radius: 12px;
    display: block;
}body.xjm-site .xjm-about-culture{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
}body.xjm-site .xjm-about-culture-header{
    text-align: center;
    margin-bottom: 30px;
}body.xjm-site .xjm-about-culture-header h2{
    margin: 0;
    font-size: 32px;
}body.xjm-site .xjm-about-culture-header p{
    margin: 10px 0 0;
    color: #333;
}body.xjm-site .xjm-about-culture-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}body.xjm-site .xjm-about-culture-card{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    display: grid;
    gap: 12px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}body.xjm-site .xjm-about-culture-card img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}body.xjm-site .xjm-about-culture-card h3{
    margin: 0;
    font-size: 18px;
}body.xjm-site .xjm-about-culture-card p{
    margin: 0;
    color: #666;
}body.xjm-site .xjm-about-marketing{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 100px;
}body.xjm-site .xjm-about-marketing h2{
    font-size: 32px;
    margin: 0 0 10px;
}body.xjm-site .xjm-about-marketing p{
    margin: 0 0 24px;
    color: #333;
}body.xjm-site .xjm-about-marketing video{
    width: 100%;
    border-radius: 12px;
    display: block;
}body.xjm-site /* Services page */
.xjm-service-hero{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}body.xjm-site .xjm-service-hero-wrap{
    display: flex;
    align-items: center;
    gap: 30px;
}body.xjm-site .xjm-service-hero-label{
    font-size: 14px;
    color: #f60;
    letter-spacing: 0.2em;
    margin: 0 0 10px;
}body.xjm-site .xjm-service-hero-title{
    font-size: 32px;
    margin: 0;
    color: #222;
}body.xjm-site .xjm-service-hero-subtitle{
    margin: 8px 0 0;
    color: #666;
}body.xjm-site .xjm-service-hero-media img{
    max-width: 260px;
    width: 100%;
    height: auto;
}body.xjm-site .xjm-service-concepts{
    width: 94%;
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}body.xjm-site .xjm-service-concept{
    position: relative;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}body.xjm-site .xjm-service-concept::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}body.xjm-site .xjm-service-concept-inner{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}body.xjm-site .xjm-service-concept-inner img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 16px;
}body.xjm-site .xjm-service-concept-inner h3{
    margin: 0;
    font-size: 20px;
}body.xjm-site .xjm-service-concept-inner p{
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
}body.xjm-site .xjm-service-commitment{
    position: relative;
    margin-top: 80px;
    padding: 80px 0;
    overflow: hidden;
}body.xjm-site .xjm-commit-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}body.xjm-site .xjm-commit-bg::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 27, 32, 0.7);
}body.xjm-site .xjm-commit-bg-layer{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}body.xjm-site .xjm-commit-bg-layer.is-active{
    opacity: 1;
}body.xjm-site .xjm-commit-wrap{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 94%;
    max-width: 1560px;
    margin: 0 auto;
}body.xjm-site .xjm-commit-list{
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}body.xjm-site .xjm-commit-item{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0 0 0;
    min-height: 250px;
    cursor: pointer;
    position: relative;
    color: #fff;
}body.xjm-site .xjm-commit-item:nth-child(2), body.xjm-site .xjm-commit-item:nth-child(4){
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}body.xjm-site .xjm-commit-item:nth-child(3), body.xjm-site .xjm-commit-item:nth-child(4){
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}body.xjm-site .xjm-commit-icon{
    padding-left: 30px;
}body.xjm-site .xjm-commit-icon img{
    width: 50px;
    filter: brightness(0) invert(1);
}body.xjm-site .xjm-commit-title{
    font-size: 20px;
    padding: 20px 30px 0;
}body.xjm-site .xjm-commit-overlay{
    position: absolute;
    inset: 0;
    background-image: linear-gradient(-90deg, #fea94f, #f60);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
}body.xjm-site .xjm-commit-item.is-active .xjm-commit-overlay, body.xjm-site .xjm-commit-item:hover .xjm-commit-overlay{
    opacity: 1;
}body.xjm-site .xjm-commit-overlay h4{
    margin: 0 0 10px;
    font-size: 20px;
}body.xjm-site .xjm-commit-overlay p{
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}body.xjm-site .xjm-commit-aside{
    width: 40%;
    padding-top: 80px;
    color: #fff;
}body.xjm-site .xjm-commit-aside h3{
    font-size: 36px;
    margin: 0;
    line-height: 1.4;
}body.xjm-site .xjm-commit-aside p{
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}body.xjm-site .xjm-commit-aside a{
    display: inline-block;
    margin-top: 30px;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}body.xjm-site .xjm-service-training{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
}body.xjm-site .xjm-service-training-header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}body.xjm-site .xjm-service-training-header h2{
    margin: 0;
    font-size: 28px;
}body.xjm-site .xjm-service-training-line{
    flex: 1;
    height: 1px;
    background: #eee;
}body.xjm-site .xjm-service-training-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}body.xjm-site .xjm-service-training-card{
    position: relative;
    flex: 0 0 33.333%;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    transition: all 0.5s ease;
}body.xjm-site .xjm-service-training-card img{
    width: 100%;
    height: auto;
    object-fit: cover;
}body.xjm-site .xjm-service-training-body{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
    background-color: rgba(240, 130, 0, 0);
    transition: all 0.5s ease;
}body.xjm-site .xjm-service-training-body h3{
    margin: 0 0 10px;
    font-size: 18px;
}body.xjm-site .xjm-service-training-body p{
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}body.xjm-site .xjm-service-training-card::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: all 0.5s ease;
}body.xjm-site .xjm-service-training-card.is-active::after{
    background: rgba(0, 0, 0, 0.2);
}body.xjm-site .xjm-service-training-card.is-active .xjm-service-training-body, body.xjm-site .xjm-service-training-card:hover .xjm-service-training-body{
    background-image: linear-gradient(-90deg, #fea94f, #f60);
}

@media (min-width: 769px) {body.xjm-site .xjm-service-training-card.is-active::after{
        background: rgba(0, 0, 0, 0);
    }body.xjm-site .xjm-service-training-card{
        flex: 0 0 25%;
    }body.xjm-site .xjm-service-training-card.is-active{
        flex: 0 0 50%;
    }body.xjm-site .xjm-service-training-card img{
        height: 560px;
    }
}body.xjm-site .xjm-service-contact{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
}body.xjm-site .xjm-service-contact-title{
    font-size: 28px;
    margin: 0 0 20px;
}body.xjm-site .xjm-service-contact-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}body.xjm-site .xjm-service-contact-card{
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
    display: grid;
    gap: 8px;
}body.xjm-site .xjm-service-contact-card img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}body.xjm-site /* Scissor lift page */
.xjm-scissor-cats{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    text-align: center;
}body.xjm-site .xjm-scissor-cat{
    display: grid;
    gap: 10px;
    place-items: center;
    color: #333;
    font-weight: 600;
}body.xjm-site .xjm-scissor-cat img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 10px;
}body.xjm-site .xjm-scissor-intro{
    width: 94%;
    max-width: 1400px;
    margin: 60px auto 0;
    display: flex;
    gap: 40px;
    align-items: center;
}body.xjm-site .xjm-scissor-intro-text{
    flex: 1;
}body.xjm-site .xjm-scissor-intro-text h2{
    margin: 0 0 10px;
    font-size: 28px;
}body.xjm-site .xjm-scissor-intro-text p{
    margin: 0 0 14px;
    color: #666;
    line-height: 1.7;
}body.xjm-site .xjm-scissor-intro-text .xjm-scissor-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #f60;
    color: #f60;
}body.xjm-site .xjm-scissor-intro-text .xjm-scissor-cta:hover{
    background: #f60;
    color: #fff;
}body.xjm-site .xjm-scissor-intro-media img{
    width: 320px;
    max-width: 100%;
}body.xjm-site .xjm-scissor-filters{
    width: 94%;
    max-width: 1400px;
    margin: 60px auto 0;
}body.xjm-site .xjm-scissor-filters .xjm-filter-group span{
    font-weight: 600;
    margin-right: 10px;
}body.xjm-site .xjm-scissor-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}body.xjm-site .xjm-scissor-why{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
}body.xjm-site .xjm-scissor-why-header{
    text-align: center;
}body.xjm-site .xjm-scissor-why-header h2{
    font-size: 32px;
    margin: 0;
}body.xjm-site .xjm-scissor-why-header p{
    margin: 10px 0 0;
    color: #666;
}body.xjm-site .xjm-scissor-why-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}body.xjm-site .xjm-scissor-why-card{
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 24px;
    display: grid;
    gap: 10px;
}body.xjm-site .xjm-scissor-why-card img{
    width: 44px;
    height: 44px;
    object-fit: contain;
}body.xjm-site .xjm-scissor-why-card a{
    color: #f60;
    display: inline-flex;
    margin-top: 6px;
}body.xjm-site /* Contact page */
.xjm-contact-hero{
    width: 94%;
    max-width: 1400px;
    margin: 80px auto 0;
    text-align: center;
}body.xjm-site .xjm-contact-hero h1{
    margin: 0 0 10px;
    font-size: 36px;
}body.xjm-site .xjm-contact-hero p{
    margin: 0;
    color: #666;
}body.xjm-site .xjm-contact-info{
    width: 94%;
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}body.xjm-site .xjm-contact-info-card{
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 24px;
    display: grid;
    gap: 10px;
}body.xjm-site .xjm-contact-info-card h3{
    margin: 0;
}body.xjm-site .xjm-contact-form{
    display: grid;
    gap: 16px;
}body.xjm-site .xjm-contact-form-section{
    width: 94%;
    max-width: 1500px;
    margin: 60px auto 110px;
}body.xjm-site .xjm-contact-form-wrap{
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
    align-items: stretch;
}body.xjm-site .xjm-contact-form-card{
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 28px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 18px;
}body.xjm-site .xjm-contact-form-header h2{
    margin: 0 0 6px;
    font-size: 28px;
}body.xjm-site .xjm-contact-form-header p{
    margin: 0;
    color: #666;
}body.xjm-site .xjm-contact-form-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}body.xjm-site .xjm-contact-field{
    display: grid;
    gap: 8px;
    position: relative;
}body.xjm-site .xjm-contact-field label{
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}body.xjm-site .xjm-contact-field input, body.xjm-site .xjm-contact-field textarea{
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 10px 12px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 14px;
}body.xjm-site .xjm-contact-field input:focus, body.xjm-site .xjm-contact-field textarea:focus{
    border-color: #f60;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
    outline: none;
}body.xjm-site .xjm-contact-field.is-focused label, body.xjm-site .xjm-contact-field.is-filled label{
    color: #f60;
}body.xjm-site .xjm-contact-field-full{
    grid-column: 1 / -1;
}body.xjm-site .xjm-contact-actions{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}body.xjm-site .xjm-contact-submit{
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: #f60;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.3);
}body.xjm-site .xjm-contact-submit:hover{
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(255, 102, 0, 0.35);
}body.xjm-site .xjm-contact-submit.is-loading{
    opacity: 0.7;
    cursor: wait;
}body.xjm-site .xjm-contact-privacy{
    font-size: 12px;
    color: #64748b;
}body.xjm-site .xjm-contact-status{
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}body.xjm-site .xjm-contact-status.is-success{
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}body.xjm-site .xjm-contact-status.is-error{
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}body.xjm-site .xjm-contact-form-media{
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}body.xjm-site .xjm-contact-form-media::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.45));
}body.xjm-site .xjm-contact-honey{
    position: absolute;
    left: -9999px;
    top: -9999px;
}body.xjm-site .xjm-home-contact{
    position: relative;
    background: linear-gradient(120deg, rgba(8, 15, 25, 0.92), rgba(15, 23, 42, 0.88));
    color: #fff;
    overflow: hidden;
}body.xjm-site .xjm-home-contact::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--xjm-home-contact-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}body.xjm-site .xjm-home-contact-inner{
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 94%;
    max-width: 1500px;
    margin: 0 auto;
}body.xjm-site .xjm-home-contact-left{
    flex: 1 1 60%;
    display: grid;
    gap: 12px;
}body.xjm-site .xjm-home-contact-title{
    font-size: clamp(26px, 3vw, 36px);
    margin: 0;
}body.xjm-site .xjm-home-contact-text{
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}body.xjm-site .xjm-home-contact-info{
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    margin-top: 10px;
}body.xjm-site .xjm-home-contact-item span{
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}body.xjm-site .xjm-home-contact-item a{
    font-size: 16px;
    color: #fff;
}body.xjm-site .xjm-home-contact-right{
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}body.xjm-site .xjm-home-contact-socials{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}body.xjm-site .xjm-home-contact-social{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
}body.xjm-site .xjm-home-contact-social:hover{
    background: rgba(255, 102, 0, 0.8);
    transform: translateY(-2px);
}body.xjm-site .xjm-home-contact-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 999px;
    background: #f60;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}body.xjm-site .xjm-home-contact-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 102, 0, 0.35);
}

@media (max-width: 960px) {body.xjm-site .xjm-mega{
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border-bottom: none;
    }body.xjm-site .xjm-mega-inner{
        width: 100%;
        padding: 20px;
        flex-direction: column;
        gap: 24px;
    }body.xjm-site .xjm-mega-left, body.xjm-site .xjm-mega-center, body.xjm-site .xjm-mega-right{
        flex: 1 1 auto;
        min-width: 0;
        align-items: flex-start;
    }body.xjm-site .xjm-mega-actions a{
        width: 100%;
        max-width: 320px;
    }body.xjm-site .xjm-about-intro, body.xjm-site .xjm-service-hero-wrap, body.xjm-site .xjm-scissor-intro{
        flex-direction: column;
    }body.xjm-site .xjm-about-culture-grid, body.xjm-site .xjm-service-concepts, body.xjm-site .xjm-service-training-grid, body.xjm-site .xjm-service-contact-grid, body.xjm-site .xjm-scissor-cats, body.xjm-site .xjm-scissor-why-grid, body.xjm-site .xjm-scissor-grid, body.xjm-site .xjm-contact-info{
        grid-template-columns: 1fr;
    }body.xjm-site .xjm-commit-wrap{
        flex-direction: column;
    }body.xjm-site .xjm-commit-list, body.xjm-site .xjm-commit-aside{
        width: 100%;
    }body.xjm-site .xjm-contact-form-wrap{
        grid-template-columns: 1fr;
    }body.xjm-site .xjm-contact-form-media{
        min-height: 260px;
    }body.xjm-site .xjm-contact-form-grid{
        grid-template-columns: 1fr;
    }body.xjm-site .xjm-home-contact-inner{
        flex-direction: column;
        align-items: flex-start;
    }body.xjm-site .xjm-home-contact-right{
        width: 100%;
        align-items: flex-start;
    }
}body.xjm-site /* Header language + search */
.xjm-header-tools{
    display: flex;
    align-items: center;
    gap: 16px;
}body.xjm-site .xjm-lang{
    position: relative;
}body.xjm-site .xjm-lang-trigger{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
}body.xjm-site .xjm-lang-trigger svg{
    width: 18px;
    height: 18px;
    color: #8a8a8a;
}body.xjm-site .xjm-lang-menu{
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 50;
}body.xjm-site .xjm-lang-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}body.xjm-site .xjm-lang-menu a{
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
}body.xjm-site .xjm-lang-menu a:hover{
    color: #f60;
    background: rgba(255, 102, 0, 0.08);
}body.xjm-site .xjm-lang:hover .xjm-lang-menu, body.xjm-site .xjm-lang:focus-within .xjm-lang-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}body.xjm-site .xjm-search-link{
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    transition: color 0.2s ease, background 0.2s ease;
}body.xjm-site .xjm-search-link svg{
    width: 22px;
    height: 22px;
}body.xjm-site .xjm-search-link:hover{
    color: #f60;
    background: rgba(255, 102, 0, 0.12);
}body.xjm-site /* Article detail */
.xjm-article-banner{
    display: none;
}body.xjm-site .xjm-article-breadcrumb-block{
    background: #fff;
    width: 94%;
    max-width: 1560px;
    margin: 0 auto;
    padding-top: 4%;
    padding-left: 4%;
    padding-right: 4%;
    overflow: hidden;
}body.xjm-site .xjm-article-section-title{
    font-size: 28px;
    color: #222;
    margin: 20px 0 0;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-weight: 400;
    line-height: 1;
    text-align: left;
}body.xjm-site .xjm-article-section-line{
    height: 3px;
    width: 110px;
    background: linear-gradient(-90deg, #fea94f, #f60);
    border-radius: 30px;
    margin-top: 10px;
}body.xjm-site .xjm-breadcrumbs{
    margin-top: 15px;
    font-size: 14px;
    color: #999;
}body.xjm-site .xjm-breadcrumbs ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}body.xjm-site .xjm-breadcrumbs li{
    position: relative;
    padding: 0 3px 0 15px;
}body.xjm-site .xjm-breadcrumbs li:first-child{
    padding-left: 0;
}body.xjm-site .xjm-breadcrumbs li:not(:first-child)::before{
    content: ">";
    position: absolute;
    left: 3px;
    color: #999;
}body.xjm-site .xjm-breadcrumbs a{
    color: #999;
}body.xjm-site .xjm-breadcrumbs a:hover{
    color: #f60;
}body.xjm-site .xjm-article-detail{
    width: 94%;
    max-width: 1560px;
    margin: 0 auto 6%;
    padding: 3% 4% 4%;
    background: #fff;
    border-radius: 0 0 10px 10px;
}body.xjm-site .xjm-article-detail-grid{
    display: block;
}body.xjm-site .xjm-article-main{
    width: 100%;
}body.xjm-site .xjm-article-title{
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    color: #444;
    font-weight: 700;
    margin: 0;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}body.xjm-site .xjm-article-title-line{
    border-top: 1px solid #e5e5e5;
    margin: 30px 0 0;
}body.xjm-site .xjm-article-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    color: #898989;
    font-size: 14px;
    margin-top: 15px;
}body.xjm-site .xjm-article-meta-item{
    display: flex;
    align-items: center;
}body.xjm-site .xjm-article-meta-item span:last-child{
    padding-left: 10px;
}body.xjm-site .xjm-article-meta-line{
    border-top: 1px solid #e5e5e5;
    margin: 15px 0 0;
    padding-bottom: 15px;
}body.xjm-site .xjm-article-detail .xjm-article-content{
    font-size: 16px;
    color: #333;
    line-height: 30px;
    max-width: 1200px;
    margin: 20px auto 0;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}body.xjm-site .xjm-article-content{
    font-size: 16px;
    color: #333;
    line-height: 30px;
    max-width: 1200px;
    margin: 0 auto;
}body.xjm-site .xjm-article-content img{
    width: 100% !important;
    height: auto !important;
}body.xjm-site .xjm-article-nav{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}body.xjm-site .xjm-article-next, body.xjm-site .xjm-article-prev{
    display: flex;
    align-items: center;
    justify-content: space-between;
}body.xjm-site .xjm-article-nav-label{
    font-size: 14px;
    color: #555;
}body.xjm-site .xjm-article-nav p{
    margin: 0;
}body.xjm-site .xjm-article-nav a{
    color: #555;
}body.xjm-site .xjm-article-aside{
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 24px;
}body.xjm-site .xjm-article-aside h3{
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}body.xjm-site .xjm-article-categories{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}body.xjm-site .xjm-article-categories a{
    color: #333;
}body.xjm-site .xjm-article-categories a:hover{
    color: #f60;
}body.xjm-site /* Reveal */
[data-reveal]{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}body.xjm-site [data-reveal].is-visible{
    opacity: 1;
    transform: translateY(0);
}body.xjm-site .xjm-search-form{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 32px;
    justify-content: center;
    max-width: 720px;
}body.xjm-site .xjm-search-wrap{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}body.xjm-site .xjm-search-input{
    flex: 1 1 320px;
    padding: 12px 18px;
    border: 1px solid var(--xjm-color-border);
    border-radius: 999px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
}body.xjm-site .xjm-search-input:focus{
    outline: none;
    border-color: var(--xjm-color-accent);
    box-shadow: 0 0 0 2px rgba(227, 68, 58, 0.2);
}body.xjm-site .xjm-search-button{
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    background: var(--xjm-color-accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}body.xjm-site .xjm-search-button:hover{
    background: var(--xjm-color-accent-dark);
}body.xjm-site .xjm-search-results{
    text-align: left;
    margin: 0 auto;
    max-width: 980px;
}body.xjm-site .xjm-search-results .xjm-empty-note{
    text-align: center;
}
