@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}
body {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    visibility: visible;
    font-family:'Roboto',arial,sans-serif;
    color: #000;
  }

h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto';
    font-weight: 700;
}

p{
    margin-bottom: 5px;
}
ul,li{
    list-style: none;
}
ul{
    padding-left: 0px;
}
a{
    text-decoration: none !important;
}
a:hover{
    color: #000;
}

.pc{
    display: block;
}@media(max-width:992px){
    .pc{
        display: none;
    }
}

.w-90{
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.btn:focus,
.btn:active,
.form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* ============================================================
   Tianfuli Brand System — Topbar / Header / Banner
   ============================================================ */

:root {
    --lk-green: #197c09;
    --lk-green-dark: #125806;
    --lk-green-light: #2ba817;
    --lk-blue: #063ea2;
    --lk-blue-dark: #042d7a;
    --lk-blue-light: #0d56d8;
    --lk-ink: #0f172a;
    --lk-text: #2d3748;
    --lk-mute: #64748b;
    --lk-line: #e2e8f0;
    --lk-line-2: #cbd5e1;
    --lk-bg: #ffffff;
    --lk-bg-soft: #f5f7fa;
    --lk-bg-soft-2: #eef2f7;
    --lk-shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --lk-shadow: 0 4px 20px rgba(15, 23, 42, .08);
    --lk-shadow-lg: 0 10px 40px rgba(15, 23, 42, .12);
    --lk-shadow-blue: 0 10px 30px rgba(6, 62, 162, .25);
    --lk-shadow-green: 0 10px 30px rgba(25, 124, 9, .25);
    --lk-radius-sm: 4px;
    --lk-radius: 6px;
    --lk-radius-lg: 10px;
    --lk-radius-xl: 16px;
    --lk-trans: .3s cubic-bezier(.4, 0, .2, 1);
    --lk-trans-slow: .55s cubic-bezier(.4, 0, .2, 1);
    --lk-trans-bounce: .45s cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------------------- Topbar ---------------------- */
.lk-topbar {
    background: linear-gradient(90deg, var(--lk-blue) 0%, #0844b4 50%, var(--lk-blue) 100%);
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 110;
}
.lk-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    padding: 8px 0;
}
.lk-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .95);
    letter-spacing: .2px;
}
.lk-topbar-icon {
    color: var(--lk-green-light);
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(43, 168, 23, .45));
}
.lk-topbar-slogan {
    font-weight: 300;
}
.lk-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.lk-social {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    transition: background var(--lk-trans), color var(--lk-trans), transform var(--lk-trans);
}
.lk-social a:hover {
    background: var(--lk-green);
    color: #fff;
    transform: translateY(-2px);
}

/* Language dropdown */
.lk-lang {
    position: relative;
}
.lk-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--lk-trans), border-color var(--lk-trans);
    line-height: 1;
}
.lk-lang-btn:hover,
.lk-lang.is-open .lk-lang-btn {
    background: var(--lk-green);
    border-color: var(--lk-green);
}
.lk-lang-caret {
    font-size: 11px;
    transition: transform var(--lk-trans);
}
.lk-lang.is-open .lk-lang-caret {
    transform: rotate(180deg);
}
.lk-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #fff;
    border-radius: var(--lk-radius);
    box-shadow: var(--lk-shadow-lg);
    padding: 6px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--lk-trans), transform var(--lk-trans), visibility var(--lk-trans);
    z-index: 200;
}
.lk-lang.is-open .lk-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lk-lang-menu li {
    list-style: none;
}
.lk-lang-menu a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--lk-text);
    font-size: 13px;
    font-weight: 500;
    transition: background var(--lk-trans), color var(--lk-trans);
}
.lk-lang-menu a:hover,
.lk-lang-menu a.active,
.lk-lang-menu a.is-active {
    background: var(--lk-bg-soft);
    color: var(--lk-blue);
}

/* Language dropdown — 17 个小语种适配 */
.lk-lang-menu {
    /* 限制高度，超出滚动 */
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    /* 隐藏滚动条但保留滚动能力（可选视觉清理） */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .25) transparent;
}
.lk-lang-menu::-webkit-scrollbar { width: 6px; }
.lk-lang-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 3px;
}
.lk-lang-menu::-webkit-scrollbar-track { background: transparent; }

/* 分隔线（用于主站跳转 / 谷歌翻译两组之间） */
.lk-lang-menu .lk-lang-divider,
.lk-mobile-langs .lk-lang-divider {
    height: 1px;
    margin: 6px 10px;
    background: rgba(0, 0, 0, .08);
    list-style: none;
    padding: 0;
}

/* ---------------------- 移动端语言菜单 ---------------------- */
.lk-mobile-langs {
    max-height: 60vh;          /* 17 项太长，限制高度后滚动 */
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .25) transparent;
}
.lk-mobile-langs::-webkit-scrollbar { width: 4px; }
.lk-mobile-langs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 2px;
}
.lk-mobile-langs::-webkit-scrollbar-track { background: transparent; }

/* 移动端语言链接紧凑样式 */
.lk-mobile-langs a {
    padding: 11px 20px 11px 36px !important;
    font-size: 14px;
}
.lk-mobile-langs a.is-active,
.lk-mobile-langs a.active {
    background: rgba(25, 124, 9, .08);
    color: var(--lk-green);
    font-weight: 600;
}

/* 移动端 Language 入口项的图标 + 文字 */
.lk-mobile-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.lk-mobile-lang-trigger .bi {
    color: var(--lk-blue);
    font-size: 18px;
}
.lk-mobile-lang-current {
    font-weight: 500;
}

/* ---------------------- Header ---------------------- */
.lk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--lk-line);
    transition: box-shadow var(--lk-trans), background var(--lk-trans);
}
.lk-header.is-scrolled {
    box-shadow: var(--lk-shadow);
    background: rgba(255, 255, 255, .99);
}
.lk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
    padding: 12px 0;
}

/* Logo */
.lk-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lk-ink);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--lk-trans);
}
.lk-logo:hover { opacity: .9; color: var(--lk-ink); }
.lk-logo img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .08));
}
.lk-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.lk-logo-text strong {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.2px;
    color: var(--lk-ink);
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lk-logo-text em {
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: var(--lk-mute);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav */
.lk-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.lk-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-nav-item {
    position: relative;
    list-style: none;
}
.lk-nav-item > a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--lk-text);
    white-space: nowrap;
    border-radius: var(--lk-radius);
    transition: color var(--lk-trans), background var(--lk-trans);
    position: relative;
}
.lk-nav-item > a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--lk-trans);
}
.lk-nav-item:hover > a,
.lk-nav-item > a:focus-visible {
    color: var(--lk-blue);
}
.lk-nav-item:hover > a::after {
    width: calc(100% - 32px);
}

/* Nav chevron + dropdown */
.lk-nav-chevron {
    font-size: 12px;
    margin-left: 4px;
    transition: transform var(--lk-trans);
}
.lk-nav-item:hover .lk-nav-chevron {
    transform: rotate(180deg);
}
.lk-nav-item.no-children .lk-nav-chevron {
    display: none;
}
.lk-nav-item.no-children .lk-nav-dropdown {
    display: none !important;
}
.lk-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: var(--lk-radius-lg);
    box-shadow: var(--lk-shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--lk-trans), transform var(--lk-trans), visibility var(--lk-trans);
    z-index: 50;
}
.lk-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.lk-nav-item:hover .lk-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.lk-nav-dropdown:empty {
    display: none;
}
.lk-nav-sub-link {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lk-text);
    white-space: nowrap;
    transition: background var(--lk-trans), color var(--lk-trans), padding-left var(--lk-trans);
}
.lk-nav-sub-link:hover {
    background: var(--lk-bg-soft);
    color: var(--lk-blue);
    padding-left: 26px;
}

/* Header tools */
.lk-header-tools {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.lk-tool-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--lk-line);
    background: #fff;
    color: var(--lk-text);
    border-radius: var(--lk-radius);
    cursor: pointer;
    font-size: 16px;
    transition: background var(--lk-trans), color var(--lk-trans), border-color var(--lk-trans), transform var(--lk-trans);
}
.lk-tool-btn:hover {
    background: var(--lk-blue);
    color: #fff;
    border-color: var(--lk-blue);
    transform: translateY(-1px);
}
.lk-menu-toggle {
    display: none;
}
.lk-menu-bars {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 12px;
}
.lk-menu-bars i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--lk-trans), opacity var(--lk-trans);
}
.lk-menu-toggle.is-open .lk-menu-bars i:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.lk-menu-toggle.is-open .lk-menu-bars i:nth-child(2) { opacity: 0; }
.lk-menu-toggle.is-open .lk-menu-bars i:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ---------------------- Search Overlay ---------------------- */
.lk-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 14vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--lk-trans), visibility var(--lk-trans);
}
.lk-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.lk-search-mask {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.lk-search-box {
    position: relative;
    width: 90%;
    max-width: 720px;
    background: #fff;
    border-radius: var(--lk-radius-lg);
    box-shadow: var(--lk-shadow-lg);
    padding: 28px 28px 22px;
    transform: translateY(-20px) scale(.96);
    transition: transform var(--lk-trans-bounce);
}
.lk-search-overlay.is-open .lk-search-box {
    transform: translateY(0) scale(1);
}
.lk-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid var(--lk-line);
    border-radius: var(--lk-radius);
    transition: border-color var(--lk-trans), box-shadow var(--lk-trans);
}
.lk-search-form:focus-within {
    border-color: var(--lk-blue);
    box-shadow: 0 0 0 4px rgba(6, 62, 162, .12);
}
.lk-search-form > i {
    color: var(--lk-mute);
    font-size: 18px;
}
.lk-search-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 17px;
    color: var(--lk-ink);
    font-family: inherit;
}
.lk-search-form input::placeholder { color: var(--lk-mute); }
.lk-search-submit {
    border: none;
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    color: #fff;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--lk-radius-sm);
    cursor: pointer;
    letter-spacing: .3px;
    transition: transform var(--lk-trans), box-shadow var(--lk-trans);
}
.lk-search-submit:hover {
    transform: translateY(-1px);
    box-shadow: var(--lk-shadow-blue);
}
.lk-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--lk-mute);
}
.lk-search-tags span { font-weight: 600; color: var(--lk-text); }
.lk-search-tags a {
    display: inline-block;
    padding: 4px 10px;
    background: var(--lk-bg-soft);
    color: var(--lk-text);
    border-radius: 999px;
    transition: background var(--lk-trans), color var(--lk-trans);
}
.lk-search-tags a:hover {
    background: var(--lk-blue);
    color: #fff;
}
.lk-search-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--lk-ink);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--lk-shadow);
    transition: background var(--lk-trans), transform var(--lk-trans);
}
.lk-search-close:hover {
    background: var(--lk-blue);
    transform: rotate(90deg);
}

/* ---------------------- Mobile Panel ---------------------- */
.lk-mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
}
.lk-mobile-panel.is-open {
    visibility: visible;
    pointer-events: auto;
}
.lk-mobile-mask {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    opacity: 0;
    transition: opacity var(--lk-trans);
}
.lk-mobile-panel.is-open .lk-mobile-mask { opacity: 1; }
.lk-mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform var(--lk-trans);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.lk-mobile-panel.is-open .lk-mobile-drawer { transform: translateX(0); }
.lk-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--lk-line);
    background: linear-gradient(90deg, var(--lk-bg-soft) 0%, #fff 100%);
}
.lk-mobile-head .lk-logo img { height: 40px; }
.lk-mobile-head .lk-logo-text strong { font-size: 18px; }
.lk-mobile-head .lk-logo-text em { font-size: 10px; }
.lk-mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.lk-mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-mobile-nav li {
    list-style: none;
    border-bottom: 1px solid var(--lk-bg-soft-2);
}
.lk-mobile-nav-row {
    display: flex;
    align-items: center;
}
.lk-mobile-nav-row > a {
    flex: 1;
}
.lk-mobile-sub-toggle {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--lk-mute);
    transition: transform var(--lk-trans), color var(--lk-trans);
}
.lk-mobile-sub-toggle.is-open {
    transform: rotate(180deg);
    color: var(--lk-blue);
}
.lk-mobile-sub-toggle[style*="display: none"] + .lk-mobile-sub,
.lk-mobile-sub:empty {
    display: none;
}
.lk-mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--lk-trans-slow);
    background: var(--lk-bg-soft);
}
.lk-mobile-sub.is-open {
    max-height: 500px;
}
.lk-mobile-sub li {
    border-bottom: 1px solid var(--lk-bg-soft-2);
}
.lk-mobile-sub a {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
    color: var(--lk-mute);
}
.lk-mobile-nav a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--lk-text);
    transition: background var(--lk-trans), color var(--lk-trans), padding-left var(--lk-trans);
    position: relative;
}
.lk-mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    border-radius: 0 3px 3px 0;
    transition: height var(--lk-trans);
}
.lk-mobile-nav a:hover {
    background: var(--lk-bg-soft);
    color: var(--lk-blue);
    padding-left: 32px;
}
.lk-mobile-nav a:hover::before { height: 22px; }
.lk-mobile-foot {
    padding: 20px 24px;
    border-top: 1px solid var(--lk-line);
    background: var(--lk-bg-soft);
}
.lk-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.lk-mobile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lk-text);
    font-size: 14px;
    font-weight: 500;
}
.lk-mobile-contact a i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lk-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.lk-social-mobile { gap: 6px; }
.lk-social-mobile a {
    background: rgba(6, 62, 162, .1);
    color: var(--lk-blue);
}
.lk-social-mobile a:hover {
    background: var(--lk-blue);
    color: #fff;
}

/* ---------------------- Hero Banner ---------------------- */
.lk-banner {
    position: relative;
    width: 100%;
    background: var(--lk-ink);
    overflow: hidden;
}
.lk-banner-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 750;
    min-height: 360px;
}
.lk-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}
.lk-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.lk-banner-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.lk-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 6s ease-out;
}
.lk-banner-slide.is-active .lk-banner-media img {
    transform: scale(1.08);
}
/* Arrows */
.lk-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(15, 23, 42, .25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: background var(--lk-trans), border-color var(--lk-trans), transform var(--lk-trans);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lk-banner-arrow:hover {
    background: var(--lk-blue);
    border-color: var(--lk-blue);
    color: #fff;
}
.lk-banner-prev { left: 28px; }
.lk-banner-next { right: 28px; }
.lk-banner-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lk-banner-next:hover { transform: translateY(-50%) translateX(3px); }

/* Dots */
.lk-banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(15, 23, 42, .35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 999px;
}
.lk-banner-dot {
    width: 28px;
    height: 4px;
    border: none;
    background: rgba(255, 255, 255, .4);
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background var(--lk-trans), width var(--lk-trans);
}
.lk-banner-dot:hover { background: rgba(255, 255, 255, .7); }
.lk-banner-dot.is-active {
    background: var(--lk-green-light);
    width: 44px;
}

/* Scroll indicator */
.lk-banner-scroll {
    position: absolute;
    bottom: 18px;
    right: 28px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: .55;
    transition: opacity var(--lk-trans);
    text-decoration: none;
}
.lk-banner-scroll:hover { opacity: 1; }
.lk-banner-scroll span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: right center;
    animation: lk-scroll-hint 1.6s ease-in-out infinite;
}
.lk-banner-scroll span:nth-child(2) { animation-delay: .15s; }
.lk-banner-scroll span:nth-child(3) { animation-delay: .3s; }
@keyframes lk-scroll-hint {
    0%, 100% { transform: scaleX(.5); opacity: .4; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ---------------------- About Us ---------------------- */
.lk-about {
    background: #fff;
    padding: 80px 0 70px;
}
.lk-about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.lk-about-content {
    flex: 1;
}
.lk-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(6, 62, 162, .08);
    border: 1px solid rgba(6, 62, 162, .2);
    color: var(--lk-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lk-about-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
    color: var(--lk-ink);
    margin: 0 0 0;
}
.lk-text-green { color: var(--lk-green); }
.lk-about-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    border-radius: 2px;
    margin: 18px 0 22px;
}
.lk-about-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--lk-text);
    margin: 0 0 14px;
}
.lk-about-text strong { color: var(--lk-ink); font-weight: 700; }
.lk-about-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}
.lk-about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--lk-text);
}
.lk-about-points i {
    color: var(--lk-green);
    font-size: 18px;
    flex-shrink: 0;
}
.lk-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-green-light) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    box-shadow: var(--lk-shadow-green);
    transition: transform var(--lk-trans), box-shadow var(--lk-trans);
}
.lk-about-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(25, 124, 9, .35);
}
.lk-about-btn:hover i { transform: translateX(4px); }
.lk-about-btn i { transition: transform var(--lk-trans); }

/* About — Media */
.lk-about-media {
    flex: 1;
    max-width: 560px;
}
.lk-about-img-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--lk-shadow-lg);
    aspect-ratio: 4 / 3;
}
.lk-about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.lk-about-img-wrap:hover img { transform: scale(1.04); }

/* Video play button */
.lk-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.lk-video-play-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--lk-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    transition: transform var(--lk-trans), background var(--lk-trans), color var(--lk-trans);
}
.lk-video-play:hover .lk-video-play-icon {
    transform: scale(1.1);
    background: var(--lk-blue);
    color: #fff;
}
.lk-video-play-icon i { margin-left: 3px; }
.lk-video-pulse {
    position: absolute;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    animation: lk-video-pulse 2s ease-out infinite;
}
@keyframes lk-video-pulse {
    0% { transform: scale(1); opacity: .8; }
    100% { transform: scale(2); opacity: 0; }
}

/* Video Modal */
.lk-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--lk-trans), visibility var(--lk-trans);
}
.lk-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.lk-video-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.lk-video-box {
    position: relative;
    width: 90%;
    max-width: 900px;
    border-radius: var(--lk-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    transform: scale(.92);
    transition: transform var(--lk-trans-bounce);
}
.lk-video-modal.is-open .lk-video-box {
    transform: scale(1);
}
.lk-video-box video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.lk-video-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--lk-ink);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    box-shadow: var(--lk-shadow);
    transition: background var(--lk-trans), transform var(--lk-trans);
}
.lk-video-close:hover {
    background: var(--lk-blue);
    transform: rotate(90deg);
}

/* ---------------------- Product Categories ---------------------- */
.lk-categories {
    background: var(--lk-bg-soft);
    padding: 80px 0;
}
.lk-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.lk-section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
    color: var(--lk-ink);
    margin: 0;
}
.lk-section-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--lk-mute);
    margin: 14px 0 0;
}

/* Category grid — 4 per row */
.lk-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.lk-cat-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--lk-line);
    transition: border-color var(--lk-trans);
}
.lk-cat-item:hover {
    border-color: var(--lk-green);
}
.lk-cat-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
    position: relative;
}
.lk-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease, opacity .4s ease;
}
.lk-cat-hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease, transform .55s ease;
}
.lk-cat-item:hover .lk-cat-img img {
    transform: scale(1.08);
}
.lk-cat-item:hover .lk-cat-hover-img {
    opacity: 1;
}
.lk-cat-label {
    display: block;
    text-align: center;
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lk-ink);
    transition: color var(--lk-trans), border-color var(--lk-trans);
    border-top: 2px solid var(--lk-line);
    text-transform: capitalize;
}
.lk-cat-item:hover .lk-cat-label {
    color: var(--lk-green);
    border-top-color: var(--lk-green);
}

/* Hidden items (expand on toggle) */
.lk-cat-hidden { display: none; }
.lk-cat-hidden.is-visible { display: flex; }

/* View More toggle button */
.lk-cat-more-wrap {
    text-align: center;
    margin-top: 50px;
}
.lk-cat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--lk-green);
    border: none;
    cursor: pointer;
    transition: background var(--lk-trans);
}
.lk-cat-toggle:hover {
    background: var(--lk-green-dark);
}
.lk-cat-toggle i {
    transition: transform var(--lk-trans);
    font-size: 14px;
}
.lk-cat-toggle.is-open i {
    transform: rotate(180deg);
}

/* ---------------------- Why Choose Us ---------------------- */
.lk-why {
    position: relative;
    padding: 90px 0;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.lk-why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, .9), rgba(6, 62, 162, .82));
    z-index: 0;
}
.lk-why-inner { position: relative; z-index: 1; }
.lk-why-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.lk-why-eyebrow { color: var(--lk-green-light); }
.lk-why-title { color: #fff; }
.lk-why-desc { color: rgba(255, 255, 255, .75); }
.lk-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.lk-why-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background var(--lk-trans), border-color var(--lk-trans), transform var(--lk-trans);
}
.lk-why-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--lk-green-light);
    transform: translateY(-6px);
}
.lk-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: var(--lk-green);
    border-radius: 50%;
    transition: background var(--lk-trans), transform var(--lk-trans);
}
.lk-why-card:hover .lk-why-icon {
    background: var(--lk-green-light);
    transform: scale(1.1);
}
.lk-why-card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.lk-why-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* ---------------------- Hot Products ---------------------- */
.lk-hot {
    padding: 80px 0;
    background: #fff;
}
.lk-hot-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lk-hot-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}
.lk-hot-carousel::-webkit-scrollbar { display: none; }
.lk-hot-item {
    flex: 0 0 calc((100% - 60px) / 4);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--lk-line);
    transition: border-color var(--lk-trans);
}
.lk-hot-item:hover {
    border-color: var(--lk-green);
}
.lk-hot-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
}
.lk-hot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.lk-hot-item:hover .lk-hot-img img {
    transform: scale(1.08);
}
.lk-hot-info {
    padding: 16px 14px 18px;
    text-align: center;
}
.lk-hot-name {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--lk-ink);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--lk-trans);
}
.lk-hot-item:hover .lk-hot-name {
    color: var(--lk-green);
}
.lk-hot-view {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity var(--lk-trans), transform var(--lk-trans);
}
.lk-hot-item:hover .lk-hot-view {
    opacity: 1;
    transform: translateY(0);
}
.lk-hot-view i {
    transition: transform var(--lk-trans);
}
.lk-hot-item:hover .lk-hot-view i {
    transform: translateX(3px);
}

/* Hot products arrows */
.lk-hot-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--lk-line);
    background: #fff;
    color: var(--lk-ink);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lk-trans), color var(--lk-trans), border-color var(--lk-trans);
}
.lk-hot-arrow:hover {
    background: var(--lk-green);
    color: #fff;
    border-color: var(--lk-green);
}
.lk-hot-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* ---------------------- Product Applications ---------------------- */
.lk-app {
    padding: 80px 0;
    background: var(--lk-bg-soft);
}
.lk-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lk-app-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--lk-line);
    transition: border-color var(--lk-trans), box-shadow var(--lk-trans);
}
.lk-app-item:hover {
    border-color: var(--lk-green);
    box-shadow: var(--lk-shadow-lg);
}
.lk-app-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
}
.lk-app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.lk-app-item:hover .lk-app-img img {
    transform: scale(1.06);
}
.lk-app-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(15, 23, 42, .75) 0%, rgba(15, 23, 42, .15) 45%, transparent 70%);
    transition: background .5s ease;
}
.lk-app-item:hover .lk-app-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .5) 50%, rgba(15, 23, 42, .1) 100%);
}
.lk-app-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    line-height: 1;
    transition: color var(--lk-trans);
}
.lk-app-item:hover .lk-app-num {
    color: var(--lk-green-light);
}
.lk-app-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}
.lk-app-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0);
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    transition: opacity .35s ease, max-height .4s ease, margin .35s ease;
}
.lk-app-item:hover .lk-app-text {
    opacity: 1;
    max-height: 120px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .85);
}
.lk-app-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-green-light);
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(10px);
    margin-top: 0;
    transition: opacity .35s ease .1s, transform .35s ease .1s, margin .35s ease .1s;
}
.lk-app-item:hover .lk-app-link {
    opacity: 1;
    transform: translateY(0);
    margin-top: 14px;
}
.lk-app-link i {
    transition: transform var(--lk-trans);
}
.lk-app-item:hover .lk-app-link i {
    transform: translateX(4px);
}

/* ---------------------- News & Insights ---------------------- */
.lk-news {
    padding: 80px 0;
    background: #fff;
}
.lk-news-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 0 50px;
}
.lk-news-head-left {
    max-width: 700px;
    text-align: left;
}
.lk-news-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    padding-bottom: 4px;
    transition: color var(--lk-trans);
}
.lk-news-all i {
    transition: transform var(--lk-trans);
}
.lk-news-all:hover { color: var(--lk-green-dark); }
.lk-news-all:hover i { transform: translateX(4px); }

.lk-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Featured article */
.lk-news-feature {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--lk-line);
    overflow: hidden;
    transition: border-color var(--lk-trans), box-shadow var(--lk-trans);
}
.lk-news-feature:hover {
    border-color: var(--lk-green);
    box-shadow: var(--lk-shadow-lg);
}
.lk-news-feature-img {
    position: relative;
    flex: 1;
    min-height: 280px;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
}
.lk-news-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.lk-news-feature:hover .lk-news-feature-img img {
    transform: scale(1.05);
}
.lk-news-date {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--lk-green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    line-height: 1;
}
.lk-news-feature-body {
    padding: 24px 28px 28px;
}
.lk-news-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--lk-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    background: rgba(6, 62, 162, .08);
    border: 1px solid rgba(6, 62, 162, .2);
    margin-bottom: 14px;
}
.lk-news-feature-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 12px;
    line-height: 1.4;
    transition: color var(--lk-trans);
}
.lk-news-feature:hover .lk-news-feature-title {
    color: var(--lk-green);
}
.lk-news-feature-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0 0 16px;
}
.lk-news-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lk-news-read i {
    transition: transform var(--lk-trans);
}
.lk-news-feature:hover .lk-news-read i {
    transform: translateX(4px);
}

/* Side: compact articles */
.lk-news-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.lk-news-compact {
    display: flex;
    flex: 1;
    gap: 18px;
    text-decoration: none;
    padding: 20px;
    background: var(--lk-bg-soft);
    border: 1px solid var(--lk-line);
    transition: border-color var(--lk-trans), background var(--lk-trans);
}
.lk-news-compact:hover {
    border-color: var(--lk-green);
    background: #fff;
}
.lk-news-compact-img {
    flex: 0 0 200px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
}
.lk-news-compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.lk-news-compact:hover .lk-news-compact-img img {
    transform: scale(1.08);
}
.lk-news-compact-body {
    flex: 1;
    min-width: 0;
}
.lk-news-compact-date {
    display: block;
    font-size: 12px;
    color: var(--lk-mute);
    font-weight: 500;
    margin-bottom: 6px;
}
.lk-news-compact-title {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--lk-ink);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--lk-trans);
}
.lk-news-compact:hover .lk-news-compact-title {
    color: var(--lk-green);
}
.lk-news-compact-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--lk-mute);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-news-compact-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lk-news-compact-more i {
    transition: transform var(--lk-trans);
}
.lk-news-compact:hover .lk-news-compact-more i {
    transform: translateX(4px);
}

/* ---------------------- CTA ---------------------- */
.lk-cta {
    position: relative;
    padding: 70px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.lk-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(6, 62, 162, .85));
    z-index: 0;
}
.lk-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.lk-cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}
.lk-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}
.lk-cta-left {
    flex: 1;
}
.lk-cta-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}
.lk-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 2px solid;
    cursor: pointer;
    transition: background var(--lk-trans), color var(--lk-trans), border-color var(--lk-trans);
}
.lk-cta-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
    text-decoration: none;
}
.lk-cta-btn-outline:hover {
    background: #fff;
    color: var(--lk-ink);
    border-color: #fff;
}
.lk-cta-btn-solid {
    background: var(--lk-green);
    border-color: var(--lk-green);
    color: #fff;
}
.lk-cta-btn-solid:hover {
    background: var(--lk-green-light);
    border-color: var(--lk-green-light);
}
.lk-cta-btn-solid i {
    transition: transform var(--lk-trans);
}
.lk-cta-btn-solid:hover i {
    transform: translateX(4px);
}

/* Quote form modal */
.lk-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--lk-trans), visibility var(--lk-trans);
}
.lk-quote-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.lk-quote-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.lk-quote-box {
    position: relative;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    padding: 36px 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    transform: scale(.92);
    transition: transform var(--lk-trans-bounce);
}
.lk-quote-modal.is-open .lk-quote-box {
    transform: scale(1);
}
.lk-quote-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--lk-bg-soft);
    color: var(--lk-ink);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background var(--lk-trans), color var(--lk-trans);
}
.lk-quote-close:hover {
    background: var(--lk-ink);
    color: #fff;
}
.lk-quote-head {
    text-align: center;
    margin-bottom: 24px;
}
.lk-quote-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 8px;
}
.lk-quote-sub {
    font-size: 14px;
    color: var(--lk-mute);
    margin: 0;
}
.lk-quote-row {
    display: flex;
    gap: 16px;
}
.lk-quote-field {
    flex: 1;
    margin-bottom: 16px;
}
.lk-quote-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-ink);
    margin-bottom: 6px;
}
.lk-quote-field input,
.lk-quote-field textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--lk-line-2);
    background: var(--lk-bg-soft);
    color: var(--lk-ink);
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color var(--lk-trans), background var(--lk-trans);
}
.lk-quote-field input:focus,
.lk-quote-field textarea:focus {
    border-color: var(--lk-green);
    background: #fff;
}
.lk-quote-field textarea {
    resize: vertical;
}
.lk-quote-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    background: var(--lk-green);
    color: #fff;
    cursor: pointer;
    transition: background var(--lk-trans);
}
.lk-quote-submit:hover {
    background: var(--lk-green-light);
}

/* Captcha row */
.lk-quote-captcha-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.lk-quote-captcha-row input {
    flex: 1;
    min-width: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lk-quote-captcha-img {
    flex-shrink: 0;
    width: 110px;
    height: 42px;
    border: 1px solid var(--lk-line-2);
    background: var(--lk-bg-soft);
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    transition: border-color var(--lk-trans), opacity var(--lk-trans);
    display: block;
}
.lk-quote-captcha-img:hover {
    border-color: var(--lk-green);
    opacity: .85;
}
.lk-quote-captcha-refresh {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--lk-line-2);
    background: var(--lk-bg-soft);
    color: var(--lk-mute);
    font-size: 16px;
    cursor: pointer;
    transition: border-color var(--lk-trans), color var(--lk-trans), background var(--lk-trans);
}
.lk-quote-captcha-refresh:hover {
    border-color: var(--lk-green);
    color: var(--lk-green);
    background: #fff;
}
.lk-quote-captcha-refresh:active i {
    transform: rotate(180deg);
    transition: transform .35s ease;
}

/* Submit button loading state */
.lk-quote-submit:disabled,
.lk-quote-submit.is-loading {
    cursor: not-allowed;
    opacity: .85;
}
.lk-quote-submit.is-loading .lk-quote-submit-text,
.lk-quote-submit.is-loading .lk-quote-submit-icon {
    visibility: hidden;
}
.lk-quote-submit-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: lkQuoteSpin .75s linear infinite;
}
.lk-quote-submit.is-loading .lk-quote-submit-loader {
    opacity: 1;
}
@keyframes lkQuoteSpin {
    to { transform: rotate(360deg); }
}
.lk-quote-submit {
    position: relative;
}

/* Toast notification */
.lk-quote-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -100px);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    min-width: 280px;
    max-width: calc(100vw - 32px);
    background: #fff;
    color: var(--lk-ink);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2, .9, .3, 1.2), opacity .3s ease;
}
.lk-quote-toast.is-show {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}
.lk-quote-toast i {
    font-size: 20px;
    flex-shrink: 0;
}
.lk-quote-toast.is-success {
    border-left: 4px solid var(--lk-green);
    color: var(--lk-ink);
}
.lk-quote-toast.is-success i {
    color: var(--lk-green);
}
.lk-quote-toast.is-error {
    border-left: 4px solid #e23a3a;
    color: var(--lk-ink);
}
.lk-quote-toast.is-error i {
    color: #e23a3a;
}

/* ---------------------- Footer ---------------------- */
.lk-footer {
    background: var(--lk-ink);
    color: rgba(255, 255, 255, .7);
}
.lk-footer-top {
    padding: 64px 0 48px;
}
.lk-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.lk-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.lk-footer-logo img {
    width: 48px;
    height: 48px;
}
.lk-footer-logo .lk-logo-text strong {
    color: #fff;
    font-size: 20px;
}
.lk-footer-logo .lk-logo-text em {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
}
.lk-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    margin: 0 0 20px;
}
.lk-footer-social {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
}
.lk-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    transition: background var(--lk-trans), color var(--lk-trans), border-color var(--lk-trans);
}
.lk-footer-social a:hover {
    background: var(--lk-green);
    color: #fff;
    border-color: var(--lk-green);
}
.lk-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}
.lk-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--lk-green);
}
.lk-footer-links {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lk-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: color var(--lk-trans), padding-left var(--lk-trans);
}
.lk-footer-links a:hover {
    color: var(--lk-green-light);
    padding-left: 6px;
}
.lk-footer-contact {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lk-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}
.lk-footer-contact i {
    color: var(--lk-green-light);
    font-size: 16px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.lk-footer-contact a {
    color: rgba(255, 255, 255, .55);
    transition: color var(--lk-trans);
}
.lk-footer-contact a:hover {
    color: var(--lk-green-light);
}
.lk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}
.lk-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.lk-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}
.lk-footer-policy {
    display: flex;
    gap: 20px;
}
.lk-footer-policy a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    transition: color var(--lk-trans);
}
.lk-footer-policy a:hover {
    color: var(--lk-green-light);
}

/* ---------------------- Product List Page ---------------------- */

/* Page banner */
.lk-page-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.lk-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .82) 0%, rgba(15, 23, 42, .35) 55%, transparent 100%);
    z-index: 0;
}
.lk-page-banner-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}
.lk-page-banner-content {
    color: #fff;
}
.lk-page-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
}
.lk-page-banner-sub {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

/* Breadcrumb */
.lk-breadcrumb {
    background: var(--lk-bg-soft);
    border-bottom: 1px solid var(--lk-line);
    padding: 14px 0;
}
.lk-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}
.lk-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lk-breadcrumb-list a {
    color: var(--lk-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--lk-trans);
}
.lk-breadcrumb-list a:hover {
    color: var(--lk-green);
}
.lk-breadcrumb-sep {
    color: var(--lk-mute);
    font-size: 12px;
    line-height: 1;
}
.lk-breadcrumb-current {
    color: var(--lk-green);
    font-weight: 500;
}
.lk-breadcrumb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 32px;
}
.lk-breadcrumb-sub ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-breadcrumb-sub a {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
    color: var(--lk-text);
    font-size: 14px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.lk-breadcrumb-sub a:hover {
    color: var(--lk-green);
    background: rgba(25, 124, 9, .06);
    border-color: rgba(25, 124, 9, .22);
}
.lk-breadcrumb-sub li.is-active a {
    color: var(--lk-green);
    background: rgba(25, 124, 9, .08);
    border-color: var(--lk-green);
    font-weight: 600;
}

/* ---------------------- Factory Gallery ---------------------- */
.lk-fc-page {
    background: #fff;
    padding: 60px 0 80px;
}
.lk-fc-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.lk-fc-head-title {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 14px 0 12px;
    line-height: 1.3;
}
.lk-fc-head-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0;
}
.lk-fc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lk-fc-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--lk-bg-soft-2);
}
.lk-fc-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: zoom-in;
    text-decoration: none;
    color: #fff;
}
.lk-fc-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lk-fc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, 0) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity .3s ease;
}
.lk-fc-link:hover .lk-fc-overlay {
    opacity: 1;
}
.lk-fc-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--lk-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.lk-fc-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

/* Lightbox */
.lk-fc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lk-fc-lightbox.is-open {
    display: flex;
}
.lk-fc-lightbox-mask {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}
.lk-fc-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lk-fc-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}
.lk-fc-lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 14px;
    font-size: 15px;
}
.lk-fc-lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    z-index: 2;
}
.lk-fc-lightbox-close,
.lk-fc-lightbox-prev,
.lk-fc-lightbox-next {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-family: inherit;
    padding: 0;
    transition: background-color .2s ease;
}
.lk-fc-lightbox-close:hover,
.lk-fc-lightbox-prev:hover,
.lk-fc-lightbox-next:hover {
    background: rgba(255, 255, 255, .22);
}
.lk-fc-lightbox-close {
    top: 20px;
    right: 20px;
}
.lk-fc-lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.lk-fc-lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* ---------------------- Certificates ---------------------- */
.lk-zs-page {
    background: #fff;
    padding: 60px 0 80px;
}
.lk-zs-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.lk-zs-head-title {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 14px 0 12px;
    line-height: 1.3;
}
.lk-zs-head-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0;
}
.lk-zs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lk-zs-item {
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: 6px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lk-zs-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(6, 62, 162, .12);
    border-color: rgba(25, 124, 9, .35);
}
.lk-zs-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

/* ---------------------- News List ---------------------- */
.lk-nl-page {
    background: #fff;
    padding: 60px 0 80px;
}
.lk-nl-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.lk-nl-head-title {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 14px 0 12px;
    line-height: 1.3;
}
.lk-nl-head-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0;
}
.lk-nl-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lk-nl-item {
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.lk-nl-item:hover {
    border-color: var(--lk-green);
    box-shadow: 0 12px 32px rgba(25, 124, 9, .12);
    transform: translateY(-3px);
}
.lk-nl-item-link {
    display: flex;
    gap: 28px;
    text-decoration: none;
    color: inherit;
}
.lk-nl-img {
    flex: 0 0 320px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
}
.lk-nl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.lk-nl-item:hover .lk-nl-img img {
    transform: scale(1.06);
}
.lk-nl-body {
    flex: 1;
    min-width: 0;
    padding: 28px 28px 28px 0;
    display: flex;
    flex-direction: column;
}
.lk-nl-meta {
    margin-bottom: 12px;
}
.lk-nl-date {
    font-size: 13px;
    color: var(--lk-mute);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lk-nl-date i {
    color: var(--lk-green);
}
.lk-nl-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lk-ink);
    line-height: 1.35;
    margin: 0 0 12px;
    transition: color .3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-nl-item:hover .lk-nl-title {
    color: var(--lk-green);
}
.lk-nl-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-nl-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lk-nl-more i {
    transition: transform .3s ease;
}
.lk-nl-item:hover .lk-nl-more i {
    transform: translateX(4px);
}

/* Pagination (PbootCMS default classes) */
.lk-nl-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}
.lk-nl-pagination .page-status,
.lk-nl-pagination .page-num,
.lk-nl-pagination .page-pre,
.lk-nl-pagination .page-next,
.lk-nl-pagination .page-last,
.lk-nl-pagination .page-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: #fff;
    color: var(--lk-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--lk-line);
    border-radius: 6px;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.lk-nl-pagination .page-num:hover,
.lk-nl-pagination .page-pre:hover,
.lk-nl-pagination .page-next:hover,
.lk-nl-pagination .page-last:hover,
.lk-nl-pagination .page-index:hover {
    color: var(--lk-green);
    border-color: var(--lk-green);
}
.lk-nl-pagination .page-num-current {
    color: #fff;
    background: var(--lk-green);
    border-color: var(--lk-green);
}
.lk-nl-pagination .page-status {
    border: none;
    background: transparent;
    color: var(--lk-mute);
    font-size: 13px;
    min-width: auto;
    padding: 0 8px;
    pointer-events: none;
}

/* ---------------------- News Detail ---------------------- */
.lk-nd-page {
    background: #fff;
    padding: 50px 0 80px;
}
.lk-nd-article {
    max-width: 860px;
    margin: 0 auto 40px;
}
.lk-nd-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--lk-mute);
}
.lk-nd-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lk-nd-meta i {
    color: var(--lk-green);
}
.lk-nd-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--lk-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    background: rgba(6, 62, 162, .08);
    border: 1px solid rgba(6, 62, 162, .2);
}
.lk-nd-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--lk-ink);
    line-height: 1.3;
    margin: 0 0 28px;
}
.lk-nd-hero {
    margin-bottom: 32px;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: var(--lk-bg-soft-2);
}
.lk-nd-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lk-nd-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--lk-text);
}
.lk-nd-content p {
    margin: 0 0 18px;
}
.lk-nd-content p:last-child {
    margin-bottom: 0;
}
.lk-nd-content h2,
.lk-nd-content h3,
.lk-nd-content h4 {
    font-family: 'Roboto', sans-serif;
    color: var(--lk-ink);
    margin: 32px 0 16px;
    line-height: 1.4;
    font-weight: 700;
}
.lk-nd-content h2 { font-size: 26px; }
.lk-nd-content h3 { font-size: 22px; }
.lk-nd-content h4 { font-size: 18px; font-weight: 600; }
.lk-nd-content ul,
.lk-nd-content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}
.lk-nd-content li {
    margin-bottom: 8px;
}
.lk-nd-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 18px auto;
    border-radius: 6px;
}
.lk-nd-content a {
    color: var(--lk-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.lk-nd-content a:hover {
    color: var(--lk-blue);
}
.lk-nd-content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--lk-green);
    background: var(--lk-bg-soft);
    color: var(--lk-ink);
    font-style: italic;
    border-radius: 0 6px 6px 0;
}
.lk-nd-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}
.lk-nd-content table th,
.lk-nd-content table td {
    border: 1px solid var(--lk-line);
    padding: 10px 12px;
    text-align: left;
}
.lk-nd-content table th {
    background: var(--lk-bg-soft);
    font-weight: 600;
    color: var(--lk-ink);
}
.lk-nd-content pre {
    background: #1e293b;
    color: #f1f5f9;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 18px 0;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}
.lk-nd-content code {
    background: var(--lk-bg-soft-2);
    color: #c7254e;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Consolas', 'Courier New', monospace;
}
.lk-nd-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: inherit;
}
.lk-nd-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--lk-line);
}
.lk-nd-tags-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lk-nd-tags-label i {
    color: var(--lk-green);
}
.lk-nd-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--lk-bg-soft);
    color: var(--lk-text);
    font-size: 12px;
    text-decoration: none;
    border: 1px solid var(--lk-line);
    border-radius: 30px;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.lk-nd-tag:hover {
    color: var(--lk-green);
    border-color: var(--lk-green);
    background: rgba(25, 124, 9, .06);
}
.lk-nd-prevnext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 30px;
}
.lk-nd-prev,
.lk-nd-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: 8px;
    text-decoration: none;
    color: var(--lk-ink);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.lk-nd-next {
    text-align: right;
    align-items: flex-end;
}
.lk-nd-prev:hover,
.lk-nd-next:hover {
    border-color: var(--lk-green);
    box-shadow: 0 8px 20px rgba(25, 124, 9, .1);
    transform: translateY(-2px);
}
.lk-nd-prev.is-disabled,
.lk-nd-next.is-disabled {
    pointer-events: none;
    opacity: .55;
}
.lk-nd-prevnext-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--lk-mute);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.lk-nd-prevnext-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--lk-ink);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .25s ease;
}
.lk-nd-prev:hover .lk-nd-prevnext-title,
.lk-nd-next:hover .lk-nd-prevnext-title {
    color: var(--lk-green);
}
.lk-nd-back {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.lk-nd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--lk-green);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lk-nd-back-btn:hover {
    background: var(--lk-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 62, 162, .25);
}
.lk-nd-back-btn i {
    transition: transform .25s ease;
}
.lk-nd-back-btn:hover i {
    transform: translateX(-3px);
}

/* ---------------------- FAQ Page ---------------------- */
.lk-faq-page {
    background: #fff;
    padding: 60px 0 80px;
}
.lk-faq-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}
.lk-faq-head-title {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 14px 0 12px;
    line-height: 1.3;
}
.lk-faq-head-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0;
}
.lk-faq-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.lk-faq-item {
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.lk-faq-item:hover {
    border-color: rgba(25, 124, 9, .45);
}
.lk-faq-item.is-open {
    border-color: var(--lk-green);
    box-shadow: 0 10px 28px rgba(25, 124, 9, .12);
}
.lk-faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    color: var(--lk-ink);
    transition: background-color .25s ease;
}
.lk-faq-q:hover {
    background: var(--lk-bg-soft);
}
.lk-faq-q-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lk-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease, transform .3s ease;
}
.lk-faq-item.is-open .lk-faq-q-icon {
    background: var(--lk-blue);
    transform: scale(1.05);
}
.lk-faq-q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--lk-ink);
}
.lk-faq-arrow {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--lk-mute);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    transition: transform .35s ease, color .3s ease;
}
.lk-faq-arrow::before {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 16px;
}
.lk-faq-item.is-open .lk-faq-arrow {
    color: var(--lk-green);
    transform: rotate(180deg);
}
.lk-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.lk-faq-item.is-open .lk-faq-a {
    max-height: 500px;
}
.lk-faq-a-inner {
    display: flex;
    gap: 16px;
    padding: 4px 24px 22px;
    border-top: 1px dashed var(--lk-line);
    margin: 0 24px;
    padding-top: 18px;
}
.lk-faq-a-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(6, 62, 162, .1);
    color: var(--lk-blue);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.lk-faq-a-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    color: var(--lk-text);
    margin: 0;
    padding-top: 6px;
}

/* Bottom CTA */
.lk-faq-cta {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(25, 124, 9, .05) 0%, rgba(6, 62, 162, .05) 100%);
    border: 1px solid var(--lk-line);
    border-radius: 12px;
}
.lk-faq-cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 10px;
}
.lk-faq-cta-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0 0 22px;
}
.lk-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--lk-green);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lk-faq-cta-btn:hover {
    background: var(--lk-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 62, 162, .25);
}
.lk-faq-cta-btn i {
    transition: transform .25s ease;
}
.lk-faq-cta-btn:hover i {
    transform: translateX(4px);
}

/* ---------------------- Contact Page ---------------------- */
.lk-ct-info {
    background: #fff;
    padding: 60px 0 50px;
}
.lk-ct-info-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.lk-ct-info-card {
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: 10px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.lk-ct-info-card:hover {
    border-color: var(--lk-green);
    box-shadow: 0 12px 28px rgba(25, 124, 9, .1);
    transform: translateY(-4px);
}
.lk-ct-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(25, 124, 9, .1);
    color: var(--lk-green);
    font-size: 28px;
    margin-bottom: 18px;
    transition: background-color .3s ease, color .3s ease;
}
.lk-ct-info-card:hover .lk-ct-info-icon {
    background: var(--lk-green);
    color: #fff;
}
.lk-ct-info-label {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--lk-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.lk-ct-info-value {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--lk-ink);
    line-height: 1.5;
    margin: 0 0 6px;
    word-break: break-word;
}
.lk-ct-info-sub {
    font-size: 13px;
    color: var(--lk-mute);
    line-height: 1.5;
    margin: 0;
}

/* Main: company info + CTA */
.lk-ct-main {
    background: var(--lk-bg-soft);
    padding: 60px 0 80px;
}
.lk-ct-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}
.lk-ct-content {
    padding: 8px 0;
}
.lk-ct-content-title {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--lk-ink);
    line-height: 1.3;
    margin: 14px 0 16px;
}
.lk-ct-content-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--lk-text);
    margin: 0 0 28px;
}
.lk-ct-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
}
.lk-ct-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.lk-ct-points-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--lk-green);
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}
.lk-ct-points-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lk-ct-points-body strong {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--lk-ink);
}
.lk-ct-points-body span {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--lk-text);
}

/* CTA card */
.lk-ct-cta {
    display: flex;
}
.lk-ct-cta-card {
    position: relative;
    width: 100%;
    padding: 40px 36px;
    border-radius: 16px;
    color: #fff;
    background:
        radial-gradient(700px 320px at 88% 12%, rgba(25, 124, 9, .55) 0%, rgba(25, 124, 9, 0) 60%),
        linear-gradient(125deg, #071c4d 0%, #063ea2 55%, #0a4fc0 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.lk-ct-cta-glow {
    position: absolute;
    top: -120px;
    left: -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}
.lk-ct-cta-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #7ee26c;
    font-size: 26px;
    margin-bottom: 22px;
}
.lk-ct-cta-title {
    position: relative;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}
.lk-ct-cta-text {
    position: relative;
    z-index: 1;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 26px;
}
.lk-ct-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 14px 32px;
    background: #fff;
    color: var(--lk-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
    margin-bottom: 28px;
}
.lk-ct-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
    background: var(--lk-green);
    color: #fff;
}
.lk-ct-cta-btn i {
    transition: transform .25s ease;
}
.lk-ct-cta-btn:hover i {
    transform: translateX(4px);
}
.lk-ct-cta-meta {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: auto 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lk-ct-cta-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}
.lk-ct-cta-meta i {
    color: #7ee26c;
    font-size: 15px;
}

/* ---------------------- Search Page ---------------------- */
.lk-search-page {
    background: #fff;
    padding: 50px 0 80px;
}
.lk-search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    margin-bottom: 28px;
    background: var(--lk-bg-soft);
    border: 1px solid var(--lk-line);
    border-radius: 10px;
}
.lk-search-info {
    flex: 1;
    min-width: 0;
}
.lk-search-keyword {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 4px;
    line-height: 1.3;
}
.lk-search-keyword span {
    color: var(--lk-green);
    word-break: break-word;
}
.lk-search-count {
    font-size: 13px;
    color: var(--lk-mute);
}
.lk-search-toolbar .lk-search-form {
    flex: 0 0 360px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px 4px 16px;
    background: #fff;
    border: 1px solid var(--lk-line);
    border-radius: 50px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.lk-search-toolbar .lk-search-form:focus-within {
    border-color: var(--lk-green);
    box-shadow: 0 0 0 3px rgba(25, 124, 9, .1);
}
.lk-search-toolbar .lk-search-form > i {
    color: var(--lk-mute);
    font-size: 16px;
}
.lk-search-toolbar .lk-search-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--lk-ink);
    padding: 8px 4px;
}
.lk-search-toolbar .lk-search-form input::placeholder {
    color: var(--lk-mute);
}
.lk-search-toolbar .lk-search-submit {
    flex-shrink: 0;
    border: none;
    background: var(--lk-green);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lk-search-toolbar .lk-search-submit:hover {
    background: var(--lk-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(6, 62, 162, .2);
}

/* Results grid (reuses .lk-hot-item cards) */
.lk-search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.lk-search-grid .lk-hot-item {
    flex: none;
}

/* Empty state */
.lk-search-empty {
    text-align: center;
    padding: 60px 20px 50px;
    max-width: 560px;
    margin: 0 auto;
}
.lk-search-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--lk-bg-soft);
    color: var(--lk-green);
    font-size: 38px;
    margin-bottom: 22px;
}
.lk-search-empty-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 10px;
}
.lk-search-empty-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lk-text);
    margin: 0 0 26px;
}
.lk-search-empty-text strong {
    color: var(--lk-ink);
    font-weight: 600;
    word-break: break-word;
}
.lk-search-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--lk-green);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lk-search-empty-btn:hover {
    background: var(--lk-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 62, 162, .25);
}
.lk-search-empty-btn i {
    transition: transform .25s ease;
}
.lk-search-empty-btn:hover i {
    transform: translateX(3px);
}

/* PL layout */
.lk-pl-page {
    padding: 50px 0;
}
.lk-pl-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.lk-pl-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lk-pl-sidebar {
    background: #fff;
    border: 1px solid var(--lk-line);
    padding: 24px;
}
.lk-pl-sidebar-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lk-green);
}
.lk-pl-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lk-pl-cat-list li {
    border-bottom: 1px solid var(--lk-line);
}
.lk-pl-cat-list li:last-child {
    border-bottom: none;
}
.lk-pl-cat-list a {
    display: block;
    padding: 12px 12px 12px 0;
    font-size: 14px;
    color: var(--lk-text);
    text-decoration: none;
    position: relative;
    transition: color var(--lk-trans), padding-left var(--lk-trans);
}
.lk-pl-cat-list a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--lk-green);
    opacity: 0;
    transition: opacity var(--lk-trans);
}
.lk-pl-cat-list a:hover,
.lk-pl-cat-list .is-active a {
    color: var(--lk-green);
    padding-left: 20px;
}
.lk-pl-cat-list a:hover::before,
.lk-pl-cat-list .is-active a::before {
    opacity: 1;
}

/* Main */
.lk-pl-main {
    min-width: 0;
}
.lk-pl-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--lk-line);
}
.lk-pl-toolbar-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0;
}
.lk-pl-count {
    font-size: 14px;
    color: var(--lk-mute);
}
.lk-pl-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Reset hot-item flex for grid context */
.lk-pl-grid-wrap .lk-hot-item {
    flex: none;
}

/* Sidebar CTA */
.lk-pl-cta {
    margin-top: 20px;
    padding: 28px 22px;
    background: linear-gradient(135deg, var(--lk-green), var(--lk-green-dark));
    color: #fff;
    text-align: center;
}
.lk-pl-cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.lk-pl-cta-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .88);
    margin: 0 0 18px;
}
.lk-pl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    background: #fff;
    color: var(--lk-green);
    cursor: pointer;
    transition: background var(--lk-trans), color var(--lk-trans);
}
.lk-pl-cta-btn:hover {
    background: var(--lk-ink);
    color: #fff;
}
.lk-pl-cta-btn i {
    transition: transform var(--lk-trans);
}
.lk-pl-cta-btn:hover i {
    transform: translateX(3px);
}

/* Pagination */
.lk-pl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.lk-pl-page-btn,
.lk-pl-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lk-text);
    background: #fff;
    border: 1px solid var(--lk-line);
    text-decoration: none;
    transition: background var(--lk-trans), color var(--lk-trans), border-color var(--lk-trans);
}
.lk-pl-page-btn {
    font-size: 16px;
}
.lk-pl-page-btn:hover,
.lk-pl-page-num:hover {
    background: var(--lk-green);
    color: #fff;
    border-color: var(--lk-green);
}
.lk-pl-page-num.is-active {
    background: var(--lk-green);
    color: #fff;
    border-color: var(--lk-green);
}
.lk-pl-page-btn.is-disabled,
.lk-pl-page-btn.is-disabled:hover {
    background: var(--lk-bg-soft);
    color: var(--lk-mute);
    border-color: var(--lk-line);
    cursor: not-allowed;
    pointer-events: none;
}
.lk-pl-page-dots {
    color: var(--lk-mute);
    padding: 0 4px;
    user-select: none;
}

/* ---------------------- Product Detail Page ---------------------- */
.lk-pd-page {
    padding: 50px 0;
}
.lk-pd-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Left sidebar */
.lk-pd-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lk-pd-sidebar {
    background: #fff;
    border: 1px solid var(--lk-line);
    padding: 24px;
}
.lk-pd-sidebar-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lk-green);
}
.lk-pd-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lk-pd-cat-list li {
    border-bottom: 1px solid var(--lk-line);
}
.lk-pd-cat-list li:last-child {
    border-bottom: none;
}
.lk-pd-cat-list a {
    display: block;
    padding: 12px 12px 12px 0;
    font-size: 14px;
    color: var(--lk-text);
    text-decoration: none;
    position: relative;
    transition: color var(--lk-trans), padding-left var(--lk-trans);
}
.lk-pd-cat-list a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--lk-green);
    opacity: 0;
    transition: opacity var(--lk-trans);
}
.lk-pd-cat-list a:hover,
.lk-pd-cat-list .is-active a {
    color: var(--lk-green);
    padding-left: 20px;
}
.lk-pd-cat-list a:hover::before,
.lk-pd-cat-list .is-active a::before {
    opacity: 1;
}

/* Latest products */
.lk-pd-latest {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lk-pd-latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--lk-line);
}
.lk-pd-latest-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.lk-pd-latest-img {
    flex: 0 0 70px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
}
.lk-pd-latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.lk-pd-latest-item:hover .lk-pd-latest-img img {
    transform: scale(1.08);
}
.lk-pd-latest-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lk-pd-latest-name {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--lk-ink);
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--lk-trans);
}
.lk-pd-latest-item:hover .lk-pd-latest-name {
    color: var(--lk-green);
}
.lk-pd-latest-cat {
    font-size: 11px;
    color: var(--lk-mute);
}

/* Main content */
.lk-pd-main {
    min-width: 0;
}
.lk-pd-top {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    margin-bottom: 40px;
}
.cpjianjie{
    color: #555;
    margin-bottom: 40px;
}
/* Gallery */
.lk-pd-main-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
    border: 1px solid var(--lk-line);
    margin-bottom: 12px;
}
.lk-pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .3s ease;
}
.lk-pd-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.lk-pd-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
    border: 1px solid var(--lk-line);
    cursor: pointer;
    transition: border-color var(--lk-trans);
}
.lk-pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lk-pd-thumb:hover,
.lk-pd-thumb.is-active {
    border-color: var(--lk-green);
}

/* Product info */
.lk-pd-info {
    display: flex;
    flex-direction: column;
}
.lk-pd-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--lk-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    background: rgba(6, 62, 162, .08);
    border: 1px solid rgba(6, 62, 162, .2);
    margin-bottom: 12px;
    align-self: flex-start;
}
.lk-pd-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 20px;
    line-height: 1.3;
}
.lk-pd-attrs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.lk-pd-attrs tr {
    border-bottom: 1px solid var(--lk-line);
}
.lk-pd-attrs th,
.lk-pd-attrs td {
    padding: 10px 12px;
    font-size: 13px;
    text-align: left;
    vertical-align: top;
}
.lk-pd-attrs th {
    width: 130px;
    color: var(--lk-ink);
    font-weight: 600;
    background: var(--lk-bg-soft);
}
.lk-pd-attrs td {
    color: var(--lk-text);
}
.lk-pd-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--lk-green);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--lk-trans);
    align-self: flex-start;
}
.lk-pd-inquiry:hover {
    background: var(--lk-green-light);
}
.lk-pd-inquiry i {
    transition: transform var(--lk-trans);
}
.lk-pd-inquiry:hover i {
    transform: rotate(15deg);
}

/* Product description */
.lk-pd-content {
    border-top: 1px solid var(--lk-line);
    padding-top: 30px;
}
.lk-pd-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}
.lk-pd-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--lk-blue);
}
.lk-pd-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--lk-text);
}
.lk-pd-body p {
    margin: 0 0 14px;
}
.lk-pd-body strong {
    color: var(--lk-ink);
    font-weight: 600;
}
.lk-pd-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.lk-pd-list li {
    position: relative;
    padding: 4px 0 4px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--lk-text);
}
.lk-pd-list li::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 14px;
    color: var(--lk-green);
}

/* ---------------------- About Page ---------------------- */
.lk-ab-page {
    background: #fff;
    padding: 70px 0 80px;
}
.lk-ab-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left — content */
.lk-ab-content {
    min-width: 0;
}
.lk-ab-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
    color: var(--lk-ink);
    margin: 0;
}
.lk-ab-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--lk-text);
    margin: 0 0 16px;
}
.lk-ab-text strong {
    color: var(--lk-ink);
    font-weight: 700;
}
.lk-ab-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}
.lk-ab-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--lk-text);
}
.lk-ab-points li > i {
    color: var(--lk-green);
    font-size: 18px;
    flex-shrink: 0;
}
.lk-ab-points li strong {
    color: var(--lk-ink);
    font-weight: 700;
    margin: 0 2px;
}

/* Action buttons */
.lk-ab-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.lk-ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 2px solid;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--lk-trans), color var(--lk-trans), border-color var(--lk-trans), transform var(--lk-trans), box-shadow var(--lk-trans);
}
.lk-ab-btn i {
    transition: transform var(--lk-trans);
}
.lk-ab-btn-primary {
    background: var(--lk-green);
    border-color: var(--lk-green);
    color: #fff;
    box-shadow: var(--lk-shadow-green);
}
.lk-ab-btn-primary:hover {
    background: var(--lk-green-light);
    border-color: var(--lk-green-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(25, 124, 9, .35);
}
.lk-ab-btn-primary:hover i {
    transform: translateX(4px);
}
.lk-ab-btn-outline {
    background: transparent;
    border-color: var(--lk-blue);
    color: var(--lk-blue);
}
.lk-ab-btn-outline:hover {
    background: var(--lk-blue);
    border-color: var(--lk-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--lk-shadow-blue);
}

/* Right — video */
.lk-ab-video {
    position: sticky;
    top: 110px;
}
.lk-ab-video-wrap {
    position: relative;
    background: var(--lk-ink);
    border: 1px solid var(--lk-line);
    box-shadow: var(--lk-shadow-lg);
    overflow: hidden;
}
.lk-ab-video-wrap::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 10px;
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    z-index: 2;
}
.lk-ab-video-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(15, 23, 42, .85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-left: 2px solid var(--lk-green);
}
.lk-ab-video-tag i {
    color: var(--lk-green-light);
    font-size: 14px;
}
.lk-ab-video-wrap video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: none;
    vertical-align: middle;
}
.lk-ab-video-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--lk-bg-soft);
    border-top: 1px solid var(--lk-line);
    font-size: 13px;
    color: var(--lk-mute);
}
.lk-ab-video-caption i {
    color: var(--lk-green);
    font-size: 16px;
}

/* ---------------------- Stats / Numbers ---------------------- */
.lk-stats {
    position: relative;
    padding: 50px 0 56px;
    background-color: #0f172a;
    overflow: hidden;
    color: #fff;
}
.lk-stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.lk-stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, .92) 0%, rgba(6, 62, 162, .82) 100%);
    z-index: 0;
}
.lk-stats-inner {
    position: relative;
    z-index: 1;
}
.lk-stats-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.lk-stats-eyebrow {
    background: rgba(25, 124, 9, .15);
    border-color: rgba(255, 255, 255, .25);
    color: var(--lk-green-light);
}
.lk-stats-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.2;
    color: #fff;
    margin: 14px 0 0;
}
.lk-stats-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
    margin: 18px 0 0;
}
.lk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.lk-stat-item {
    position: relative;
    text-align: center;
    padding: 40px 24px 36px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden;
    transition: background var(--lk-trans), border-color var(--lk-trans), transform var(--lk-trans);
}
.lk-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lk-green) 0%, var(--lk-blue) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .5s ease;
}
.lk-stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(25, 124, 9, .18) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease;
}
.lk-stat-item:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-6px);
}
.lk-stat-item:hover::before {
    transform: scaleX(1);
}
.lk-stat-item:hover::after {
    opacity: 1;
}
.lk-stat-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--lk-green) 0%, var(--lk-green-light) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(25, 124, 9, .35);
    transition: transform var(--lk-trans-bounce);
}
.lk-stat-item:hover .lk-stat-icon {
    transform: scale(1.1) rotate(-6deg);
}
.lk-stat-num {
    position: relative;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lk-stat-count {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}
.lk-stat-label {
    position: relative;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--lk-green-light);
    margin: 0 0 10px;
    line-height: 1.3;
}
.lk-stat-desc {
    position: relative;
    z-index: 1;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

/* ---------------------- Capability Showcase ---------------------- */
.lk-cap {
    background: #fff;
    padding: 70px 0;
}
.lk-cap .w-90 {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lk-cap-item {
    display: flex;
    align-items: center;
    gap: 60px;
}
.lk-cap-media {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    background: var(--lk-bg-soft-2);
    aspect-ratio: 4 / 3;
}
.lk-cap-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lk-cap-body {
    flex: 1;
    min-width: 0;
}
.lk-cap-title {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--lk-ink);
    margin: 0 0 18px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lk-cap-title > i {
    color: var(--lk-green);
    font-size: 16px;
    flex-shrink: 0;
}
.lk-cap-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--lk-text);
    margin: 0 0 14px;
}
.lk-cap-text strong {
    color: var(--lk-ink);
    font-weight: 700;
}
.lk-cap-slogan {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 14px 18px;
    background: var(--lk-bg-soft);
    border-left: 3px solid var(--lk-green);
    font-size: 15px;
    font-weight: 600;
    color: var(--lk-green);
    line-height: 1.5;
}
.lk-cap-slogan i {
    font-size: 20px;
    flex-shrink: 0;
}

/* ---------------------- CTA Card ---------------------- */
.lk-cta-card {
    background: #fff;
    padding: 50px 0 50px;
}
.lk-cta-card-box {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    padding: 64px 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    background:
        radial-gradient(900px 380px at 88% 15%, rgba(25, 124, 9, .5) 0%, rgba(25, 124, 9, 0) 62%),
        linear-gradient(120deg, #071c4d 0%, #063ea2 55%, #0a4fc0 100%);
}
.lk-cta-card-glow {
    position: absolute;
    top: -140px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}
.lk-cta-card-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.lk-cta-card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #fff;
}
.lk-cta-card-title span {
    color: #7ee26c;
}
.lk-cta-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}
.lk-cta-card-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.lk-cta-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 38px;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: var(--lk-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lk-cta-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
}
.lk-cta-card-btn i {
    font-size: 17px;
}

/* ---------------------- Responsive ---------------------- */

/* Large tablets / small desktop */
@media (max-width: 1280px) {
    .lk-nav-item > a { padding: 10px 12px; font-size: 14px; }
}

/* Tablet */
@media (max-width: 992px) {
    .lk-topbar { display: none; }
    .lk-header-inner { min-height: 72px; padding: 10px 0; gap: 12px; }
    .lk-logo img { height: 44px; }
    .lk-logo-text strong { font-size: 18px; }
    .lk-logo-text em { font-size: 10px; letter-spacing: 1px; }
    .lk-nav { display: none; }
    .lk-menu-toggle { display: inline-flex; }
    .lk-header-tools { gap: 6px; }
    .lk-tool-btn { width: 40px; height: 40px; }

    .lk-about { padding: 50px 0 40px; }
    .lk-about-grid { flex-direction: column; gap: 36px; }
    .lk-about-media { max-width: 100%; order: -1; }
    .lk-about-title { font-size: 24px; }
    .lk-about-text { font-size: 14px; }
    .lk-about-points li { font-size: 14px; }
    .lk-video-play { width: 64px; height: 64px; }
    .lk-video-play-icon { width: 56px; height: 56px; font-size: 24px; }
    .lk-video-pulse { width: 56px; height: 56px; }
    .lk-video-close { top: -16px; right: -16px; width: 38px; height: 38px; font-size: 16px; }
    .lk-banner-arrow { width: 42px; height: 42px; font-size: 18px; }
    .lk-banner-prev { left: 12px; }
    .lk-banner-next { right: 12px; }
    .lk-banner-dots { bottom: 16px; }
    .lk-banner-scroll { display: none; }

    .lk-categories { padding: 50px 0; }
    .lk-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .lk-cat-label { font-size: 13px; padding: 12px 8px; }

    .lk-why { padding: 60px 0; background-attachment: scroll; }
    .lk-why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .lk-why-head { margin-bottom: 40px; }
    .lk-why-card { padding: 32px 20px; }

    .lk-hot { padding: 60px 0; }
    .lk-hot-item { flex: 0 0 calc((100% - 40px) / 3); }

    .lk-pl-grid { grid-template-columns: 1fr; }
    .lk-pl-grid-wrap { grid-template-columns: repeat(3, 1fr); }

    .lk-pd-grid { grid-template-columns: 1fr; }
    .lk-pd-top { grid-template-columns: 1fr; gap: 24px; }
    .lk-app { padding: 60px 0; }
    .lk-app-grid { gap: 20px; }

    .lk-ab-page { padding: 50px 0 60px; }
    .lk-ab-grid { grid-template-columns: 1fr; gap: 36px; }
    .lk-ab-video { position: static; top: auto; }

    .lk-stats { padding: 40px 0 44px; }
    .lk-stats-bg { background-attachment: scroll; }
    .lk-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .lk-stat-item { padding: 30px 20px 26px; }
    .lk-stat-icon { width: 56px; height: 56px; font-size: 24px; margin-bottom: 16px; }
    .lk-stat-num { font-size: 44px; }

    .lk-cap { padding: 60px 0; }
    .lk-cap .w-90 { gap: 0; }
    .lk-cap-item { gap: 36px; }
    .lk-cap-title { font-size: 22px; }
    .lk-cap-text { font-size: 14px; line-height: 1.75; }

    .lk-fc-grid { grid-template-columns: repeat(3, 1fr); }
    .lk-fc-head-title { font-size: 26px; }

    .lk-zs-grid { grid-template-columns: repeat(4, 1fr); }
    .lk-zs-head-title { font-size: 26px; }

    .lk-nl-head-title { font-size: 26px; }
    .lk-nl-item-link { gap: 20px; }
    .lk-nl-img { flex: 0 0 240px; }
    .lk-nl-body { padding: 24px 24px 24px 0; }
    .lk-nl-title { font-size: 19px; }

    .lk-nd-title { font-size: 28px; }
    .lk-nd-content { font-size: 15px; line-height: 1.8; }
    .lk-nd-prevnext { gap: 16px; }

    .lk-faq-page { padding: 50px 0 60px; }
    .lk-faq-head-title { font-size: 26px; }
    .lk-faq-q { padding: 18px 22px; gap: 14px; }
    .lk-faq-q-text { font-size: 15px; }
    .lk-faq-a-inner { margin: 0 22px; padding: 16px 0 20px; }
    .lk-faq-cta { padding: 36px 28px; }
    .lk-faq-cta-title { font-size: 22px; }

    .lk-ct-info-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lk-ct-info-card { padding: 28px 22px 24px; }
    .lk-ct-info-icon { width: 56px; height: 56px; font-size: 24px; }

    .lk-ct-main { padding: 50px 0 60px; }
    .lk-ct-main-grid { grid-template-columns: 1fr; gap: 36px; }
    .lk-ct-content-title { font-size: 26px; }
    .lk-ct-cta-card { padding: 36px 30px; }
    .lk-ct-cta-title { font-size: 24px; }

    .lk-search-page { padding: 40px 0 60px; }
    .lk-search-toolbar { flex-wrap: wrap; gap: 16px; padding: 18px 20px; }
    .lk-search-form { flex: 1 1 280px; }
    .lk-search-grid { grid-template-columns: repeat(3, 1fr); }

    .lk-cta-card { padding: 0 0 60px; }
    .lk-cta-card-box { padding: 48px 40px; gap: 28px; border-radius: 16px; }
    .lk-cta-card-title { font-size: 28px; }
    .lk-cta-card-text { font-size: 15px; }
    .lk-cta-card-btn { padding: 15px 30px; font-size: 15px; }

    .lk-news { padding: 60px 0; }
    .lk-news-grid { grid-template-columns: 1fr; gap: 24px; }
    .lk-news-head { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .lk-news-head-left { text-align: center; }
    .lk-news-feature-body { padding: 20px 22px 24px; }
    .lk-news-feature-title { font-size: 19px; }
    .lk-news-feature-img { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
    .lk-news-compact { flex: none; }

    .lk-cta { padding: 50px 0; background-attachment: scroll; }

    .lk-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lk-footer-about { grid-column: 1 / -1; }
    .lk-footer-top { padding: 50px 0 36px; }
}

/* Mobile */
@media (max-width: 768px) {
    .lk-header-inner { min-height: 64px; }
    .lk-logo img { height: 38px; }
    .lk-logo-text strong { font-size: 16px; }
    .lk-logo-text em { display: none; }

    .lk-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lk-cat-label { font-size: 13px; padding: 10px 6px; }

    .lk-why-card { padding: 28px 16px; }
    .lk-why-icon { width: 56px; height: 56px; font-size: 24px; }
    .lk-why-card-title { font-size: 16px; }
    .lk-why-card-text { font-size: 13px; }

    .lk-hot-item { flex: 0 0 calc((100% - 20px) / 2); }
    .lk-hot-wrap { gap: 12px; }
    .lk-hot-arrow { display: none; }
    .lk-hot-name { font-size: 14px; }

    .lk-page-banner { height: 300px; }
    .lk-page-banner-title { font-size: 26px; }

    .lk-breadcrumb { padding: 10px 0 12px; }
    .lk-breadcrumb-row { gap: 6px 0; }
    .lk-breadcrumb-sub { flex-basis: 100%; padding-top: 10px; margin-top: 4px; border-top: 1px dashed var(--lk-line); }
    .lk-breadcrumb-sub ul { gap: 6px; }
    .lk-breadcrumb-sub a { padding: 6px 12px; font-size: 13px; }

    .lk-fc-page { padding: 40px 0 56px; }
    .lk-fc-head { margin-bottom: 28px; }
    .lk-fc-head-title { font-size: 22px; }
    .lk-fc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lk-fc-overlay { padding: 12px; opacity: 1; background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 50%); }
    .lk-fc-zoom { display: none; }
    .lk-fc-title { font-size: 12px; }
    .lk-fc-lightbox-close,
    .lk-fc-lightbox-prev,
    .lk-fc-lightbox-next { width: 40px; height: 40px; font-size: 16px; }
    .lk-fc-lightbox-close { top: 12px; right: 12px; }
    .lk-fc-lightbox-prev { left: 16px; top: auto; bottom: 24px; transform: none; }
    .lk-fc-lightbox-next { right: 16px; top: auto; bottom: 24px; transform: none; }
    .lk-fc-lightbox-counter { top: 16px; font-size: 13px; }
    .lk-fc-lightbox-caption { font-size: 14px; margin-top: 10px; padding: 0 12px; }

    .lk-zs-page { padding: 40px 0 56px; }
    .lk-zs-head { margin-bottom: 28px; }
    .lk-zs-head-title { font-size: 22px; }
    .lk-zs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .lk-nl-page { padding: 40px 0 56px; }
    .lk-nl-head { margin-bottom: 28px; }
    .lk-nl-head-title { font-size: 22px; }
    .lk-nl-list { gap: 16px; margin-bottom: 30px; }
    .lk-nl-item-link { flex-direction: column; gap: 0; }
    .lk-nl-img { flex: none; aspect-ratio: 16 / 9; }
    .lk-nl-body { padding: 20px; }
    .lk-nl-title { font-size: 17px; }
    .lk-nl-desc { -webkit-line-clamp: 2; line-clamp: 2; }
    .lk-nl-pagination .page-num,
    .lk-nl-pagination .page-pre,
    .lk-nl-pagination .page-next,
    .lk-nl-pagination .page-last,
    .lk-nl-pagination .page-index { min-width: 36px; height: 36px; padding: 0 10px; font-size: 13px; }

    .lk-nd-page { padding: 36px 0 50px; }
    .lk-nd-article { margin-bottom: 30px; }
    .lk-nd-title { font-size: 24px; margin-bottom: 20px; }
    .lk-nd-hero { aspect-ratio: 16 / 10; margin-bottom: 24px; }
    .lk-nd-meta { gap: 12px; font-size: 12px; margin-bottom: 16px; }
    .lk-nd-content h2 { font-size: 22px; }
    .lk-nd-content h3 { font-size: 19px; }
    .lk-nd-content h4 { font-size: 16px; }
    .lk-nd-content p { margin-bottom: 14px; }
    .lk-nd-prevnext { grid-template-columns: 1fr; gap: 12px; }
    .lk-nd-next { text-align: left; align-items: flex-start; }
    .lk-nd-prevnext-title { font-size: 14px; }
    .lk-nd-tags { margin-top: 24px; padding-top: 20px; gap: 8px; }

    .lk-faq-page { padding: 40px 0 56px; }
    .lk-faq-head { margin-bottom: 28px; }
    .lk-faq-head-title { font-size: 22px; }
    .lk-faq-list { gap: 10px; margin-bottom: 30px; }
    .lk-faq-q { padding: 16px 18px; gap: 12px; }
    .lk-faq-q-icon { flex: 0 0 32px; width: 32px; height: 32px; font-size: 14px; }
    .lk-faq-q-text { font-size: 14px; }
    .lk-faq-a-inner { margin: 0 18px; padding: 14px 0 18px; gap: 12px; }
    .lk-faq-a-icon { flex: 0 0 32px; width: 32px; height: 32px; font-size: 14px; }
    .lk-faq-a-text { font-size: 14px; }
    .lk-faq-cta { padding: 30px 20px; }
    .lk-faq-cta-title { font-size: 20px; }
    .lk-faq-cta-text { font-size: 14px; margin-bottom: 18px; }
    .lk-faq-cta-btn { padding: 12px 26px; font-size: 13px; }

    .lk-ct-info { padding: 40px 0 36px; }
    .lk-ct-info-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .lk-ct-info-card { padding: 22px 16px 20px; }
    .lk-ct-info-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 14px; border-radius: 12px; }
    .lk-ct-info-label { font-size: 12px; letter-spacing: .8px; margin-bottom: 8px; }
    .lk-ct-info-value { font-size: 14.5px; }
    .lk-ct-info-sub { font-size: 12px; }

    .lk-ct-main { padding: 40px 0 56px; }
    .lk-ct-main-grid { gap: 28px; }
    .lk-ct-content-title { font-size: 22px; margin: 12px 0 14px; }
    .lk-ct-content-text { font-size: 14px; margin-bottom: 22px; }
    .lk-ct-points { grid-template-columns: 1fr; gap: 16px; }
    .lk-ct-points-body strong { font-size: 14px; }
    .lk-ct-points-body span { font-size: 13px; }
    .lk-ct-cta-card { padding: 30px 24px; border-radius: 14px; }
    .lk-ct-cta-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 18px; border-radius: 12px; }
    .lk-ct-cta-title { font-size: 22px; }
    .lk-ct-cta-text { font-size: 14px; margin-bottom: 22px; }
    .lk-ct-cta-btn { padding: 12px 26px; font-size: 14px; margin-bottom: 22px; }
    .lk-ct-cta-meta { padding-top: 18px; gap: 8px; }
    .lk-ct-cta-meta li { font-size: 12.5px; }

    .lk-search-page { padding: 36px 0 50px; }
    .lk-search-toolbar { margin-bottom: 22px; }
    .lk-search-keyword { font-size: 16px; }
    .lk-search-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .lk-search-empty { padding: 40px 20px 30px; }
    .lk-search-empty-icon { width: 72px; height: 72px; font-size: 32px; margin-bottom: 18px; }
    .lk-search-empty-title { font-size: 20px; }
    .lk-search-empty-text { font-size: 14px; margin-bottom: 22px; }
    .lk-search-empty-btn { padding: 11px 24px; font-size: 13px; }

    .lk-pl-page { padding: 36px 0; }
    .lk-pl-grid-wrap { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .lk-pd-page { padding: 36px 0; }
    .lk-pd-main-img { margin-bottom: 10px; }
    .lk-pd-thumbs { gap: 8px; }
    .lk-pd-title { font-size: 20px; }
    .lk-pd-attrs th { width: 100px; }

    .lk-ab-page { padding: 40px 0 50px; }
    .lk-ab-grid { gap: 30px; }
    .lk-ab-title { font-size: 22px; }
    .lk-ab-text { font-size: 14px; line-height: 1.75; }
    .lk-ab-points li { font-size: 14px; }
    .lk-ab-btn { padding: 12px 22px; font-size: 14px; }
    .lk-ab-video-tag { top: 18px; left: 18px; font-size: 11px; padding: 5px 12px; }
    .lk-ab-video-caption { padding: 12px 16px; font-size: 12px; }

    .lk-stats { padding: 36px 0 40px; }
    .lk-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .lk-stat-item { padding: 24px 16px 22px; }
    .lk-stat-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 12px; }
    .lk-stat-num { font-size: 34px; margin-bottom: 8px; }
    .lk-stat-label { font-size: 14px; margin-bottom: 6px; }
    .lk-stat-desc { font-size: 12px; line-height: 1.5; }

    .lk-cap { padding: 42px 0; }
    .lk-cap .w-90 { gap: 42px; }
    .lk-cap-item { flex-direction: column; gap: 18px; align-items: stretch; }
    .lk-cap-media { flex: none; max-width: 100%; width: 100%; aspect-ratio: 4 / 3; }
    .lk-cap-body { text-align: left; }
    .lk-cap-title { justify-content: flex-start; font-size: 19px; margin: 0 0 12px; }
    .lk-cap-text { font-size: 14px; line-height: 1.75; margin: 0 0 10px; }
    .lk-cap-slogan { font-size: 13px; padding: 12px 14px; margin: 16px 0 0; justify-content: flex-start; }

    .lk-cta-card { padding: 0 0 46px; }
    .lk-cta-card-box { flex-direction: column; align-items: stretch; padding: 38px 26px; gap: 24px; border-radius: 14px; }
    .lk-cta-card-content { max-width: 100%; }
    .lk-cta-card-title { font-size: 23px; margin: 0 0 12px; }
    .lk-cta-card-text { font-size: 14px; }
    .lk-cta-card-btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 15px; }

    .lk-app { padding: 50px 0; }
    .lk-app-grid { grid-template-columns: 1fr; gap: 16px; }
    .lk-app-img { aspect-ratio: 16 / 9; }
    .lk-app-num { font-size: 32px; top: 16px; left: 20px; }
    .lk-app-overlay { padding: 24px 20px; background: linear-gradient(to top, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .5) 50%, rgba(15, 23, 42, .1) 100%); }
    .lk-app-title { font-size: 18px; }
    .lk-app-text { font-size: 13px; opacity: 1; max-height: 120px; margin: 10px 0 0; color: rgba(255, 255, 255, .85); }
    .lk-app-link { opacity: 1; transform: translateY(0); margin-top: 14px; }

    .lk-news { padding: 50px 0; }
    .lk-news-compact { padding: 16px; gap: 14px; }
    .lk-news-compact-img { flex: 0 0 130px; }
    .lk-news-compact-title { font-size: 14px; }

    .lk-cta { padding: 44px 0; }
    .lk-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
    .lk-cta-right { flex-direction: row; justify-content: center; }
    .lk-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
    .lk-quote-row { flex-direction: column; gap: 0; }
    .lk-quote-box { padding: 28px 24px 24px; }
    .lk-quote-title { font-size: 20px; }

    .lk-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lk-footer-top { padding: 40px 0 28px; }
    .lk-footer-bottom-inner { flex-direction: column; text-align: center; }

    .lk-banner-arrow { display: none; }
    .lk-banner-dots { bottom: 14px; padding: 5px 10px; }
    .lk-banner-dot { width: 22px; }
    .lk-banner-dot.is-active { width: 34px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .lk-mobile-drawer { width: 92%; }
    .lk-why-grid { grid-template-columns: 1fr; }

    .lk-news-compact { flex-direction: column; gap: 12px; }
    .lk-news-compact-img { flex: none; width: 100%; aspect-ratio: 16 / 9; }
    .lk-news-feature-title { font-size: 17px; }
    .lk-news-feature-body { padding: 18px 18px 22px; }

    .lk-pl-grid-wrap { grid-template-columns: 1fr; }
    .lk-pl-pagination { gap: 4px; }
    .lk-pl-page-btn,
    .lk-pl-page-num { min-width: 36px; height: 36px; font-size: 13px; }

    .lk-search-page { padding: 30px 0 40px; }
    .lk-search-toolbar { padding: 16px; }
    .lk-search-keyword { font-size: 15px; }
    .lk-search-grid { grid-template-columns: 1fr; gap: 14px; }
    .lk-search-empty { padding: 32px 16px 24px; }
    .lk-search-empty-icon { width: 64px; height: 64px; font-size: 28px; margin-bottom: 16px; }
    .lk-search-empty-title { font-size: 18px; }
    .lk-search-empty-text { font-size: 13.5px; line-height: 1.6; }

    .lk-cta-title { font-size: 22px; }
    .lk-cta-text { font-size: 14px; }
    .lk-quote-close { top: 8px; right: 8px; width: 34px; height: 34px; font-size: 15px; }

    .lk-quote-captcha-img { width: 88px; height: 38px; }
    .lk-quote-captcha-refresh { width: 38px; height: 38px; font-size: 15px; }
    .lk-quote-toast { top: 16px; min-width: 240px; padding: 12px 18px; font-size: 13px; }

    .lk-footer-social a { width: 34px; height: 34px; font-size: 14px; }
}

/* Accessibility - reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lk-banner-slide,
    .lk-banner-media img,
    .lk-banner-scroll span {
        transition: none !important;
        animation: none !important;
    }
}

/* Print friendliness */
@media print {
    .lk-topbar, .lk-header, .lk-mobile-panel, .lk-search-overlay, .lk-footer { display: none !important; }
    .lk-banner { page-break-after: always; }
}

/* 分页样式 */
.frontier-paging { margin-top: 50px; }
.frontier-paging ul { display: inline-block; vertical-align: bottom; }
.frontier-paging ul span, 
.frontier-paging ul a { display: block; float: left; margin: auto 2px; padding: 4px 12px; background: #FFF; box-shadow: 0 0 8px rgba(0,0,0,0.07); border-radius: 2px; font-size: 14px; color: #999; }
.frontier-paging ul a.page-num-current,
.frontier-paging ul a:hover { background: #197c09; color: #FFF; }