:root {
    --white: #ffffff;
    --purple: var(--lj-primary);
    --dark: #1e1e2f;
    --text: var(--lj-text);
    --text-soft: var(--lj-text-soft);
    --line: rgba(var(--lj-primary-rgb), 0.12);
    --glass: rgba(255, 255, 255, 0.62);
    --shadow: 0 20px 48px rgba(25, 58, 118, 0.12);
    --card-bg: rgba(255, 255, 255, 0.74);
    --gradient: var(--lj-primary-gradient);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--lj-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark-mode {
    --white: #111425;
    --text: #f1f3ff;
    --text-soft: #b8bed8;
    --line: rgba(147, 197, 253, 0.35);
    --glass: rgba(20, 23, 40, 0.72);
    --shadow: 0 24px 54px rgba(5, 9, 20, 0.45);
    --card-bg: rgba(26, 31, 54, 0.76);
    background: radial-gradient(circle at 15% 10%, rgba(59,130,246,0.26) 0%, rgba(59,130,246,0) 45%),
                radial-gradient(circle at 88% 90%, rgba(56,189,248,0.15) 0%, rgba(56,189,248,0) 45%),
                #0f1323;
}

/* Dark mode: remove light/white panel backgrounds */
body.dark-mode .glass-nav.scrolled {
    background: rgba(14, 18, 34, 0.92);
    border-color: rgba(99, 159, 255, 0.25);
}
body.dark-mode .glass-nav.scrolled .logo,
body.dark-mode .glass-nav.scrolled .nav-links a,
body.dark-mode .glass-nav.scrolled .nav-member-name,
body.dark-mode .glass-nav.scrolled .nav-member-link,
body.dark-mode .glass-nav.scrolled .mode-toggle {
    color: #e8eeff;
}
body.dark-mode .glass-nav.scrolled .nav-member-user,
body.dark-mode .glass-nav.scrolled .mode-toggle,
body.dark-mode .glass-nav.scrolled .nav-sms-icon,
body.dark-mode .glass-nav.scrolled .nav-member-menu {
    background: rgba(28, 35, 58, 0.9);
    border-color: rgba(126, 173, 255, 0.35);
}

body.dark-mode .stats {
    background: rgba(21, 28, 48, 0.9);
}
body.dark-mode .stat-card {
    border-right-color: rgba(126, 173, 255, 0.2);
}
body.dark-mode .stat-num {
    color: #dbe9ff;
}
body.dark-mode .stat-label {
    color: #9fb3d9;
}

body.dark-mode .service-card,
body.dark-mode .case-item,
body.dark-mode .team-item {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
}
body.dark-mode .service-copy h3,
body.dark-mode .case-item-copy h3 {
    color: #dbe9ff;
}
body.dark-mode .case-item-copy p,
body.dark-mode .case-item-date,
body.dark-mode .team-role {
    color: #9fb3d9;
}
body.dark-mode .team-name,
body.dark-mode .team-more {
    color: #dbe9ff;
}
body.dark-mode .case-item-btn {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(126, 173, 255, 0.35);
    color: #dbe9ff;
}

body.dark-mode .contact-wechat-qrcode img {
    background: rgba(21, 28, 48, 0.95);
    border: 1px solid rgba(126, 173, 255, 0.35);
}

body.dark-mode .floating-trigger {
    background: rgba(22, 30, 52, 0.95);
    border-color: rgba(126, 173, 255, 0.35);
    color: #dbe9ff;
}

.container {
    width: min(1260px, calc(100% - 56px));
    margin: 0 auto;
}

.section { padding: 46px 0; }
.section-title {
    font-size: 30px;
    line-height: 1.18;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    text-align: center;
}
.section-desc {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px max(16px, calc((100% - 1260px) / 2));
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    background: rgba(35, 94, 190, 0.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(24, 62, 132, 0.16);
    transition: background .25s ease, border-color .25s ease, top .25s ease;
}
.glass-nav.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.2);
}
.is-inner-page .glass-nav {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.2);
}
.is-inner-page .glass-nav .logo,
.is-inner-page .glass-nav .nav-links a,
.is-inner-page .glass-nav .nav-member-name,
.is-inner-page .glass-nav .nav-member-link {
    color: #1f3d71;
}
.is-inner-page .glass-nav .nav-links a.is-active {
    color: #2f7bf0;
}
.is-inner-page .glass-nav .nav-drawer-toggle {
    background: #fff;
    border: 1px solid #dce8f7;
}
.is-inner-page .glass-nav .nav-drawer-toggle span {
    background: #1f3d71;
}
.page-nav-placeholder {
    height: 64px;
    background: transparent;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}
.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(22, 18, 64, 0.26);
}
.logo-dot {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
}
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a.is-active {
    color: #ffffff;
    font-weight: 700;
}
.glass-nav.scrolled .logo,
.glass-nav.scrolled .nav-links a,
.glass-nav.scrolled .nav-member-name,
.glass-nav.scrolled .nav-member-link {
    color: #1f3d71;
}
.glass-nav.scrolled .logo-img {
    box-shadow: 0 4px 12px rgba(22, 18, 64, 0.14);
}
.glass-nav.scrolled .nav-links a.is-active {
    color: #1f5fd1;
}
.glass-nav.scrolled .nav-sms-icon {
    color: #2f7bf0 !important;
    border-color: rgba(47, 123, 240, 0.3);
    background: rgba(47, 123, 240, 0.1);
    box-shadow: none;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mode-toggle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
}
.nav-drawer-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
    padding: 0;
    cursor: pointer;
}
.nav-drawer-toggle span {
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}
.glass-nav.scrolled .nav-drawer-toggle {
    border-color: rgba(47, 123, 240, 0.3);
    background: rgba(47, 123, 240, 0.1);
}
.glass-nav.scrolled .nav-drawer-toggle span {
    background: #2f7bf0;
}
.nav-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 10, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
    z-index: 74;
}
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100vh;
    background: rgba(24, 45, 104, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: -12px 0 26px rgba(10, 7, 31, 0.28);
    transform: translateX(100%);
    transition: transform .24s ease;
    z-index: 75;
    display: flex;
    flex-direction: column;
}
.nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-drawer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.nav-drawer-close {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.nav-drawer-body {
    padding: 12px;
    overflow-y: auto;
}
.nav-drawer-group-title {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: .06em;
    margin: 6px 10px 8px;
}
.nav-drawer-group-toggle {
    width: calc(100% - 8px);
    margin: 6px 4px 8px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
}
.nav-drawer-group-caret {
    transition: transform .2s ease;
}
.nav-drawer-group-body {
    display: block;
}
.nav-drawer-group-body.is-collapsed {
    display: none;
}
.nav-drawer-group-toggle[aria-expanded="false"] .nav-drawer-group-caret {
    transform: rotate(-180deg);
}
.nav-drawer-body a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    font-size: 14px;
}
.nav-drawer-body a:hover,
.nav-drawer-body a.is-active {
    background: rgba(255,255,255,.12);
}
.nav-drawer-user {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    margin: 4px 4px 10px;
}
.nav-drawer-user img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-drawer-user-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
.nav-drawer-user-id {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    margin-top: 2px;
}
.nav-drawer-split {
    height: 1px;
    margin: 8px 4px;
    background: rgba(255,255,255,.16);
}
body.nav-drawer-open {
    overflow: hidden;
}
body.nav-drawer-open .nav-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
body.nav-drawer-open .nav-drawer {
    transform: translateX(0);
}
.nav-right .nav-sms-icon,
.nav-right .nav-sms-icon:link,
.nav-right .nav-sms-icon:visited,
.nav-right .nav-sms-icon:hover,
.nav-right .nav-sms-icon:active {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}
.nav-right .nav-sms-icon:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.18);
}
.nav-right .nav-sms-icon:focus-visible {
    outline: 2px solid rgba(123, 173, 242, 0.95);
    outline-offset: 2px;
}
.nav-right .nav-sms-glyph {
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #eaf3ff !important;
}
.glass-nav.scrolled .nav-right .nav-sms-glyph {
    color: #2f7bf0 !important;
}
/* 强制覆盖：防止后加载样式把私信图标改成普通链接 */
#nav .nav-right > a.nav-sms-icon,
#nav .nav-right > a.nav-sms-icon:link,
#nav .nav-right > a.nav-sms-icon:visited,
#nav .nav-right > a.nav-sms-icon:hover,
#nav .nav-right > a.nav-sms-icon:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    background: rgba(255,255,255,.12) !important;
    text-decoration: none !important;
    line-height: 1 !important;
}
#nav.glass-nav.scrolled .nav-right > a.nav-sms-icon {
    border-color: rgba(47, 123, 240, 0.3) !important;
    background: rgba(47, 123, 240, 0.1) !important;
}
#nav .nav-right > a.nav-sms-icon .nav-sms-glyph {
    color: #eaf3ff !important;
    -webkit-text-fill-color: #eaf3ff !important;
}
#nav.glass-nav.scrolled .nav-right > a.nav-sms-icon .nav-sms-glyph {
    color: #2f7bf0 !important;
    -webkit-text-fill-color: #2f7bf0 !important;
}
.nav-sms-icon.has-unread {
    border-color: rgba(147, 197, 253, 0.95);
    background: rgba(96, 165, 250, 0.18);
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
    animation: navSmsPulse 1.8s ease-in-out infinite;
}
.glass-nav.scrolled .nav-sms-icon.has-unread {
    border-color: rgba(123, 173, 242, 0.95);
    background: rgba(96, 165, 250, 0.14);
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.16);
}
.nav-sms-num {
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4a90f4, #2f7bf0);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.38);
}
.nav-sms-num:empty {
    display: none;
}
@keyframes navSmsPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}
@media (prefers-reduced-motion: reduce) {
    .nav-sms-icon.has-unread {
        animation: none;
    }
}
.phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 14px;
}
.nav-member {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.nav-member-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.nav-member-caret {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform .2s ease;
}
.glass-nav.scrolled .nav-member-caret {
    color: #1f5fd1;
}
.nav-member-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.nav-member-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-member-group {
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 12px;
}
.nav-member-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-member-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 230px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(27, 52, 120, 0.94);
    box-shadow: 0 14px 30px rgba(18, 44, 102, 0.24);
    padding: 8px;
    display: none;
    z-index: 80;
}
.nav-member-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 7px 8px;
    border-radius: 8px;
}
.nav-member-meta {
    margin: 2px 2px 8px;
    padding: 8px 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}
.nav-member-meta-name {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-member-meta-item {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.65;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-admin-badge {
    display: inline-block;
    border-radius: 999px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 110, 73, 0.88);
}
.nav-member-menu a:hover {
    background: rgba(255, 255, 255, 0.14);
}
.nav-member-login.is-open .nav-member-menu {
    display: block;
}
.nav-member-login.is-open .nav-member-caret {
    transform: rotate(180deg);
}
.nav-member-link {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 13px;
}
.nav-member-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}
.glass-nav.scrolled .nav-member-avatar {
    border-color: rgba(59, 130, 246, 0.32);
}
.glass-nav.scrolled .nav-member-group {
    color: #1f5fd1;
    border-color: rgba(59, 130, 246, 0.28);
}
.glass-nav.scrolled .nav-member-menu {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(59, 130, 246, 0.24);
    box-shadow: 0 12px 28px rgba(22, 18, 64, 0.14);
}
.glass-nav.scrolled .nav-member-menu a {
    color: #1f3d71;
}
.glass-nav.scrolled .nav-member-meta {
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.08);
}
.glass-nav.scrolled .nav-member-meta-name {
    color: #1f3d71;
}
.glass-nav.scrolled .nav-member-meta-item {
    color: #4b6288;
}
.glass-nav.scrolled .nav-member-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
}

.hero {
    min-height: var(--hero-height, 500px);
    position: relative;
    overflow: hidden;
    padding-top: 92px;
    background: linear-gradient(180deg, #2b6fdf, #235ec3);
}
@media (min-width: 1025px) {
    .hero {
        min-height: 50vh;
    }
}
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-slide {
    position: absolute;
    inset: -2%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.1s ease, transform 7s linear;
    will-change: opacity, transform;
}
.hero-bg-slide.is-active {
    opacity: 1;
    transform: scale(1.04);
}
.hero-bg-slide-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-bg-slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(147, 197, 253, 0.45), transparent 38%),
        radial-gradient(circle at 80% 60%, rgba(59, 130, 246, 0.35), transparent 40%),
        linear-gradient(180deg, rgba(30, 64, 175, 0.5), rgba(29, 78, 216, 0.58));
}
.hero-bg-slide-1 {
    background:
        radial-gradient(circle at 28% 20%, rgba(147, 197, 253, .5), transparent 38%),
        radial-gradient(circle at 84% 56%, rgba(37, 99, 235, .42), transparent 41%),
        linear-gradient(180deg, #2f7bf0, #235ec3);
}
.hero-bg-slide-2 {
    background:
        radial-gradient(circle at 18% 40%, rgba(96, 165, 250, .42), transparent 36%),
        radial-gradient(circle at 76% 24%, rgba(147, 197, 253, .32), transparent 35%),
        linear-gradient(180deg, #2b6fdf, #1f4fa8);
}
.hero-bg-slide-3 {
    background:
        radial-gradient(circle at 64% 22%, rgba(147, 197, 253, .34), transparent 36%),
        radial-gradient(circle at 26% 72%, rgba(59, 130, 246, .42), transparent 38%),
        repeating-radial-gradient(circle at 50% 120%, rgba(255,255,255,.05) 0 2px, transparent 2px 8px),
        linear-gradient(180deg, #2f7bf0, #2b6fdf);
}
.hero .container::before {
    content: "";
    position: absolute;
    inset: -20px 0 auto 0;
    height: 160px;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 8% 18%, rgba(255,255,255,.65) 1.1px, transparent 1.2px),
        radial-gradient(circle at 20% 52%, rgba(255,255,255,.46) 1.1px, transparent 1.2px),
        radial-gradient(circle at 35% 26%, rgba(255,255,255,.5) 1.1px, transparent 1.2px),
        radial-gradient(circle at 57% 34%, rgba(255,255,255,.52) 1.1px, transparent 1.2px),
        radial-gradient(circle at 79% 22%, rgba(255,255,255,.56) 1.1px, transparent 1.2px),
        radial-gradient(circle at 93% 48%, rgba(255,255,255,.43) 1.1px, transparent 1.2px);
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 96%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
}
.hero::before {
    bottom: 78px;
    height: 120px;
}
.hero::after {
    bottom: 42px;
    height: 84px;
    border-color: rgba(255, 255, 255, 0.18);
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: var(--hero-content-offset, 0);
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 40px;
    min-height: calc(var(--hero-height, 500px) - 116px);
}
.hero-copy {
    max-width: 620px;
}
#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.6vw, 66px);
    line-height: 1.16;
    letter-spacing: -0.03em;
    text-align: left;
}
.hero h1 .accent { color: #ffffff; }
.hero p {
    margin: 18px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
    text-align: left;
}
.hero-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(236, 246, 255, 0.9);
    font-size: 14px;
}
.hero-phone i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 320px;
}
.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(140deg, rgba(191, 219, 254, 0.4), rgba(107, 167, 247, 0.2));
    border: 1px solid rgba(191, 219, 254, 0.44);
    box-shadow: 0 10px 20px rgba(35, 94, 190, 0.18);
}
.hero-visual::before {
    width: 26px;
    height: 26px;
    right: 18px;
    top: 30px;
    transform: rotate(22deg);
}
.hero-visual::after {
    width: 16px;
    height: 16px;
    left: 30px;
    bottom: 52px;
    transform: rotate(-16deg);
}
.hero-orbit {
    position: absolute;
    inset: 12% 3% 8% 14%;
    border-radius: 50%;
    border: 1px solid rgba(191, 219, 254, 0.32);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotate(-9deg);
    animation: heroOrbitSpin 22s linear infinite;
}
.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(191, 219, 254, 0.26);
}
.hero-orbit::before {
    inset: 16% 10%;
}
.hero-orbit::after {
    inset: 30% 22%;
}
.hero-device {
    width: min(520px, 100%);
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    transform: perspective(1100px) rotateY(-18deg) rotateX(8deg);
    background: linear-gradient(155deg, #1a2436, #0f172a 62%, #0b1220 100%);
    border: 1px solid rgba(148, 163, 184, 0.26);
    box-shadow: 0 24px 54px rgba(2, 8, 23, 0.45);
    padding: 16px;
    position: relative;
    z-index: 2;
    animation: heroDeviceFloat 6s ease-in-out infinite;
}
.hero-device::before {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    right: -22px;
    top: -18px;
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.72));
    border: 1px solid rgba(148, 163, 184, 0.24);
}
.hero-device::after {
    content: "";
    position: absolute;
    left: 18px;
    right: -18px;
    bottom: -18px;
    height: 24px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.55), rgba(15, 23, 42, 0.28));
    border: 1px solid rgba(148, 163, 184, 0.22);
    transform: skewX(-28deg);
    filter: blur(0.2px);
}
.hero-device-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% -8%, rgba(148, 163, 184, 0.16), transparent 34%),
        linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
    border: 1px solid rgba(148, 163, 184, 0.28);
    overflow: hidden;
    position: relative;
}
.hero-code-topbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: linear-gradient(180deg, #1f2937, #111827);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    z-index: 3;
}
.hero-code-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.hero-code-dot-red { background: #ff5f56; }
.hero-code-dot-yellow { background: #ffbd2e; }
.hero-code-dot-green { background: #27c93f; }
.hero-code-file {
    margin-left: 8px;
    color: #cbd5e1;
    font-size: 11px;
    letter-spacing: 0.01em;
}
.hero-code-status {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #93c5fd;
    font-size: 10px;
    letter-spacing: 0.08em;
}
.hero-code-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42);
    animation: heroStatusPulse 1.6s ease-out infinite;
}
.hero-device-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(148, 163, 184, 0.1), transparent 46%),
        linear-gradient(110deg, rgba(255,255,255,0.06) 0 12%, transparent 24% 100%);
    pointer-events: none;
}
.hero-device-screen::after {
    content: "";
    position: absolute;
    left: -22%;
    top: -8%;
    width: 36%;
    height: 124%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.08), rgba(255,255,255,0));
    transform: rotate(12deg);
    animation: heroScreenScan 4.6s ease-in-out infinite;
    pointer-events: none;
}
.hero-device-code {
    position: absolute;
    inset: 38px 16px 16px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(0deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96));
    border: 1px solid rgba(100, 116, 139, 0.2);
    opacity: 1;
}
.hero-code-text {
    position: absolute;
    inset: 18px 20px;
    margin: 0;
    color: #d1d5db;
    font-family: "Consolas", "SFMono-Regular", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    text-shadow: none;
    white-space: pre;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 116, 139, 0.62) transparent;
}
.hero-code-text code {
    font-family: inherit;
    display: block;
    min-height: 135%;
    animation: heroCodeScroll 14s ease-in-out infinite alternate;
}
.hero-device-code:hover .hero-code-text code {
    animation-play-state: paused;
}
.hero-code-text::-webkit-scrollbar {
    width: 6px;
}
.hero-code-text::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.6);
}
.hero-code-line {
    display: block;
    animation: heroCodeLineIn .8s ease both;
}
.hero-code-line:nth-child(1) { animation-delay: .06s; }
.hero-code-line:nth-child(2) { animation-delay: .12s; }
.hero-code-line:nth-child(3) { animation-delay: .18s; }
.hero-code-line:nth-child(4) { animation-delay: .24s; }
.hero-code-line:nth-child(5) { animation-delay: .3s; }
.hero-code-line:nth-child(6) { animation-delay: .36s; }
.hero-code-line:nth-child(7) { animation-delay: .42s; }
.hero-code-line:nth-child(8) { animation-delay: .48s; }
.hero-code-line:nth-child(9) { animation-delay: .54s; }
.hero-code-line:nth-child(10) { animation-delay: .6s; }
.hero-code-line:nth-child(11) { animation-delay: .66s; }
.hero-code-line:nth-child(12) { animation-delay: .72s; }
}
.hero-code-ln {
    display: inline-block;
    width: 18px;
    margin-right: 8px;
    color: #64748b;
    user-select: none;
}
.hero-code-k {
    color: #c586c0;
    font-weight: 600;
}
.hero-code-s {
    color: #ce9178;
}
.hero-code-fn {
    color: #dcdcaa;
}
.hero-code-op {
    color: #d4d4d4;
}
.hero-code-caret {
    display: inline-block;
    width: 7px;
    height: 1.05em;
    margin-left: 4px;
    background: #d4d4d4;
    vertical-align: -2px;
    animation: heroCaretBlink 1.05s steps(1) infinite;
}

@keyframes heroCaretBlink {
    0%, 46% { opacity: 1; }
    47%, 100% { opacity: 0; }
}
@keyframes heroDeviceFloat {
    0%, 100% { transform: perspective(1100px) rotateY(-18deg) rotateX(8deg) translateY(0); }
    50% { transform: perspective(1100px) rotateY(-18deg) rotateX(8deg) translateY(-8px); }
}
@keyframes heroOrbitSpin {
    from { transform: rotate(-9deg); }
    to { transform: rotate(351deg); }
}
@keyframes heroScreenScan {
    0% { transform: translateX(-40%) rotate(12deg); opacity: 0; }
    22% { opacity: .75; }
    44% { transform: translateX(250%) rotate(12deg); opacity: 0; }
    100% { transform: translateX(250%) rotate(12deg); opacity: 0; }
}
@keyframes heroCodeLineIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroStatusPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}
@keyframes heroCodeScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-28%); }
}
.hero-device-code::before,
.hero-device-code::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(100, 116, 139, 0.28), rgba(51, 65, 85, 0.14));
}
.hero-device-code::before {
    top: 18%;
}
.hero-device-code::after {
    top: 34%;
}
.btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-primary {
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    color: #fff;
    border-color: transparent;
}
.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 760px;
    margin: -22px auto 0;
    background: #f4f9ff;
    border-radius: 14px;
    overflow: hidden;
}
.stat-card {
    border-radius: 0;
    border: 0;
    border-right: 1px solid #dce8f7;
    background: transparent;
    padding: 16px 10px;
    box-shadow: none;
    text-align: center;
}
.stat-card:last-child {
    border-right: 0;
}
.stat-num {
    font-size: clamp(40px, 4.6vw, 56px);
    font-weight: 800;
    color: #1f3d71;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}
.stat-label {
    color: #5b6f8f;
    font-size: 14px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
#services .section-title {
    display: block;
}
#services .section-desc {
    display: block;
}
#services .container {
    border-bottom: 1px solid #dce8f7;
    padding-bottom: 16px;
}
.service-card {
    border: 1px solid var(--lj-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    min-height: 206px;
    box-shadow: none;
    transition: transform .2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card-3 {
    grid-column: 1 / -1;
}
.service-media {
    position: relative;
    background: linear-gradient(130deg, #eff6ff, #dbeafe);
    overflow: hidden;
}
.service-media::after {
    display: none;
}
.service-media > * {
    position: relative;
    z-index: 2;
}
.service-media .emoji {
    display: none;
}
#services .service-media::before,
#services .service-media::after {
    content: none !important;
    display: none !important;
}
.service-thumb-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 206px;
    object-fit: cover;
    z-index: 1;
    opacity: 0.22;
    filter: saturate(0.95) contrast(1.02);
}
.service-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 206px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #4f6fa8;
}

.service-card-1 .service-media::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 186px;
    border-radius: 20px;
    background: linear-gradient(160deg, #235ec3, #2b6fdf);
    left: 50%;
    top: 14px;
    transform: translateX(-50%) rotate(-13deg);
    box-shadow: 0 18px 34px rgba(38, 29, 96, 0.25);
}
.service-card-1 .service-media::after {
    content: "";
    display: block;
    position: absolute;
    width: 78px;
    height: 164px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #eaf3ff);
    left: 50%;
    top: 24px;
    transform: translateX(-50%) rotate(-13deg);
}

.service-card-2 .service-media::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 130px;
    border-radius: 12px;
    background: linear-gradient(160deg, #235ec3, #2b6fdf);
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    box-shadow: 0 16px 30px rgba(37, 31, 82, 0.3);
}
.service-card-2 .service-media::after {
    content: "";
    display: block;
    position: absolute;
    width: 95px;
    height: 10px;
    border-radius: 8px;
    background: #2f7bf0;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
}

.service-card-3 .service-media {
    background: linear-gradient(120deg, #eff6ff 0 52%, #dbeafe 52% 100%);
}
.service-card-3 .service-media::before {
    content: "";
    position: absolute;
    width: 228px;
    height: 136px;
    border-radius: 11px;
    background: linear-gradient(160deg, #235ec3, #2b6fdf);
    left: 34px;
    top: 36px;
    box-shadow: 0 16px 30px rgba(44, 36, 92, 0.28);
}
.service-card-3 .service-media::after {
    content: "";
    display: block;
    position: absolute;
    width: 82px;
    height: 54px;
    border-radius: 8px;
    background: linear-gradient(160deg, #235ec3, #2f7bf0);
    left: 14px;
    bottom: 12px;
}

.service-card-2 .service-copy {
    order: 1;
}
.service-card-2 .service-media {
    order: 2;
}
.service-copy {
    padding: 20px 20px;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.service-copy h3 {
    margin: 0;
    font-size: 1em;
    letter-spacing: -0.02em;
    color: #172b4d;
}
.service-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 14px;
}
.btn-mini {
    display: inline-flex;
    width: fit-content;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 8px;
    border-color: #1f5fd1;
    background: #1f5fd1;
    color: #fff;
    box-shadow: none;
}

#cases {
    padding-top: 10px;
    padding-bottom: 30px;
}
#cases .container {
    border-bottom: 1px solid #dce8f7;
    padding-bottom: 26px;
}
.cases-shell {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.cases-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    text-align: center;
}
.cases-title {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.18;
    color: #1f3d71;
    text-align: center;
}
body.dark-mode .cases-title {
    color: inherit;
}
.cases-subtitle {
    margin: 8px 0 0;
    color: #5b6f8f;
    font-size: 13px;
    line-height: 1.75;
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.cases-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.case-item {
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(191, 219, 254, 0.62);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 16px rgba(24, 62, 132, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.case-item:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 173, 242, 0.74);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.12);
}
.case-item-media {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 170px;
    position: relative;
    background:
        radial-gradient(circle at 22% 16%, rgba(147, 197, 253, 0.54), transparent 44%),
        linear-gradient(160deg, #4a90f4, #2b6fdf 64%, #235ec3 100%);
}
.case-item-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255,255,255,0.2) 0 2px, transparent 2px 14px),
        linear-gradient(0deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    background-size: 140px 140px, auto;
    opacity: 0.22;
    pointer-events: none;
}
.case-item-media::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(191, 219, 254, 0.42);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    pointer-events: none;
}
.case-item.has-thumb .case-item-media {
    background:
        linear-gradient(180deg, rgba(17, 16, 34, 0.06), rgba(17, 16, 34, 0.14) 40%, rgba(17, 16, 34, 0.52)),
        var(--case-bg);
    background-size: cover;
    background-position: center 30%;
}
.case-item.has-thumb .case-item-media::before {
    opacity: 0.12;
}
.case-item.has-thumb .case-item-media::after {
    display: none;
}
.case-item-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(30, 58, 138, 0.36);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.case-item-copy {
    padding: 11px 12px 10px;
}
.case-item-copy h3 {
    margin: 0;
    color: #1f3d71;
    font-size: 20px;
    line-height: 1.24;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-item-copy p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #5b6f8f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-item-foot {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.case-item-date {
    font-size: 12px;
    color: #7b8fb2;
}
.case-item-btn {
    font-size: 12px;
    color: #1f5fd1;
    border: 1px solid rgba(59, 130, 246, 0.38);
    border-radius: 999px;
    padding: 3px 10px;
    background: #eff6ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.case-item-btn i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, #4a90f4, #2f7bf0);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.35);
}
.case-item:hover .case-item-btn {
    transform: translateX(2px);
    border-color: rgba(59, 130, 246, 0.56);
    background: #dbeafe;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.18);
}
.case-more-wrap {
    margin-top: 18px;
    text-align: center;
}
.case-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 184px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
    transition: transform .2s ease, box-shadow .2s ease;
}
.case-more i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    color: #fff;
    background: rgba(255,255,255,0.2);
}
.case-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
}

.rings {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
#advantage .section-title,
#advantage .section-desc {
    text-align: center;
}
#advantage .section-title.lj-title-line {
    margin-left: auto;
    margin-right: auto;
}
#about .section-title,
#about .section-desc {
    text-align: center;
}
#about .section-title.lj-title-line {
    margin-left: auto;
    margin-right: auto;
}
.ring-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    padding: 8px 0;
}
.ring {
    --deg: 280deg;
    width: 136px;
    height: 136px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: conic-gradient(#2f7bf0 var(--deg), rgba(47,123,240,.14) 0);
    position: relative;
}
.ring::after {
    content: attr(data-value);
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--white) 82%, transparent);
    display: grid;
    place-items: center;
    font-size: 25px;
    font-weight: 800;
    color: #1f3d71;
}
body.dark-mode .ring::after {
    color: inherit;
}
.ring-card h3 {
    margin: 0;
    color: #4b6288;
    font-size: 15px;
}
.ring-card .section-desc {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
}
.ring-card:first-child .ring::after,
.ring-card:nth-child(2) .ring::after,
.ring-card:nth-child(3) .ring::after {
    letter-spacing: -0.02em;
}

.about-wrap {
    display: none;
}
.team-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.team-item {
    border: 1px solid var(--lj-line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.team-link {
    display: block;
    text-decoration: none;
}
.team-photo {
    height: 188px;
    background: linear-gradient(135deg, #d8deef, #bec6df);
    position: relative;
    transform: scale(1);
    transition: transform .28s ease;
}
.team-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 21, 38, 0.16), rgba(255, 255, 255, 0.02));
}
.team-meta {
    padding: 12px 14px 14px;
}
.team-name {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    color: #1d355b;
}
.team-role {
    margin: 6px 0 0;
    font-size: 13px;
    color: #5f769d;
    line-height: 1.6;
}
.team-more {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #1f5fd1;
    font-weight: 600;
    transition: transform .2s ease;
}
.team-item:hover {
    transform: translateY(-3px);
    border-color: #c7dbf7;
    box-shadow: 0 10px 20px rgba(24, 62, 132, 0.12);
}
.team-item:hover .team-photo {
    transform: scale(1.04);
}
.team-item:hover .team-more {
    transform: translateX(2px);
}
.team-item-1 .team-photo {
    background: linear-gradient(120deg, #dce4f6, #cfd8f0);
}
.team-item-2 .team-photo {
    background: linear-gradient(120deg, #d6dbeb, #c4cde2);
}
.team-item-3 .team-photo {
    background: linear-gradient(120deg, #dbe1ef, #c7d0e7);
}

#contact .container {
    width: 100%;
    margin: 0;
}
#contact.section {
    padding: 6px 0 0;
}
.contact-cta {
    --home-content-gutter: max(28px, calc((100% - 1260px) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 24px;
    padding: 30px var(--home-content-gutter) 26px;
    background: radial-gradient(circle at 10% 16%, rgba(147, 197, 253, 0.35), transparent 42%),
                radial-gradient(circle at 86% 78%, rgba(59, 130, 246, 0.28), transparent 48%),
                linear-gradient(180deg, #2b6fdf 0%, #235ec3 52%, #1f4fa8 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-cta::after {
    content: "";
    position: absolute;
    inset: auto -6% 0;
    height: 50%;
    pointer-events: none;
    background:
        radial-gradient(100% 80% at 15% 100%, rgba(147, 197, 253, 0.3), transparent 62%),
        radial-gradient(100% 80% at 85% 100%, rgba(169, 205, 251, 0.26), transparent 65%);
}
.contact-cta-main,
.contact-cta-main h2,
.contact-cta-main p,
.contact-cta-main .btns,
.contact-cta-main .contact-meta {
    position: relative;
    z-index: 1;
}
.contact-cta-main {
    max-width: 680px;
    margin: 0 auto;
}
.contact-cta-main .section-title {
    margin: 0 0 10px;
    color: #fff;
    text-align: center;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.25;
    white-space: nowrap;
}
.contact-cta-main p {
    margin: 0;
    color: rgba(239, 246, 255, 0.93);
    text-align: center;
}
.contact-cta-main .btns {
    margin-top: 12px;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.contact-cta-main .btn {
    min-width: 164px;
    height: 34px;
    padding: 0 14px;
    border-width: 1px;
    border-color: rgba(191, 219, 254, 0.44);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    background: rgba(47, 123, 240, 0.38);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-cta-main .btn:nth-child(1) {
    background: linear-gradient(135deg, #4a90f4, #2f7bf0);
}
.contact-cta-main .btn:nth-child(2) {
    background: linear-gradient(135deg, #2b6fdf, #235ec3);
}
.contact-cta-main .btn:nth-child(3) {
    background: rgba(255, 255, 255, 0.14);
}
.contact-cta-main .btn:hover {
    transform: translateY(-1px);
    border-color: rgba(219, 234, 254, 0.66);
}
.contact-cta-main .btn:nth-child(1):hover {
    background: linear-gradient(135deg, #73b2f8, #4a90f4);
}
.contact-cta-main .btn:nth-child(2):hover {
    background: linear-gradient(135deg, #2f7bf0, #2b6fdf);
}
.contact-cta-main .btn:nth-child(3):hover {
    background: rgba(255, 255, 255, 0.23);
}
.contact-map-card {
    position: relative;
    z-index: 1;
    display: block;
    height: 208px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid rgba(31, 28, 48, 0.9);
    box-shadow: 0 12px 28px rgba(22, 18, 49, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 15% 18%, rgba(219, 234, 254, 0.62), transparent 42%),
        radial-gradient(circle at 82% 76%, rgba(191, 219, 254, 0.52), transparent 46%),
        linear-gradient(165deg, #e0f2fe 0%, #dbeafe 55%, #bfdbfe 100%);
    transition: transform .24s ease, box-shadow .24s ease;
}
.contact-map-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 34px rgba(22, 18, 49, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.contact-map-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.42) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(0deg, rgba(255,255,255,0.42) 1px, transparent 1px) 0 0 / 34px 34px;
    opacity: 0.32;
}
.contact-map-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 35%, rgba(59, 130, 246, 0.36) 0 2px, transparent 2.2px),
        radial-gradient(circle at 46% 24%, rgba(59, 130, 246, 0.3) 0 2px, transparent 2.2px),
        radial-gradient(circle at 68% 68%, rgba(59, 130, 246, 0.32) 0 2px, transparent 2.2px),
        radial-gradient(circle at 82% 42%, rgba(59, 130, 246, 0.34) 0 2px, transparent 2.2px);
    opacity: 0.55;
}
.contact-map-road {
    position: absolute;
    border-radius: 999px;
    background: #dbeafe;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.18), 0 1px 2px rgba(30, 64, 175, 0.16);
}
.contact-map-road-1 {
    width: 120%;
    height: 16px;
    left: -8%;
    top: 48%;
    transform: rotate(10deg);
}
.contact-map-road-2 {
    width: 14px;
    height: 124%;
    left: 36%;
    top: -14%;
    transform: rotate(-4deg);
}
.contact-map-road-3 {
    width: 90%;
    height: 13px;
    right: -14%;
    top: 26%;
    transform: rotate(-32deg);
}
.contact-map-pin {
    position: absolute;
    left: 54%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: rgba(30, 58, 138, 0.92);
    color: #fff;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 11.5px;
    white-space: nowrap;
    border: 1px solid rgba(220, 226, 255, 0.26);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.34);
}
.contact-map-pin::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(30, 58, 138, 0.92);
    border-right: 1px solid rgba(220, 226, 255, 0.18);
    border-bottom: 1px solid rgba(220, 226, 255, 0.18);
}
.contact-meta {
    margin-top: 12px;
    line-height: 1.8;
    color: rgba(243,239,255,.95);
    font-size: 11.5px;
    text-align: center;
}
.contact-wechat-qrcode {
    margin: 14px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.contact-wechat-qrcode-label {
    font-size: 13px;
    color: rgba(239, 246, 255, 0.92);
}
.contact-wechat-qrcode img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 8px 18px rgba(8, 20, 46, 0.35);
}
.site-footer-v2 {
    background: linear-gradient(180deg, #06081a, #040613);
    color: #c1c8e6;
    padding: 22px 0 14px;
    text-align: center;
    position: relative;
}
.site-footer-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1260px, calc(100% - 56px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186, 195, 238, 0.35), transparent);
}
.site-footer-inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.9fr;
    width: min(1260px, calc(100% - 56px));
    margin: 0 auto;
    gap: 36px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(154, 162, 208, 0.18);
}
.site-footer-col h3,
.site-footer-col h4 {
    margin: 0 0 10px;
    color: #f4f6ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.site-footer-col p {
    margin: 0 0 6px;
    line-height: 1.8;
    font-size: 12px;
    color: rgba(197, 205, 237, 0.86);
}
.site-footer-col a {
    display: block;
    color: rgba(203, 211, 244, 0.92);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.85;
    transition: color .2s ease, transform .2s ease;
}
.site-footer-col a:hover {
    color: #ffffff;
    transform: translateX(2px);
}
.site-footer-copy {
    margin-top: 10px;
    width: min(1260px, calc(100% - 56px));
    margin-left: auto;
    margin-right: auto;
    font-size: 11.5px;
    color: rgba(205, 212, 240, 0.68);
    letter-spacing: 0.01em;
}
.site-footer-copy a {
    color: inherit;
    text-decoration: none;
}
.site-footer-copy a:hover {
    color: #fff;
}
.site-footer-sep {
    margin: 0 6px;
    opacity: 0.6;
}
.contact-cta-main .btn:focus-visible,
.floating-trigger:focus-visible,
.floating-popup-btn:focus-visible {
    outline: 2px solid rgba(223, 215, 255, 0.92);
    outline-offset: 2px;
}

.floating-contact {
    position: fixed;
    right: 14px;
    bottom: 108px;
    z-index: 42;
    --float-panel-anchor: 17px;
    --float-accent: #2f7bf0;
    --float-accent-soft: #eff6ff;
}
.floating-popups {
    position: absolute;
    right: calc(100% + 10px);
    top: 0;
    width: 272px;
    height: 0;
    pointer-events: none;
}
.floating-popup {
    position: absolute;
    right: 0;
    top: var(--float-panel-anchor);
    width: 248px;
    opacity: 0;
    transform: translate(10px, -50%);
    background: linear-gradient(160deg, rgba(30, 64, 175, 0.96), rgba(30, 58, 138, 0.96));
    border: 1px solid rgba(147, 197, 253, 0.56);
    border-radius: 14px;
    padding: 12px 12px 10px;
    box-shadow: 0 14px 34px rgba(16, 13, 28, 0.36);
    transition: opacity .2s ease, transform .24s ease;
    transform-origin: right center;
}
.floating-popup::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(147, 197, 253, 0.56);
    border-right: 1px solid rgba(147, 197, 253, 0.56);
    background: rgba(30, 58, 138, 0.96);
}
.floating-popup.is-active {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    pointer-events: auto;
}
.floating-popup[data-panel="phone"] {
    width: 230px;
}
.floating-popup[data-panel="wechat"] {
    width: 240px;
}
.floating-popup[data-panel="map"] {
    width: 268px;
}
.floating-popup-title {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}
.floating-popup-text {
    color: rgba(239, 246, 255, 0.92);
    line-height: 1.65;
    font-size: 12px;
}
.floating-popup a,
.floating-popup-btn {
    margin-top: 7px;
    display: block;
    width: 100%;
    border: 1px solid rgba(147, 197, 253, 0.66);
    border-radius: 9px;
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    padding: 7px 8px;
    transition: background .2s ease, border-color .2s ease;
}
.floating-popup a:hover,
.floating-popup-btn:hover {
    background: rgba(59, 130, 246, 0.46);
    border-color: rgba(191, 219, 254, 0.8);
}
.floating-popup-btn {
    cursor: pointer;
}
.floating-options {
    display: flex;
    margin-bottom: 0;
    gap: 7px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    padding: 8px 6px;
    box-shadow: 0 10px 26px rgba(42, 37, 86, 0.22);
    transition: box-shadow .2s ease, background .2s ease;
}
.floating-contact.is-panel-open .floating-options {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px rgba(50, 43, 101, 0.28);
}
.floating-trigger {
    border: 1px solid color-mix(in srgb, var(--float-accent) 36%, #ffffff);
    background: #ffffff;
    color: color-mix(in srgb, var(--float-accent) 70%, #1f3d71);
    border-radius: 16px;
    width: 34px;
    height: 34px;
    padding: 0;
    display: grid;
    place-items: center;
    font-size: 12px;
    box-shadow: none;
    overflow: hidden;
    text-indent: -9999px;
    position: relative;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}
.floating-trigger::before {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    text-indent: 0;
    display: grid;
    place-items: center;
    font-size: 13px;
}
.floating-trigger:nth-child(2)::before {
    font-size: 11px;
}
.floating-trigger:hover,
.floating-trigger.is-active {
    border-color: color-mix(in srgb, var(--float-accent) 62%, #ffffff);
    background: var(--float-accent-soft);
}
.floating-trigger.is-active {
    transform: translateX(-2px);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--float-accent) 26%, transparent);
}
.floating-popup:not(.is-active) {
    transform: translate(12px, -50%) scale(0.96);
}
[data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
}
[data-animate].show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-14px) rotate(4deg); }
}
@keyframes cubeSpin {
    0% { transform: rotateX(-16deg) rotateY(28deg); }
    50% { transform: rotateX(-12deg) rotateY(208deg); }
    100% { transform: rotateX(-16deg) rotateY(388deg); }
}

@media (max-width: 1024px) {
    .glass-nav {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        padding: 8px 12px;
        border-radius: 0;
    }
    .nav-links { display: none; }
    .nav-right .nav-member,
    .nav-right .nav-sms-icon {
        display: none !important;
    }
    .nav-drawer-toggle {
        display: inline-flex;
    }
    .nav-member-group { display: none; }
    .nav-member-name { max-width: 68px; }
    .nav-sms-icon {
        width: 32px;
        height: 32px;
    }
    .nav-member-menu {
        right: -4px;
        min-width: 190px;
    }
    .stats, .rings, .team-grid { grid-template-columns: 1fr; }
    .service-list { grid-template-columns: 1fr; }
    .service-card,
    .service-card-3 { grid-template-columns: 1fr; grid-column: 1 / -1; }
    .hero {
        padding-top: 84px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
    }
    .hero-copy {
        max-width: none;
        text-align: center;
    }
    .hero h1 {
        text-align: center;
        font-size: clamp(32px, 8vw, 44px);
    }
    .hero p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }
    .hero-actions {
        justify-content: center;
        gap: 12px;
    }
    .hero-visual {
        justify-content: center;
        min-height: 260px;
    }
    .hero-visual::before,
    .hero-visual::after {
        display: none;
    }
    .hero-device {
        width: min(440px, 94vw);
        transform: perspective(980px) rotateY(-10deg) rotateX(5deg);
        animation: none;
    }
    .hero-orbit {
        animation: none;
    }
    .hero-device::after {
        left: 10px;
        right: -10px;
        bottom: -12px;
        height: 18px;
    }
    .hero-code-text {
        inset: 10px 12px;
        font-size: 11px;
        line-height: 1.45;
    }
    .cases-shell {
        padding: 0;
    }
    .cases-head {
        flex-direction: column;
        gap: 0;
    }
    .cases-title {
        font-size: clamp(26px, 8vw, 32px);
        text-align: center;
    }
    .cases-subtitle {
        text-align: center;
    }
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 14px;
    }
    .case-item-media {
        min-height: 150px;
    }
    .case-item.has-thumb .case-item-media {
        background-position: center 22%;
    }
    .case-item-copy h3 {
        font-size: 18px;
    }
    .case-item-copy p {
        font-size: 14px;
    }
    .case-item-btn {
        font-size: 12px;
    }
    .case-item-btn i {
        width: 13px;
        height: 13px;
        font-size: 8px;
    }
    .case-item-date {
        font-size: 11px;
    }
    .case-more {
        min-width: 162px;
        font-size: 14px;
        padding: 9px 14px;
        gap: 6px;
    }
    .case-more i {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    .contact-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 18px 22px;
    }
    .contact-cta-main .section-title,
    .contact-cta-main p,
    .contact-meta {
        text-align: center;
    }
    .contact-cta-main .btns {
        justify-content: center;
        gap: 10px;
    }
    .contact-cta-main .btn {
        min-width: 150px;
        height: 32px;
        font-size: 11.5px;
    }
    .contact-map-card {
        height: 180px;
    }
    .site-footer-v2 { padding: 20px 0 14px; }
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .floating-popups { display: none; }
    .section { padding: 78px 0; }
    .floating-contact { display: none; }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .contact-cta {
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
        gap: 20px;
        padding-top: 26px;
        padding-bottom: 22px;
    }
    .contact-cta-main .section-title {
        font-size: clamp(21px, 1.9vw, 27px);
    }
    .contact-cta-main .btn {
        min-width: 156px;
    }
    .contact-map-card {
        height: 194px;
    }
    .site-footer-inner {
        gap: 30px;
    }
}

@media (min-width: 1800px) {
    .contact-cta {
        padding-top: 34px;
        padding-bottom: 30px;
    }
    .contact-cta-main .section-title {
        font-size: clamp(24px, 1.8vw, 32px);
    }
    .contact-map-card {
        height: 220px;
    }
    .site-footer-inner {
        gap: 42px;
    }
}

@media (max-width: 1200px) {
    .section-title,
    .cases-title,
    .contact-cta-main .section-title {
        font-size: 26px;
    }
    .service-copy {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .section-title,
    .cases-title,
    .contact-cta-main .section-title {
        font-size: 22px;
    }
    .service-copy {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .section-title,
    .cases-title,
    .contact-cta-main .section-title {
        font-size: 19px;
    }
    .service-copy {
        font-size: 16px;
    }
}

/* about page layout */
.about-page .section-padding { padding: 56px 0; }
.about-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.about-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.about-page .py-16 { padding-top: 0; padding-bottom: 54px; }
.about-page .py-8 { padding-top: 32px; padding-bottom: 32px; }
.about-page .grid { display: grid; }
.about-page .gap-12 { gap: 48px; }
.about-page .gap-8 { gap: 32px; }
.about-page .gap-6 { gap: 24px; }
.about-page .gap-4 { gap: 16px; }
.about-page .grid-cols-1 { grid-template-columns: 1fr; }
.about-page .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-page .items-center { align-items: center; }
.about-page .text-center { text-align: center; }
.about-page .justify-center { justify-content: center; }
.about-page .flex { display: flex; }
.about-page .flex-wrap { flex-wrap: wrap; }
.about-page .items-start { align-items: flex-start; }
.about-page .mx-auto { margin-left: auto; margin-right: auto; }
.about-page .text-sm { font-size: 13px; }
.about-page .text-xl { font-size: 20px; }
.about-page .text-3xl { font-size: 30px; }
.about-page .text-4xl { font-size: 30px; line-height: 1.18; }
.about-page .font-bold { font-weight: 700; }
.about-page .mb-12 { margin-bottom: 48px; }
.about-page .mb-6 { margin-bottom: 24px; }
.about-page .mb-4 { margin-bottom: 16px; }
.about-page .mb-3 { margin-bottom: 12px; }
.about-page .mt-8 { margin-top: 32px; }
.about-page .mt-2 { margin-top: 8px; }
.about-page .mt-1 { margin-top: 4px; }
.about-page .rounded-2xl { border-radius: 16px; }
.about-page .rounded-xl { border-radius: 12px; }
.about-page .w-32 { width: 128px; }
.about-page .h-32 { height: 128px; }
.about-page .h-12 { height: 48px; }
.about-page .object-cover { object-fit: cover; }
.about-page .object-contain { object-fit: contain; }
.about-page .shadow-2xl { box-shadow: 0 24px 46px rgba(17, 49, 109, 0.18); }
.about-page .px-4 { padding-left: 16px; padding-right: 16px; }
.about-page .pt-4 { padding-top: 16px; }
.about-page .text-primary { color: #2f7bf0; }
.about-page .breadcrumbs ul { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 10px; color: #5b6f8f; }
.about-page .breadcrumbs li + li::before { content: "/"; margin-right: 10px; color: #93a4c2; }
.about-page .tech-card,
.about-page .glass-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
}
.about-page .p-4 { padding: 16px; }
.about-page .p-3 { padding: 12px; }
.about-page .card-body { padding: 18px; }
.about-page .card-title { margin: 0 0 8px; font-size: 20px; color: #1f3d71; }
.about-page .leading-7 { line-height: 1.75; }
.about-page .space-y-4 > * + * { margin-top: 16px; }
.about-page .tech-input,
.about-page .tech-textarea {
    border: 1px solid #cfe0fb;
    border-radius: 10px;
    background: #fff;
    color: #1f3d71;
    padding: 10px 12px;
}
.about-page .w-full { width: 100%; }
.about-page .btn-tech {
    border: 0;
    border-radius: 10px;
    height: 40px;
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.about-page .about-hero .tech-section-title { margin: 0; font-size: 34px; line-height: 1.15; color: #1f3d71; }
.about-page .about-hero {
    margin-top: -64px;
    padding-top: 64px;
}
.about-page .about-hero-inner {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}
.about-page .about-hero-banner {
    min-height: 600px;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 36px rgba(15, 38, 84, 0.2);
}
.about-page .about-hero-mask {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 9%;
    background: linear-gradient(90deg, rgba(10, 30, 72, 0.3), rgba(10, 30, 72, 0.05));
}
.about-page .about-hero .tech-section-title {
    color: #fff;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    max-width: 520px;
    text-align: left;
}
.about-page .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -108px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.about-page .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.about-page .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
    text-align: left;
    max-height: none;
    overflow: visible;
}
.about-page .about-hero-summary-content p {
    margin: 0 0 10px;
}
.about-page .about-hero-summary-content p:last-child {
    margin-bottom: 0;
}
.about-page .about-intro-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.about-page .about-intro-grid > div:first-child img { width: 100%; min-height: 320px; object-fit: cover; display: block; }
.about-page .about-intro-content { line-height: 1.8; color: #425a82; }
.about-page .about-stats-grid { align-items: stretch; }
.about-page .about-stats-grid .tech-card { min-height: 108px; display: grid; place-items: center; }
.about-page .about-culture-grid .glass-card,
.about-page .about-team-grid .glass-card { height: 100%; }
.about-page .about-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.about-page .about-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.about-page .about-more-link i { transition: transform .2s ease; }
.about-page .about-more-link:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.about-page .about-more-link:hover i { transform: translateX(5px); }
.about-page .about-team-grid .card-body {
    min-height: 0;
    padding: 10px 12px 12px;
}
.about-page .about-team-grid .card-title {
    margin: 0 0 4px;
    font-size: 18px;
}
.about-page .about-team-grid .card-body p {
    margin: 0;
    line-height: 1.5;
}
.about-page .about-team-media {
    margin: 0;
    height: 188px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.about-page .about-team-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.about-page .about-team-grid .glass-card:hover .about-team-media-img {
    transform: scale(1.04);
}
.about-page .about-contact-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); align-items: start; }
.about-page .about-contact-grid { align-items: stretch; }
.about-page .about-contact-grid > .glass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.about-page .about-contact-grid > .glass-card .card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.about-page .about-contact-grid > .glass-card form {
    margin-top: auto;
}
.about-page .about-form-code-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-page .about-form-code-input {
    flex: 1;
    min-width: 0;
}
.about-page .about-form-code-img {
    flex: 0 0 auto;
    height: 35px;
    overflow: hidden;
    border-radius: 8px;
}
.about-page .about-form-code-img img {
    display: block;
    height: 35px;
    width: auto;
}
.about-page .about-form-status {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    min-height: 20px;
}
.about-page .about-form-status.is-success {
    color: #1f8b4c;
}
.about-page .about-form-status.is-error {
    color: #d93025;
}
.about-page .about-partner-grid .tech-card { min-width: 128px; display: grid; place-items: center; }
.about-page .about-partners-v2 {
    background: #f6f8fc;
}
.about-page .about-partners-v2 .container {
    padding-left: 16px;
    padding-right: 16px;
}
.about-page .about-partners-v2 .text-center > span {
    color: #2A7DE1;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: .14em;
    margin-bottom: 10px;
    display: block;
}
.about-page .about-partners-v2 .text-center > h2 {
    color: #1f3d71;
    margin: 0;
}
.about-page .about-partners-v2 .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    perspective: 1200px;
}
.about-page .about-partners-v2 .glass-card {
    min-height: 176px;
    border-color: #e7ebf2;
    background: #fff;
    box-shadow: 0 6px 16px rgba(28, 44, 78, 0.06);
    backdrop-filter: none;
}
.about-page .about-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transform-style: preserve-3d;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    will-change: transform;
    transition: transform .6s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-page .about-partner-card > * {
    backface-visibility: hidden;
    transition: transform .6s ease;
}
.about-page .about-partner-logo-wrap {
    width: 86px;
    height: 86px;
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.about-page .about-partner-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    display: block;
}
.about-page .about-partner-title {
    font-size: 14px;
    line-height: 1.4;
    color: #3f5275;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.about-page a.about-partner-card {
    text-decoration: none;
}
.about-page a.about-partner-card .about-partner-title {
    color: #000;
}
.about-page .about-partner-card:hover {
    transform: rotateY(180deg) translateY(-2px);
    box-shadow: 0 10px 18px rgba(28, 44, 78, 0.1);
    border-color: #d6ddea;
}
.about-page .about-partner-card:hover > * {
    transform: rotateY(180deg);
}

@media (min-width: 768px) {
    .about-page .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .about-page .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .about-page .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .about-page .lg\:gap-8 { gap: 32px; }
}
@media (max-width: 767px) {
    .about-page .section-padding { padding: 38px 0; }
    .about-page .text-4xl { font-size: 24px; }
    .about-page .about-hero .tech-section-title { font-size: 30px; max-width: 360px; }
    .about-page .about-hero-banner,
    .about-page .about-hero-mask { min-height: 360px; }
    .about-page .about-hero { margin-top: -56px; padding-top: 56px; }
    .about-page .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .about-page .about-hero-summary-card h2 { font-size: 30px; }
    .about-page .about-hero-summary-content { max-height: none; line-height: 1.7; }
    .about-page .about-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-page .about-stats-grid .tech-card:last-child { grid-column: 1 / -1; }
    .about-page .about-team-media { height: 160px; }
    .about-page .about-contact-grid { grid-template-columns: 1fr; gap: 18px; }
    .about-page .about-partner-grid { gap: 12px; }
    .about-page .about-partners-v2 .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
    .about-page .about-intro-grid,
    .about-page .about-contact-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) {
    .about-page .about-partners-v2 .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .about-page .about-partners-v2 .grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* about page dark mode */
body.dark-mode .about-page .tech-shell {
    background: rgba(18, 24, 44, 0.72);
}
body.dark-mode .about-page .about-hero-mask {
    background: linear-gradient(180deg, rgba(5, 9, 20, 0.5), rgba(5, 9, 20, 0.6));
}
body.dark-mode .about-page .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .about-page .about-partners-v2 {
    background: rgba(16, 22, 40, 0.78);
}
body.dark-mode .about-page .about-more-link {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .about-page .about-more-link:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
body.dark-mode .about-page .about-partners-v2 .text-center > h2 {
    color: #dbe9ff;
}
body.dark-mode .about-page .about-partners-v2 .glass-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 10px 20px rgba(5, 10, 24, 0.34);
}
body.dark-mode .about-page .about-partner-title {
    color: #b6c7e6;
}
body.dark-mode .about-page .about-hero-summary-card h2 { color: #dbe9ff; }
body.dark-mode .about-page .about-hero-summary-content { color: #a8bcde; }
body.dark-mode .about-page .tech-card,
body.dark-mode .about-page .glass-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .about-page .card-title,
body.dark-mode .about-page .about-hero .tech-section-title,
body.dark-mode .about-page .font-bold {
    color: #dbe9ff;
}
body.dark-mode .about-page .about-intro-content,
body.dark-mode .about-page p,
body.dark-mode .about-page .text-sm {
    color: #a8bcde;
}
body.dark-mode .about-page .tech-input,
body.dark-mode .about-page .tech-textarea {
    background: rgba(16, 22, 40, 0.95);
    border-color: rgba(126, 173, 255, 0.3);
    color: #dbe9ff;
}
body.dark-mode .about-page .breadcrumbs ul,
body.dark-mode .about-page .breadcrumbs li + li::before {
    color: #8fa6cd;
}

/* service page layout */
.service-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.service-page .section-padding { padding: 56px 0; }
.service-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.service-page .service-hero { margin-top: -64px; padding-top: 64px; }
.service-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.service-page .service-hero .about-hero-banner {
    min-height: 520px;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 36px rgba(15, 38, 84, 0.2);
}
.service-page .service-hero .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -90px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.service-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.service-page .service-hero .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
}
.service-page .service-hero .about-hero-summary-content p { margin: 0; }

.service-page .service-section-head { text-align: center; margin-bottom: 36px; }
.service-page .service-section-head > span {
    color: #2A7DE1;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: .14em;
    margin-bottom: 10px;
    display: block;
    font-size: 13px;
}
.service-page .service-section-head > h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.18;
    color: #1f3d71;
}
.service-page .service-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}
.service-page .service-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}
.service-page .service-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
    color: #1f3d71;
}
.service-page .service-card .service-desc {
    margin: 0 0 14px;
    color: #5b7091;
    line-height: 1.75;
    font-size: 14px;
}
.service-page .icon-glow {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(42, 125, 225, 0.24);
    margin-bottom: 16px;
}
.service-page .icon-glow i { font-size: 24px; color: #2A7DE1; }
.service-page .icon-glow img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}
.service-page .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; margin-bottom: 16px; }
.service-page .service-tags span {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.3);
    background: rgba(42, 125, 225, 0.12);
}
.service-page .service-detail-text {
    margin-top: auto;
    padding-top: 14px;
    color: #2A7DE1;
    font-weight: 600;
    font-size: 14px;
}
.service-page .service-card-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.25), rgba(139, 92, 246, 0.25));
    filter: blur(20px);
    transition: opacity .35s ease;
}
.service-page .service-card:hover .service-card-glow { opacity: .8; }
.service-page .service-pager {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.service-page .service-pager .join {
    padding: 10px 14px;
    border-radius: 12px;
}
.service-page .service-pager ul,
.service-page .service-pager ol,
.service-page .service-pager .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.service-page .service-pager li {
    margin: 0;
    list-style: none;
    color: #5b7091;
    font-size: 13px;
    line-height: 1;
}
.service-page .service-pager li:first-child {
    padding: 0 6px;
    color: #6f86ab;
}
.service-page .service-pager li a,
.service-page .service-pager li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1;
    transition: all .2s ease;
}
.service-page .service-pager li:first-child a,
.service-page .service-pager li:first-child span {
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}
.service-page .service-pager li a:hover {
    background: rgba(42, 125, 225, 0.16);
    border-color: rgba(42, 125, 225, 0.36);
}
.service-page .service-pager li .active,
.service-page .service-pager li.active a,
.service-page .service-pager li.active span,
.service-page .service-pager li span:not([class]) {
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    border-color: transparent;
    color: #fff;
}

.service-page .service-why-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}
.service-page .service-why-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    text-align: center;
    padding: 20px 18px;
}
.service-page .service-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.2), rgba(139, 92, 246, 0.2));
}
.service-page .service-why-icon i { font-size: 28px; color: #2A7DE1; }
.service-page .service-why-card h3 { margin: 0 0 8px; font-size: 18px; color: #1f3d71; }
.service-page .service-why-card p { margin: 0; color: #5b7091; font-size: 13px; line-height: 1.7; }

.service-page .service-consult-section { padding: 0 0 72px; }
.service-page .service-consult-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 44px 24px;
}
.service-page .service-consult-card h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.2;
    color: #1f3d71;
}
.service-page .service-consult-card p {
    margin: 0 auto 24px;
    max-width: 680px;
    color: #5b7091;
    font-size: 18px;
}
.service-page .service-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    text-decoration: none;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}
.service-page .service-consult-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    opacity: .2;
    filter: blur(38px);
    pointer-events: none;
}
.service-page .service-consult-glow-right { top: -65px; right: -65px; background: #2A7DE1; }
.service-page .service-consult-glow-left { bottom: -65px; left: -65px; background: #8B5CF6; }

@media (min-width: 768px) {
    .service-page .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-page .service-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .service-page .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-page .service-why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .service-page .section-padding { padding: 38px 0; }
    .service-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .service-page .service-hero .about-hero-banner { min-height: 320px; }
    .service-page .service-hero .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .service-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .service-page .service-section-head > h2 { font-size: 30px; }
    .service-page .service-card h3 { font-size: 20px; }
    .service-page .service-pager .join {
        padding: 8px 10px;
        border-radius: 10px;
    }
    .service-page .service-pager ul,
    .service-page .service-pager ol,
    .service-page .service-pager .pagination {
        gap: 6px;
    }
    .service-page .service-pager li {
        font-size: 12px;
    }
    .service-page .service-pager li a,
    .service-page .service-pager li span {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        border-radius: 8px;
    }
    .service-page .service-consult-card h2 { font-size: 30px; }
    .service-page .service-consult-card p { font-size: 15px; }
}

/* service page dark mode */
body.dark-mode .service-page .tech-shell {
    background: rgba(18, 24, 44, 0.72);
}
body.dark-mode .service-page .service-hero .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .service-page .service-hero .about-hero-summary-card h2 {
    color: #dbe9ff;
}
body.dark-mode .service-page .service-hero .about-hero-summary-content {
    color: #a8bcde;
}
body.dark-mode .service-page .service-section-head > h2,
body.dark-mode .service-page .service-card h3,
body.dark-mode .service-page .service-why-card h3,
body.dark-mode .service-page .service-consult-card h2 {
    color: #dbe9ff;
}
body.dark-mode .service-page .service-card,
body.dark-mode .service-page .service-why-card,
body.dark-mode .service-page .service-consult-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .service-page .service-desc,
body.dark-mode .service-page .service-why-card p,
body.dark-mode .service-page .service-consult-card p {
    color: #a8bcde;
}
body.dark-mode .service-page .service-detail-text,
body.dark-mode .service-page .icon-glow i {
    color: #8cb8ff;
}
body.dark-mode .service-page .service-pager li {
    color: #9bb0d2;
}
body.dark-mode .service-page .service-pager li:first-child {
    color: #8fa6cd;
}
body.dark-mode .service-page .service-pager li a,
body.dark-mode .service-page .service-pager li span {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .service-page .service-pager li:first-child a,
body.dark-mode .service-page .service-pager li:first-child span {
    border: 0;
    background: transparent;
    color: inherit;
}
body.dark-mode .service-page .service-pager li .active,
body.dark-mode .service-page .service-pager li.active a,
body.dark-mode .service-page .service-pager li.active span,
body.dark-mode .service-page .service-pager li span:not([class]) {
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    border-color: transparent;
}
@media (max-width: 480px) {
    .service-page .service-pager li:first-child {
        display: none;
    }
}
 
.service-page .service-detail-section { padding-top: 44px; }
.service-page .service-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 28px 24px;
}
.service-page .service-detail-title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.service-page .service-detail-content {
    color: #4a5f86;
    line-height: 1.9;
    font-size: 14px;
}
.service-page .service-detail-content img {
    max-width: 100%;
    height: auto;
}
body.dark-mode .service-page .service-detail-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .service-page .service-detail-title {
    color: #dbe9ff;
}
body.dark-mode .service-page .service-detail-content {
    color: #a8bcde;
}

/* recruit page layout */
.recruit-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.recruit-page .section-padding { padding: 56px 0; }
.recruit-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.recruit-page .service-hero { margin-top: -64px; padding-top: 64px; }
.recruit-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.recruit-page .service-hero .about-hero-banner {
    min-height: 520px;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 36px rgba(15, 38, 84, 0.2);
}
.recruit-page .service-hero .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -90px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.recruit-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.recruit-page .service-hero .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
}
.recruit-page .service-hero .about-hero-summary-content p { margin: 0; }

.recruit-page .recruit-filter-section { padding: 26px 0 6px; }
.recruit-page .recruit-filter-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.recruit-page .recruit-filter-chip {
    display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px;
    border-radius: 999px; border: 1px solid rgba(42, 125, 225, 0.2); background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1; text-decoration: none; font-size: 14px; transition: all .2s ease;
}
.recruit-page .recruit-filter-chip:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.recruit-page .recruit-filter-chip.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    box-shadow: 0 0 20px rgba(42, 125, 225, 0.45);
}

.recruit-page .recruit-list-wrap { display: grid; gap: 18px; }
.recruit-page .recruit-item { position: relative; z-index: 1; }
.recruit-page .recruit-item-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 20px;
    transition: border-color .25s ease, transform .25s ease;
}
.recruit-page .recruit-item-card:hover {
    border-left: 4px solid #2A7DE1;
    transform: translateY(-2px);
}
.recruit-page .recruit-item-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.recruit-page .recruit-item-body { flex: 1; min-width: 0; }
.recruit-page .recruit-item-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.recruit-page .recruit-item-title { margin: 0; font-size: 26px; line-height: 1.25; }
.recruit-page .recruit-item-title a { color: #1f3d71; text-decoration: none; transition: color .25s ease; }
.recruit-page .recruit-item-card:hover .recruit-item-title a { color: #2A7DE1; }
.recruit-page .recruit-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.3);
    background: rgba(42, 125, 225, 0.12);
}
.recruit-page .recruit-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
    color: #5b7091;
    font-size: 13px;
}
.recruit-page .recruit-meta-row span { display: inline-flex; align-items: center; gap: 5px; }
.recruit-page .recruit-meta-row i { color: #2A7DE1; }
.recruit-page .recruit-item-desc {
    margin: 0;
    color: #5b7091;
    font-size: 14px;
    line-height: 1.75;
}
.recruit-page .btn-neon.recruit-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.recruit-page .recruit-item-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(42, 125, 225, 0.12);
    color: #6a7fa3;
    font-size: 12px;
}
.recruit-page .recruit-item-foot span { display: inline-flex; align-items: center; gap: 5px; }
.recruit-page .recruit-item-foot .is-expired { color: #e05353; }
.recruit-page .recruit-item-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.24), rgba(139, 92, 246, 0.24));
    filter: blur(20px);
    transition: opacity .35s ease;
}
.recruit-page .recruit-item:hover .recruit-item-glow { opacity: .8; }

.recruit-page .recruit-pager { margin-top: 32px; display: flex; justify-content: center; }
.recruit-page .recruit-pager .join {
    padding: 10px 14px;
    border-radius: 12px;
}
.recruit-page .recruit-pager ul,
.recruit-page .recruit-pager ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.recruit-page .recruit-pager .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.recruit-page .recruit-pager li {
    margin: 0;
    list-style: none;
    color: #5b7091;
    font-size: 13px;
    line-height: 1;
}
.recruit-page .recruit-pager li:first-child {
    padding: 0 6px;
    color: #6f86ab;
}
.recruit-page .recruit-pager li a,
.recruit-page .recruit-pager li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1;
    transition: all .2s ease;
}
.recruit-page .recruit-pager li:first-child a,
.recruit-page .recruit-pager li:first-child span {
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}
.recruit-page .recruit-pager li a:hover {
    background: rgba(42, 125, 225, 0.16);
    border-color: rgba(42, 125, 225, 0.36);
}
.recruit-page .recruit-pager li .active,
.recruit-page .recruit-pager li.active a,
.recruit-page .recruit-pager li.active span,
.recruit-page .recruit-pager li span:not([class]) {
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    border-color: transparent;
    color: #fff;
}
.recruit-page .recruit-empty-state {
    text-align: center;
    padding: 70px 0;
}
.recruit-page .recruit-empty-icon { font-size: 56px; opacity: .3; margin-bottom: 10px; }
.recruit-page .recruit-empty-state h3 { margin: 0 0 8px; font-size: 26px; color: #1f3d71; }
.recruit-page .recruit-empty-state p { margin: 0; color: #5b7091; }

.recruit-page .recruit-reserve-section { padding: 0 0 72px; }
.recruit-page .recruit-reserve-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 44px 24px;
}
.recruit-page .recruit-reserve-icon { display: block; font-size: 46px; color: #2A7DE1; margin-bottom: 14px; }
.recruit-page .recruit-reserve-card h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.2;
    color: #1f3d71;
}
.recruit-page .recruit-reserve-card p {
    margin: 0 auto 24px;
    max-width: 680px;
    color: #5b7091;
    font-size: 18px;
}
.recruit-page .recruit-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    position: relative;
    z-index: 2;
}
.recruit-page .recruit-reserve-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    opacity: .2;
    filter: blur(38px);
    pointer-events: none;
}
.recruit-page .recruit-reserve-glow-right { top: -65px; right: -65px; background: #2A7DE1; }
.recruit-page .recruit-reserve-glow-left { bottom: -65px; left: -65px; background: #8B5CF6; }

@media (max-width: 767px) {
    .recruit-page .section-padding { padding: 38px 0; }
    .recruit-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .recruit-page .service-hero .about-hero-banner { min-height: 320px; }
    .recruit-page .service-hero .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .recruit-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .recruit-page .recruit-filter-section { padding-top: 22px; }
    .recruit-page .recruit-item-main { flex-direction: column; }
    .recruit-page .recruit-item-title { font-size: 22px; }
    .recruit-page .recruit-item-btn { width: 100%; justify-content: center; }
    .recruit-page .recruit-pager .join {
        padding: 8px 10px;
        border-radius: 10px;
    }
    .recruit-page .recruit-pager ul,
    .recruit-page .recruit-pager ol,
    .recruit-page .recruit-pager .pagination {
        gap: 6px;
    }
    .recruit-page .recruit-pager li {
        font-size: 12px;
    }
    .recruit-page .recruit-pager li a,
    .recruit-page .recruit-pager li span {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        border-radius: 8px;
    }
    .recruit-page .recruit-reserve-card h2 { font-size: 30px; }
    .recruit-page .recruit-reserve-card p { font-size: 15px; }
}
@media (max-width: 480px) {
    .recruit-page .recruit-pager li:first-child {
        display: none;
    }
}

/* recruit page dark mode */
body.dark-mode .recruit-page .tech-shell {
    background: rgba(18, 24, 44, 0.72);
}
body.dark-mode .recruit-page .service-hero .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .recruit-page .service-hero .about-hero-summary-card h2 {
    color: #dbe9ff;
}
body.dark-mode .recruit-page .service-hero .about-hero-summary-content {
    color: #a8bcde;
}
body.dark-mode .recruit-page .recruit-filter-chip {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .recruit-page .recruit-filter-chip.is-active {
    color: #fff;
    border-color: transparent;
}
body.dark-mode .recruit-page .recruit-item-card,
body.dark-mode .recruit-page .recruit-reserve-card,
body.dark-mode .recruit-page .recruit-pager .glass-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .recruit-page .recruit-item-title a,
body.dark-mode .recruit-page .recruit-empty-state h3,
body.dark-mode .recruit-page .recruit-reserve-card h2 {
    color: #dbe9ff;
}
body.dark-mode .recruit-page .recruit-pager li {
    color: #9bb0d2;
}
body.dark-mode .recruit-page .recruit-pager li:first-child {
    color: #8fa6cd;
}
body.dark-mode .recruit-page .recruit-pager li a,
body.dark-mode .recruit-page .recruit-pager li span {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .recruit-page .recruit-pager li:first-child a,
body.dark-mode .recruit-page .recruit-pager li:first-child span {
    border: 0;
    background: transparent;
    color: inherit;
}
body.dark-mode .recruit-page .recruit-pager li .active,
body.dark-mode .recruit-page .recruit-pager li.active a,
body.dark-mode .recruit-page .recruit-pager li.active span,
body.dark-mode .recruit-page .recruit-pager li span:not([class]) {
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    border-color: transparent;
}
body.dark-mode .recruit-page .recruit-meta-row,
body.dark-mode .recruit-page .recruit-item-desc,
body.dark-mode .recruit-page .recruit-item-foot,
body.dark-mode .recruit-page .recruit-empty-state p,
body.dark-mode .recruit-page .recruit-reserve-card p {
    color: #a8bcde;
}

.recruit-page .recruit-detail-section { padding-top: 44px; }
.recruit-page .recruit-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 28px 24px;
}
.recruit-page .recruit-detail-back-row { margin-bottom: 10px; }
.recruit-page .recruit-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.recruit-page .recruit-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.recruit-page .recruit-detail-title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.recruit-page .recruit-detail-meta { margin-bottom: 18px; }
.recruit-page .recruit-rich-block + .recruit-rich-block { margin-top: 22px; }
.recruit-page .recruit-rich-block h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.3;
    color: #1f3d71;
}
.recruit-page .recruit-rich-content {
    color: #4a5f86;
    line-height: 1.85;
    font-size: 14px;
}
.recruit-page .recruit-rich-content img {
    max-width: 100%;
    height: auto;
}
body.dark-mode .recruit-page .recruit-detail-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .recruit-page .recruit-back-btn {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .recruit-page .recruit-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
body.dark-mode .recruit-page .recruit-detail-title,
body.dark-mode .recruit-page .recruit-rich-block h2 {
    color: #dbe9ff;
}
body.dark-mode .recruit-page .recruit-rich-content {
    color: #a8bcde;
}

/* case page layout */
.case-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.case-page .section-padding { padding: 56px 0; }
.case-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.case-page .service-hero { margin-top: -64px; padding-top: 64px; }
.case-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.case-page .service-hero .about-hero-banner {
    min-height: 520px;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 36px rgba(15, 38, 84, 0.2);
}
.case-page .service-hero .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -90px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.case-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.case-page .service-hero .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
}
.case-page .service-hero .about-hero-summary-content p { margin: 0; }

.case-page .case-filter-section { position: relative; z-index: 10; padding: 30px 0 18px; }
.case-page .case-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.case-page .case-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    color: #5b7091;
    text-decoration: none;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    transition: all .25s ease;
}
.case-page .case-filter-chip:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.case-page .case-filter-chip.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    box-shadow: 0 0 20px rgba(42, 125, 225, 0.35);
}

.case-page .case-list-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}
.case-page .case-card { position: relative; z-index: 1; }
.case-page .case-card-inner {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.case-page .case-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.case-page .case-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.3);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
}
.case-page .case-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}
.case-page .case-card:hover .case-card-media img {
    transform: scale(1.08);
}
.case-page .case-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.case-page .case-card-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
}
.case-page .case-card-title a {
    color: #1f3d71;
    text-decoration: none;
    transition: color .25s ease;
}
.case-page .case-card:hover .case-card-title a {
    color: #2A7DE1;
}
.case-page .case-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5b7091;
    font-size: 13px;
    margin-bottom: 6px;
}
.case-page .case-card-meta i { color: #2A7DE1; }
.case-page .case-card-desc {
    margin: 8px 0 14px;
    color: #5b7091;
    font-size: 14px;
    line-height: 1.75;
}
.case-page .btn-neon.case-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.case-page .case-card-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.24), rgba(139, 92, 246, 0.24));
    filter: blur(20px);
    transition: opacity .35s ease;
}
.case-page .case-card:hover .case-card-glow { opacity: .8; }

.case-page .case-pager { margin-top: 32px; display: flex; justify-content: center; }
.case-page .case-pager .join {
    padding: 10px 14px;
    border-radius: 12px;
}
.case-page .case-pager ul,
.case-page .case-pager ol,
.case-page .case-pager .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.case-page .case-pager li {
    margin: 0;
    list-style: none;
    color: #5b7091;
    font-size: 13px;
    line-height: 1;
}
.case-page .case-pager li:first-child { padding: 0 6px; color: #6f86ab; }
.case-page .case-pager li a,
.case-page .case-pager li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1;
    transition: all .2s ease;
}
.case-page .case-pager li:first-child a,
.case-page .case-pager li:first-child span {
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}
.case-page .case-pager li .active,
.case-page .case-pager li.active a,
.case-page .case-pager li.active span,
.case-page .case-pager li span:not([class]) {
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    border-color: transparent;
    color: #fff;
}

.case-page .case-empty-state {
    text-align: center;
    padding: 70px 0;
}
.case-page .case-empty-icon {
    font-size: 56px;
    opacity: .3;
    margin-bottom: 10px;
}
.case-page .case-empty-state h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #1f3d71;
}
.case-page .case-empty-state p {
    margin: 0;
    color: #5b7091;
}

.case-page .case-consult-section { padding: 0 0 72px; }
.case-page .case-consult-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 44px 24px;
}
.case-page .case-consult-card h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.2;
    color: #1f3d71;
}
.case-page .case-consult-card p {
    margin: 0 auto 24px;
    max-width: 680px;
    color: #5b7091;
    font-size: 18px;
}
.case-page .case-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    position: relative;
    z-index: 2;
}
.case-page .case-consult-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    opacity: .2;
    filter: blur(38px);
    pointer-events: none;
}
.case-page .case-consult-glow-right { top: -65px; right: -65px; background: #2A7DE1; }
.case-page .case-consult-glow-left { bottom: -65px; left: -65px; background: #8B5CF6; }

.case-page .case-detail-section { padding-top: 44px; }
.case-page .case-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 28px 24px;
}
.case-page .case-detail-title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.case-page .case-detail-back-row {
    margin-bottom: 10px;
}
.case-page .case-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.case-page .case-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.case-page .case-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 10px;
}
.case-page .case-detail-desc {
    margin: 0 0 16px;
    color: #4a5f86;
    line-height: 1.8;
}
.case-page .case-rich-content {
    color: #4a5f86;
    line-height: 1.9;
    font-size: 14px;
}
.case-page .case-rich-content img {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    border-radius: 8px;
}

.case-image-preview {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}
.case-image-preview.is-open {
    display: block;
}
.case-image-preview-mask {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 20, 0.86);
}
.case-image-preview-body {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}
.case-image-preview-body img {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}
.case-image-preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.case-image-preview-nav.is-prev { left: 18px; }
.case-image-preview-nav.is-next { right: 18px; }
.case-image-preview-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
body.case-preview-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .case-page .case-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .case-page .case-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .case-page .section-padding { padding: 38px 0; }
    .case-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .case-page .service-hero .about-hero-banner { min-height: 320px; }
    .case-page .service-hero .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .case-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .case-page .case-filter-section { padding-top: 22px; }
    .case-page .case-card-title { font-size: 20px; }
    .case-page .case-pager .join { padding: 8px 10px; border-radius: 10px; }
    .case-page .case-pager ul,
    .case-page .case-pager ol,
    .case-page .case-pager .pagination { gap: 6px; }
    .case-page .case-pager li { font-size: 12px; }
    .case-page .case-pager li a,
    .case-page .case-pager li span {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        border-radius: 8px;
    }
    .case-page .case-consult-card h2 { font-size: 30px; }
    .case-page .case-consult-card p { font-size: 15px; }
    .case-page .case-detail-title { font-size: 30px; }
    .case-image-preview-nav {
        width: 36px;
        height: 36px;
        font-size: 26px;
    }
    .case-image-preview-nav.is-prev { left: 10px; }
    .case-image-preview-nav.is-next { right: 10px; }
}
@media (max-width: 480px) {
    .case-page .case-pager li:first-child {
        display: none;
    }
}

/* case page dark mode */
body.dark-mode .case-page .tech-shell {
    background: rgba(18, 24, 44, 0.72);
}
body.dark-mode .case-page .service-hero .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .case-page .service-hero .about-hero-summary-card h2 {
    color: #dbe9ff;
}
body.dark-mode .case-page .service-hero .about-hero-summary-content {
    color: #a8bcde;
}
body.dark-mode .case-page .case-card-inner,
body.dark-mode .case-page .case-consult-card,
body.dark-mode .case-page .case-detail-card,
body.dark-mode .case-page .case-pager .glass-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .case-page .case-back-btn {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .case-page .case-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
body.dark-mode .case-page .case-filter-chip {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .case-page .case-card-tag {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.34);
    background: rgba(16, 22, 40, 0.72);
}
body.dark-mode .case-page .case-filter-chip.is-active {
    color: #fff;
    border-color: transparent;
}
body.dark-mode .case-page .case-card-title a,
body.dark-mode .case-page .case-empty-state h3,
body.dark-mode .case-page .case-consult-card h2,
body.dark-mode .case-page .case-detail-title {
    color: #dbe9ff;
}
body.dark-mode .case-page .case-card-meta,
body.dark-mode .case-page .case-card-desc,
body.dark-mode .case-page .case-empty-state p,
body.dark-mode .case-page .case-consult-card p,
body.dark-mode .case-page .case-detail-desc,
body.dark-mode .case-page .case-rich-content {
    color: #a8bcde;
}
body.dark-mode .case-page .case-pager li {
    color: #9bb0d2;
}
body.dark-mode .case-page .case-pager li:first-child {
    color: #8fa6cd;
}
body.dark-mode .case-page .case-pager li a,
body.dark-mode .case-page .case-pager li span {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .case-page .case-pager li:first-child a,
body.dark-mode .case-page .case-pager li:first-child span {
    border: 0;
    background: transparent;
    color: inherit;
}
body.dark-mode .case-page .case-pager li .active,
body.dark-mode .case-page .case-pager li.active a,
body.dark-mode .case-page .case-pager li.active span,
body.dark-mode .case-page .case-pager li span:not([class]) {
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    border-color: transparent;
}

/* team page layout */
.team-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.team-page .section-padding { padding: 56px 0; }
.team-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.team-page .service-hero { margin-top: -64px; padding-top: 64px; }
.team-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.team-page .service-hero .about-hero-banner {
    min-height: 520px;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 36px rgba(15, 38, 84, 0.2);
}
.team-page .service-hero .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -90px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.team-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.team-page .service-hero .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
}
.team-page .service-hero .about-hero-summary-content p { margin: 0; }
.team-page .team-filter-section { position: relative; z-index: 10; padding: 30px 0 18px; }
.team-page .team-filter-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.team-page .team-filter-chip {
    display: inline-flex; align-items: center; justify-content: center;
    height: 40px; padding: 0 18px; border-radius: 999px; font-size: 13px;
    color: #5b7091; text-decoration: none; border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08); transition: all .25s ease;
}
.team-page .team-filter-chip:hover,
.team-page .team-filter-chip.is-active {
    color: #fff; border-color: transparent; background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.team-page .team-filter-chip.is-active { box-shadow: 0 0 20px rgba(42, 125, 225, 0.35); }
.team-page .team-list-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 24px; }
.team-page .team-card { position: relative; z-index: 1; }
.team-page .team-card-inner {
    border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px; background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1); overflow: hidden; height: 100%; display: flex; flex-direction: column;
}
.team-page .team-card-media { position: relative; height: 260px; overflow: hidden; }
.team-page .team-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.team-page .team-card:hover .team-card-media img { transform: scale(1.08); }
.team-page .team-card-tag {
    position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center;
    height: 26px; padding: 0 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
    color: #2A7DE1; border: 1px solid rgba(42, 125, 225, 0.3); background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(6px);
}
.team-page .team-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.team-page .team-card-title { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.team-page .team-card-title a { color: #1f3d71; text-decoration: none; transition: color .25s ease; }
.team-page .team-card:hover .team-card-title a { color: #2A7DE1; }
.team-page .team-card-meta { display: flex; align-items: center; gap: 6px; color: #5b7091; font-size: 13px; margin-bottom: 6px; }
.team-page .team-card-meta i { color: #2A7DE1; }
.team-page .team-card-desc { margin: 8px 0 14px; color: #5b7091; font-size: 13px; line-height: 1.75; }
.team-page .btn-neon.team-card-btn {
    margin-top: auto; display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px;
    border-radius: 10px; text-decoration: none; white-space: nowrap; color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.team-page .team-card-glow {
    position: absolute; inset: 0; z-index: -1; border-radius: 12px; opacity: 0; pointer-events: none;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.24), rgba(139, 92, 246, 0.24)); filter: blur(20px); transition: opacity .35s ease;
}
.team-page .team-card:hover .team-card-glow { opacity: .8; }
.team-page .team-pager { margin-top: 32px; display: flex; justify-content: center; }
.team-page .team-pager .join { padding: 10px 14px; border-radius: 12px; }
.team-page .team-pager ul, .team-page .team-pager ol, .team-page .team-pager .pagination {
    margin: 0; padding: 0; list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.team-page .team-pager li { margin: 0; list-style: none; color: #5b7091; font-size: 13px; line-height: 1; }
.team-page .team-pager li:first-child { padding: 0 6px; color: #6f86ab; }
.team-page .team-pager li a, .team-page .team-pager li span {
    display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px;
    border-radius: 10px; text-decoration: none; border: 1px solid rgba(42, 125, 225, 0.22); background: rgba(42, 125, 225, 0.08); color: #2A7DE1;
}
.team-page .team-pager li:first-child a, .team-page .team-pager li:first-child span { min-width: 0; height: auto; padding: 0; border: 0; background: transparent; color: inherit; }
.team-page .team-pager li .active, .team-page .team-pager li.active a, .team-page .team-pager li.active span, .team-page .team-pager li span:not([class]) {
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; color: #fff;
}
.team-page .team-empty-state { text-align: center; padding: 70px 0; }
.team-page .team-empty-icon { font-size: 56px; opacity: .3; margin-bottom: 10px; }
.team-page .team-empty-state h3 { margin: 0 0 8px; font-size: 26px; color: #1f3d71; }
.team-page .team-empty-state p { margin: 0; color: #5b7091; }
.team-page .team-join-section { padding: 0 0 72px; }
.team-page .team-join-card {
    position: relative; overflow: hidden; text-align: center; border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px;
    background: rgba(255, 255, 255, 0.9); box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1); padding: 44px 24px;
}
.team-page .team-join-card h2 { margin: 0 0 10px; font-size: 34px; line-height: 1.2; color: #1f3d71; }
.team-page .team-join-card p { margin: 0 auto 24px; max-width: 680px; color: #5b7091; font-size: 18px; }
.team-page .team-join-btn {
    display: inline-flex; align-items: center; gap: 6px; justify-content: center; height: 46px; padding: 0 28px;
    border-radius: 12px; color: #fff; text-decoration: none; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); position: relative; z-index: 2;
}
.team-page .team-join-glow {
    position: absolute; width: 180px; height: 180px; border-radius: 999px; opacity: .2; filter: blur(38px); pointer-events: none;
}
.team-page .team-join-glow-right { top: -65px; right: -65px; background: #2A7DE1; }
.team-page .team-join-glow-left { bottom: -65px; left: -65px; background: #8B5CF6; }
.team-page .team-detail-section { padding-top: 44px; }
.team-page .team-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px; background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1); padding: 28px 24px;
}
.team-page .team-detail-title { margin: 0 0 14px; font-size: 30px; line-height: 1.2; color: #1f3d71; }
.team-page .team-detail-back-row { margin-bottom: 10px; }
.team-page .team-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.team-page .team-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.team-page .team-detail-meta { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-bottom: 10px; }
.team-page .team-detail-desc { margin: 0 0 16px; color: #4a5f86; line-height: 1.8; }
.team-page .team-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.team-page .team-gallery-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; cursor: zoom-in; }
.team-page .team-rich-content { color: #4a5f86; line-height: 1.9; font-size: 14px; }
.team-page .team-rich-content img { max-width: 100%; height: auto; cursor: zoom-in; border-radius: 8px; }
.team-image-preview { position: fixed; inset: 0; z-index: 9999; display: none; }
.team-image-preview.is-open { display: block; }
.team-image-preview-mask { position: absolute; inset: 0; background: rgba(6, 10, 20, 0.86); }
.team-image-preview-body { position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; }
.team-image-preview-body img { max-width: min(1200px, 92vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45); }
.team-image-preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.team-image-preview-nav.is-prev { left: 18px; }
.team-image-preview-nav.is-next { right: 18px; }
.team-image-preview-close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
}
body.team-preview-open { overflow: hidden; }
@media (min-width: 768px) { .team-page .team-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .team-page .team-list-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 767px) {
    .team-page .section-padding { padding: 38px 0; }
    .team-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .team-page .service-hero .about-hero-banner { min-height: 320px; }
    .team-page .service-hero .about-hero-summary-card { width: calc(100% - 30px); margin-top: -56px; padding: 14px 12px; }
    .team-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .team-page .team-filter-section { padding-top: 22px; }
    .team-page .team-pager .join { padding: 8px 10px; border-radius: 10px; }
    .team-page .team-pager ul, .team-page .team-pager ol, .team-page .team-pager .pagination { gap: 6px; }
    .team-page .team-pager li { font-size: 12px; }
    .team-page .team-pager li a, .team-page .team-pager li span { min-width: 30px; height: 30px; padding: 0 8px; border-radius: 8px; }
    .team-page .team-join-card h2 { font-size: 30px; }
    .team-page .team-join-card p { font-size: 15px; }
    .team-page .team-detail-title { font-size: 30px; }
    .team-page .team-gallery { grid-template-columns: 1fr; }
    .team-image-preview-nav {
        width: 36px;
        height: 36px;
        font-size: 26px;
    }
    .team-image-preview-nav.is-prev { left: 10px; }
    .team-image-preview-nav.is-next { right: 10px; }
}
@media (max-width: 480px) { .team-page .team-pager li:first-child { display: none; } }
/* team page dark mode */
body.dark-mode .team-page .tech-shell { background: rgba(18, 24, 44, 0.72); }
body.dark-mode .team-page .service-hero .about-hero-summary-card { background: rgba(22, 30, 52, 0.94); border-color: rgba(126, 173, 255, 0.32); }
body.dark-mode .team-page .service-hero .about-hero-summary-card h2 { color: #dbe9ff; }
body.dark-mode .team-page .service-hero .about-hero-summary-content { color: #a8bcde; }
body.dark-mode .team-page .team-card-inner,
body.dark-mode .team-page .team-join-card,
body.dark-mode .team-page .team-detail-card,
body.dark-mode .team-page .team-pager .glass-card {
    background: rgba(22, 30, 52, 0.9); border-color: rgba(126, 173, 255, 0.28); box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .team-page .team-filter-chip { color: #8cb8ff; background: rgba(64, 130, 255, 0.14); border-color: rgba(126, 173, 255, 0.3); }
body.dark-mode .team-page .team-filter-chip.is-active { color: #fff; border-color: transparent; }
body.dark-mode .team-page .team-card-tag { color: #8cb8ff; border-color: rgba(126, 173, 255, 0.34); background: rgba(16, 22, 40, 0.72); }
body.dark-mode .team-page .team-back-btn {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .team-page .team-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
body.dark-mode .team-page .team-card-title a,
body.dark-mode .team-page .team-empty-state h3,
body.dark-mode .team-page .team-join-card h2,
body.dark-mode .team-page .team-detail-title { color: #dbe9ff; }
body.dark-mode .team-page .team-card-meta,
body.dark-mode .team-page .team-card-desc,
body.dark-mode .team-page .team-empty-state p,
body.dark-mode .team-page .team-join-card p,
body.dark-mode .team-page .team-detail-desc,
body.dark-mode .team-page .team-rich-content { color: #a8bcde; }
body.dark-mode .team-page .team-pager li { color: #9bb0d2; }
body.dark-mode .team-page .team-pager li:first-child { color: #8fa6cd; }
body.dark-mode .team-page .team-pager li a,
body.dark-mode .team-page .team-pager li span { color: #8cb8ff; background: rgba(64, 130, 255, 0.14); border-color: rgba(126, 173, 255, 0.3); }
body.dark-mode .team-page .team-pager li:first-child a,
body.dark-mode .team-page .team-pager li:first-child span { border: 0; background: transparent; color: inherit; }
body.dark-mode .team-page .team-pager li .active,
body.dark-mode .team-page .team-pager li.active a,
body.dark-mode .team-page .team-pager li.active span,
body.dark-mode .team-page .team-pager li span:not([class]) { color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; }

/* produce page */
.produce-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.produce-page .section-padding { padding: 56px 0; }
.produce-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.produce-page .service-hero { margin-top: -64px; padding-top: 64px; }
.produce-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.produce-page .service-hero .about-hero-banner {
    width: 100%;
    min-height: 470px;
    border-radius: 0;
    box-shadow: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.produce-page .service-hero .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -90px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.produce-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.produce-page .service-hero .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
}
.produce-page .service-hero .about-hero-summary-content p { margin: 0; }

.produce-page .produce-filter-section { padding: 26px 0 6px; }
.produce-page .produce-filter-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.produce-page .produce-filter-chip {
    display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px;
    border-radius: 999px; border: 1px solid rgba(42, 125, 225, 0.2); background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1; text-decoration: none; font-size: 14px; transition: all .2s ease;
}
.produce-page .produce-filter-chip:hover { color: #fff; border-color: transparent; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); }
.produce-page .produce-filter-chip.is-active { color: #fff; border-color: transparent; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); box-shadow: 0 0 20px rgba(42, 125, 225, 0.45); }

.produce-page .produce-list-grid { display: grid; gap: 18px; }
.produce-page .produce-card { position: relative; z-index: 1; }
.produce-page .produce-card-inner {
    position: relative; overflow: hidden; border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px;
    background: rgba(255, 255, 255, 0.9); box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1); height: 100%;
}
.produce-page .produce-card-media { position: relative; height: 220px; overflow: hidden; }
.produce-page .produce-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.produce-page .produce-card:hover .produce-card-media img { transform: scale(1.08); }
.produce-page .produce-price-tag {
    position: absolute; top: 12px; right: 12px; z-index: 2; height: 28px; padding: 0 10px; border-radius: 999px;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1); color: #fff; font-size: 12px; display: inline-flex; align-items: center;
}
.produce-page .produce-card-mask {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 15, 30, 0.9), rgba(11, 15, 30, 0.1));
    opacity: 0; transition: opacity .3s ease;
}
.produce-page .produce-card-action {
    position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s ease;
}
.produce-page .produce-card:hover .produce-card-mask,
.produce-page .produce-card:hover .produce-card-action { opacity: 1; }
.produce-page .produce-card-btn {
    display: inline-flex; align-items: center; gap: 6px; justify-content: center; height: 38px; padding: 0 16px;
    border-radius: 10px; color: #fff; text-decoration: none; font-size: 13px;
}
.produce-page .produce-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.produce-page .produce-card-title { margin: 0; font-size: 22px; line-height: 1.25; }
.produce-page .produce-card-title a {
    color: #1f3d71; text-decoration: none; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;
}
.produce-page .produce-card-desc {
    margin: 0; color: #5b7091; font-size: 14px; line-height: 1.75; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.produce-page .produce-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.produce-page .produce-tags span {
    display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 6px;
    background: rgba(42, 125, 225, 0.08); border: 1px solid rgba(42, 125, 225, 0.18); color: #5a6f90; font-size: 12px;
}
.produce-page .produce-card-line {
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #2A7DE1, #8B5CF6); transition: width .35s ease;
}
.produce-page .produce-card:hover .produce-card-line { width: 100%; }
.produce-page .produce-card-glow {
    position: absolute; inset: -6px; border-radius: 16px; z-index: -1; pointer-events: none;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.45), rgba(139, 92, 246, 0.4)); filter: blur(16px); opacity: 0; transition: opacity .25s ease;
}
.produce-page .produce-card:hover .produce-card-glow { opacity: .7; }

.produce-page .produce-pager { margin-top: 32px; display: flex; justify-content: center; }
.produce-page .produce-pager .join { background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px; padding: 10px 12px; }
.produce-page .produce-pager ul,
.produce-page .produce-pager ol,
.produce-page .produce-pager .pagination { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 8px; }
.produce-page .produce-pager li { margin: 0; list-style: none; line-height: 1; color: #6b7ea0; font-size: 13px; }
.produce-page .produce-pager li:first-child { line-height: 1.4; }
.produce-page .produce-pager li a,
.produce-page .produce-pager li span {
    display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px;
    border-radius: 10px; text-decoration: none; border: 1px solid rgba(42, 125, 225, 0.22); background: rgba(42, 125, 225, 0.08); color: #2A7DE1;
}
.produce-page .produce-pager li:first-child a,
.produce-page .produce-pager li:first-child span { min-width: 0; height: auto; padding: 0; border: 0; background: transparent; color: inherit; }
.produce-page .produce-pager li .active,
.produce-page .produce-pager li.active a,
.produce-page .produce-pager li.active span,
.produce-page .produce-pager li span:not([class]) { background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; color: #fff; }

.produce-page .produce-empty-state { text-align: center; padding: 70px 0; }
.produce-page .produce-empty-icon { font-size: 56px; opacity: .3; margin-bottom: 10px; }
.produce-page .produce-empty-state h3 { margin: 0 0 8px; font-size: 26px; color: #1f3d71; }
.produce-page .produce-empty-state p { margin: 0; color: #5b7091; }

.produce-page .produce-consult-section { padding: 0 0 72px; }
.produce-page .produce-consult-card {
    position: relative; overflow: hidden; text-align: center; border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px;
    background: rgba(255, 255, 255, 0.9); box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1); padding: 44px 24px;
}
.produce-page .produce-consult-card h2 { margin: 0 0 10px; font-size: 34px; line-height: 1.2; color: #1f3d71; }
.produce-page .produce-consult-card p { margin: 0 auto 24px; max-width: 680px; color: #5b7091; font-size: 18px; }
.produce-page .produce-consult-btn {
    display: inline-flex; align-items: center; gap: 6px; justify-content: center; height: 46px; padding: 0 28px;
    border-radius: 12px; color: #fff; text-decoration: none; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); position: relative; z-index: 2;
}
.produce-page .produce-consult-glow {
    position: absolute; width: 180px; height: 180px; border-radius: 999px; opacity: .2; filter: blur(38px); pointer-events: none;
}
.produce-page .produce-consult-glow-right { top: -65px; right: -65px; background: #2A7DE1; }
.produce-page .produce-consult-glow-left { bottom: -65px; left: -65px; background: #8B5CF6; }

.produce-page .produce-detail-section { padding-top: 44px; }
.produce-page .produce-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62); border-radius: 12px; background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1); padding: 28px 24px;
}
.produce-page .produce-detail-back-row { margin-bottom: 10px; }
.produce-page .produce-back-btn {
    display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 12px; border-radius: 9px;
    text-decoration: none; font-size: 13px; color: #2A7DE1; border: 1px solid rgba(42, 125, 225, 0.24); background: rgba(42, 125, 225, 0.08);
}
.produce-page .produce-back-btn:hover { color: #fff; border-color: transparent; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); }
.produce-page .produce-detail-title { margin: 0 0 12px; font-size: 30px; line-height: 1.2; color: #1f3d71; }
.produce-page .produce-detail-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; color: #5b7091; }
.produce-page .produce-detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.produce-page .produce-detail-meta i { color: #2A7DE1; }
.produce-page .produce-detail-desc { margin: 0 0 16px; color: #4a5f86; line-height: 1.8; }
.produce-page .produce-detail-cover { margin-bottom: 16px; }
.produce-page .produce-detail-cover img { width: 100%; border-radius: 10px; display: block; }
.produce-page .produce-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.produce-page .produce-detail-tags span {
    display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 999px;
    color: #2A7DE1; border: 1px solid rgba(42, 125, 225, 0.24); background: rgba(42, 125, 225, 0.08); font-size: 12px;
}
.produce-page .produce-rich-content { color: #4a5f86; line-height: 1.9; font-size: 14px; }
.produce-page .produce-rich-content img { max-width: 100%; height: auto; cursor: zoom-in; border-radius: 8px; }

.produce-image-preview { position: fixed; inset: 0; z-index: 9999; display: none; }
.produce-image-preview.is-open { display: block; }
.produce-image-preview-mask { position: absolute; inset: 0; background: rgba(6, 10, 20, 0.86); }
.produce-image-preview-body { position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; }
.produce-image-preview-body img { max-width: min(1200px, 92vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45); }
.produce-image-preview-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 32px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.produce-image-preview-nav.is-prev { left: 18px; }
.produce-image-preview-nav.is-next { right: 18px; }
.produce-image-preview-close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
}
body.produce-preview-open { overflow: hidden; }

@media (min-width: 768px) { .produce-page .produce-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .produce-page .produce-list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) {
    .produce-page .section-padding { padding: 38px 0; }
    .produce-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .produce-page .service-hero .about-hero-banner { min-height: 320px; }
    .produce-page .service-hero .about-hero-summary-card { width: calc(100% - 30px); margin-top: -56px; padding: 14px 12px; }
    .produce-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .produce-page .produce-filter-section { padding-top: 22px; }
    .produce-page .produce-card-title { font-size: 20px; }
    .produce-page .produce-pager .join { padding: 8px 10px; border-radius: 10px; }
    .produce-page .produce-pager ul, .produce-page .produce-pager ol, .produce-page .produce-pager .pagination { gap: 6px; }
    .produce-page .produce-pager li { font-size: 12px; }
    .produce-page .produce-pager li a, .produce-page .produce-pager li span { min-width: 30px; height: 30px; padding: 0 8px; border-radius: 8px; }
    .produce-page .produce-consult-card h2 { font-size: 30px; }
    .produce-page .produce-consult-card p { font-size: 15px; }
    .produce-page .produce-detail-title { font-size: 30px; }
    .produce-image-preview-nav { width: 36px; height: 36px; font-size: 26px; }
    .produce-image-preview-nav.is-prev { left: 10px; }
    .produce-image-preview-nav.is-next { right: 10px; }
}
@media (max-width: 480px) { .produce-page .produce-pager li:first-child { display: none; } }

/* produce page dark mode */
body.dark-mode .produce-page .tech-shell { background: rgba(18, 24, 44, 0.72); }
body.dark-mode .produce-page .service-hero .about-hero-summary-card { background: rgba(22, 30, 52, 0.94); border-color: rgba(126, 173, 255, 0.32); }
body.dark-mode .produce-page .service-hero .about-hero-summary-card h2 { color: #dbe9ff; }
body.dark-mode .produce-page .service-hero .about-hero-summary-content { color: #a8bcde; }
body.dark-mode .produce-page .produce-card-inner,
body.dark-mode .produce-page .produce-consult-card,
body.dark-mode .produce-page .produce-detail-card,
body.dark-mode .produce-page .produce-pager .glass-card { background: rgba(22, 30, 52, 0.9); border-color: rgba(126, 173, 255, 0.28); box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35); }
body.dark-mode .produce-page .produce-filter-chip { color: #8cb8ff; background: rgba(64, 130, 255, 0.14); border-color: rgba(126, 173, 255, 0.3); }
body.dark-mode .produce-page .produce-filter-chip.is-active { color: #fff; border-color: transparent; }
body.dark-mode .produce-page .produce-card-title a,
body.dark-mode .produce-page .produce-empty-state h3,
body.dark-mode .produce-page .produce-consult-card h2,
body.dark-mode .produce-page .produce-detail-title { color: #dbe9ff; }
body.dark-mode .produce-page .produce-card-desc,
body.dark-mode .produce-page .produce-empty-state p,
body.dark-mode .produce-page .produce-consult-card p,
body.dark-mode .produce-page .produce-detail-desc,
body.dark-mode .produce-page .produce-detail-meta,
body.dark-mode .produce-page .produce-rich-content { color: #a8bcde; }
body.dark-mode .produce-page .produce-tags span,
body.dark-mode .produce-page .produce-detail-tags span { color: #8cb8ff; border-color: rgba(126, 173, 255, 0.3); background: rgba(64, 130, 255, 0.14); }
body.dark-mode .produce-page .produce-pager li { color: #9bb0d2; }
body.dark-mode .produce-page .produce-pager li:first-child { color: #8fa6cd; }
body.dark-mode .produce-page .produce-pager li a,
body.dark-mode .produce-page .produce-pager li span { color: #8cb8ff; background: rgba(64, 130, 255, 0.14); border-color: rgba(126, 173, 255, 0.3); }
body.dark-mode .produce-page .produce-pager li:first-child a,
body.dark-mode .produce-page .produce-pager li:first-child span { border: 0; background: transparent; color: inherit; }
body.dark-mode .produce-page .produce-pager li .active,
body.dark-mode .produce-page .produce-pager li.active a,
body.dark-mode .produce-page .produce-pager li.active span,
body.dark-mode .produce-page .produce-pager li span:not([class]) { color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; }
body.dark-mode .produce-page .produce-back-btn { color: #8cb8ff; border-color: rgba(126, 173, 255, 0.3); background: rgba(64, 130, 255, 0.14); }
body.dark-mode .produce-page .produce-back-btn:hover { color: #fff; border-color: transparent; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); }

/* partner page layout */
.partner-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.partner-page .section-padding { padding: 56px 0; }
.partner-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.partner-page .service-hero { margin-top: -64px; padding-top: 64px; }
.partner-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.partner-page .service-hero .about-hero-banner {
    min-height: 520px;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 36px rgba(15, 38, 84, 0.2);
}
.partner-page .service-hero .about-hero-summary-card {
    position: relative;
    z-index: 2;
    width: min(1260px, calc(100% - 56px));
    margin: -90px auto 0;
    border: 1px solid #eceff6;
    background: #f7f8fb;
    border-radius: 4px;
    box-shadow: 0 16px 30px rgba(17, 49, 109, 0.12);
    padding: 20px 24px;
    text-align: center;
}
.partner-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #1f3d71;
}
.partner-page .service-hero .about-hero-summary-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4a5f86;
}
.partner-page .service-hero .about-hero-summary-content p { margin: 0; }

.partner-page .about-partners-v2 .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
@media (min-width: 768px) {
    .partner-page .about-partners-v2 .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .partner-page .about-partners-v2 .grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.partner-page .about-partner-card {
    min-height: 188px;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.partner-page .about-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(27, 70, 149, 0.16);
}
.partner-page .about-partner-logo-wrap {
    height: 108px;
    display: grid;
    place-items: center;
}
.partner-page .about-partner-logo {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}
.partner-page .about-partner-title {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #1f3d71;
}

.partner-page .partner-pager { margin-top: 26px; display: flex; justify-content: center; }
.partner-page .partner-pager .join {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    padding: 10px 12px;
}
.partner-page .partner-pager ul,
.partner-page .partner-pager ol,
.partner-page .partner-pager .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.partner-page .partner-pager li {
    margin: 0;
    list-style: none;
    line-height: 1;
    color: #6b7ea0;
    font-size: 13px;
}
.partner-page .partner-pager li:first-child { line-height: 1.4; }
.partner-page .partner-pager li a,
.partner-page .partner-pager li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1;
}
.partner-page .partner-pager li:first-child a,
.partner-page .partner-pager li:first-child span { min-width: 0; height: auto; padding: 0; border: 0; background: transparent; color: inherit; }
.partner-page .partner-pager li .active,
.partner-page .partner-pager li.active a,
.partner-page .partner-pager li.active span,
.partner-page .partner-pager li span:not([class]) { background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; color: #fff; }

.partner-page .partner-empty-state { text-align: center; padding: 70px 0; }
.partner-page .partner-empty-icon { font-size: 56px; opacity: .3; margin-bottom: 10px; }
.partner-page .partner-empty-state h3 { margin: 0 0 8px; font-size: 26px; color: #1f3d71; }
.partner-page .partner-empty-state p { margin: 0; color: #5b7091; }
.partner-page .partner-join-section { position: relative; z-index: 10; padding: 0 0 80px; }
.partner-page .partner-join-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 48px;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(24, 62, 132, 0.14);
}
.partner-page .partner-join-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    opacity: .2;
    filter: blur(36px);
    transition: opacity .25s ease;
    pointer-events: none;
}
.partner-page .partner-join-card:hover .partner-join-glow { opacity: .3; }
.partner-page .partner-join-glow-right { top: -80px; right: -80px; background: #2A7DE1; }
.partner-page .partner-join-glow-left { bottom: -80px; left: -80px; background: #8B5CF6; }
.partner-page .partner-join-card h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    color: #1f3d71;
}
.partner-page .partner-join-card p {
    position: relative;
    margin: 0 auto 28px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.75;
    color: #94A3B8;
}
.partner-page .partner-join-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
.partner-page .partner-join-btn i { transition: transform .25s ease; }
.partner-page .partner-join-btn:hover i { transform: translateX(6px); }

.partner-page .partner-detail-section { padding-top: 44px; }
.partner-page .partner-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 28px 24px;
}
.partner-page .partner-detail-back-row { margin-bottom: 10px; }
.partner-page .partner-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.partner-page .partner-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.partner-page .partner-detail-title { margin: 0 0 14px; font-size: 30px; line-height: 1.2; color: #1f3d71; }
.partner-page .partner-detail-cover { margin-bottom: 16px; }
.partner-page .partner-detail-cover img { width: 100%; border-radius: 10px; display: block; }
.partner-page .partner-detail-desc { margin: 0 0 16px; color: #4a5f86; line-height: 1.8; }
.partner-page .partner-rich-content { color: #4a5f86; line-height: 1.9; font-size: 14px; }
.partner-page .partner-rich-content img { max-width: 100%; height: auto; border-radius: 8px; }

@media (max-width: 767px) {
    .partner-page .section-padding { padding: 38px 0; }
    .partner-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .partner-page .service-hero .about-hero-banner { min-height: 320px; }
    .partner-page .service-hero .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .partner-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .partner-page .about-partners-v2 .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .partner-page .about-partner-card { min-height: 170px; }
    .partner-page .about-partner-logo-wrap { height: 92px; }
    .partner-page .partner-join-section { padding-bottom: 56px; }
    .partner-page .partner-join-card { padding: 32px 18px; border-radius: 14px; }
    .partner-page .partner-join-card h2 { font-size: 30px; }
    .partner-page .partner-join-card p { font-size: 15px; margin-bottom: 20px; }
    .partner-page .partner-join-btn { font-size: 16px; padding: 12px 22px; }
    .partner-page .partner-detail-title { font-size: 30px; }
}
@media (max-width: 480px) { .partner-page .partner-pager li:first-child { display: none; } }

/* partner page dark mode */
body.dark-mode .partner-page .tech-shell { background: rgba(18, 24, 44, 0.72); }
body.dark-mode .partner-page .service-hero .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .partner-page .service-hero .about-hero-summary-card h2 { color: #dbe9ff; }
body.dark-mode .partner-page .service-hero .about-hero-summary-content { color: #a8bcde; }
body.dark-mode .partner-page .about-partner-card,
body.dark-mode .partner-page .partner-detail-card,
body.dark-mode .partner-page .partner-pager .glass-card,
body.dark-mode .partner-page .partner-join-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .partner-page .about-partner-title,
body.dark-mode .partner-page .partner-empty-state h3,
body.dark-mode .partner-page .partner-detail-title,
body.dark-mode .partner-page .partner-join-card h2 { color: #dbe9ff; }
body.dark-mode .partner-page .partner-empty-state p,
body.dark-mode .partner-page .partner-detail-desc,
body.dark-mode .partner-page .partner-rich-content,
body.dark-mode .partner-page .partner-join-card p { color: #a8bcde; }
body.dark-mode .partner-page .partner-back-btn {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .partner-page .partner-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
body.dark-mode .partner-page .partner-pager li { color: #9bb0d2; }
body.dark-mode .partner-page .partner-pager li:first-child { color: #8fa6cd; }
body.dark-mode .partner-page .partner-pager li a,
body.dark-mode .partner-page .partner-pager li span {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .partner-page .partner-pager li:first-child a,
body.dark-mode .partner-page .partner-pager li:first-child span { border: 0; background: transparent; color: inherit; }
body.dark-mode .partner-page .partner-pager li .active,
body.dark-mode .partner-page .partner-pager li.active a,
body.dark-mode .partner-page .partner-pager li.active span,
body.dark-mode .partner-page .partner-pager li span:not([class]) { color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; }

/* =========================
   ljnews / news page
========================= */
.module-search-section { padding: 20px 0 8px; }
.module-search-wrap { max-width: 760px; margin: 0 auto; }
.module-search-form { position: relative; }
.module-search-input {
    width: 100%;
    height: 50px;
    padding: 0 56px 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(255, 255, 255, 0.88);
    color: #2b3f65;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.module-search-input::placeholder { color: #8da0bf; }
.module-search-input:focus {
    border-color: rgba(42, 125, 225, 0.55);
    box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.12);
}
.module-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(42, 125, 225, 0.12);
    color: #2A7DE1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}
.module-search-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.module-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #7c90b2;
    font-size: 13px;
}
.module-breadcrumbs a {
    color: #7c90b2;
    text-decoration: none;
    transition: color .2s ease;
}
.module-breadcrumbs a:hover { color: #2A7DE1; }
.module-breadcrumbs strong { color: #1f3d71; font-weight: 600; }
.case-page .case-detail-card,
.recruit-page .recruit-detail-card,
.produce-page .produce-detail-card,
.team-page .team-detail-card,
.news-page .news-detail-card { position: relative; }
.module-breadcrumbs,
.news-page .news-detail-card .news-breadcrumbs {
    padding-right: 170px;
    min-height: 34px;
}
.case-page .case-detail-back-row,
.recruit-page .recruit-detail-back-row,
.produce-page .produce-detail-back-row,
.team-page .team-detail-back-row,
.news-page .news-detail-back-row {
    position: absolute;
    top: 28px;
    right: 24px;
    margin: 0;
    z-index: 2;
}

.news-page .container { width: min(1260px, calc(100% - 56px)); margin: 0 auto; }
.news-page .section-padding { padding: 56px 0; }
.news-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.news-page .service-hero { margin-top: -64px; padding-top: 64px; }
.news-page .service-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.news-page .service-hero .about-hero-banner {
    min-height: 420px;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 20px 36px rgba(19, 59, 128, 0.2);
}
.news-page .service-hero .about-hero-summary-card {
    position: relative;
    width: min(1120px, calc(100% - 72px));
    margin: -78px auto 0;
    padding: 22px 30px;
    border-radius: 16px;
    border: 1px solid rgba(191, 219, 254, 0.62);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(19, 59, 128, 0.12);
    color: #4a5f86;
    text-align: center;
}
.news-page .service-hero .about-hero-summary-card h2 {
    margin: 0 0 6px;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1f3d71;
}
.news-page .service-hero .about-hero-summary-content {
    margin: 0;
    color: #4a5f86;
    line-height: 1.9;
    font-size: 15px;
}
.news-page .service-hero .about-hero-summary-content p { margin: 0; }

.news-page .news-filter-section { padding-top: 24px; }
.news-page .news-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.news-page .news-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    color: #5f7598;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.news-page .news-filter-chip:hover,
.news-page .news-filter-chip.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
    box-shadow: 0 10px 20px rgba(47, 123, 240, 0.24);
}

.news-page .news-search-section { padding: 20px 0 8px; }
.news-page .news-search-wrap { max-width: 760px; margin: 0 auto; }
.news-page .news-search-form { position: relative; }
.news-page .news-search-input {
    width: 100%;
    height: 50px;
    padding: 0 56px 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(255, 255, 255, 0.88);
    color: #2b3f65;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.news-page .news-search-input::placeholder { color: #8da0bf; }
.news-page .news-search-input:focus {
    border-color: rgba(42, 125, 225, 0.55);
    box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.12);
}
.news-page .news-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(42, 125, 225, 0.12);
    color: #2A7DE1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}
.news-page .news-search-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}

.news-page .news-list-section { padding-top: 26px; }
.news-page .news-list-wrap {
    display: grid;
    gap: 18px;
}
.news-page .news-card { position: relative; }
.news-page .news-card-inner {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
}
.news-page .news-card-layout {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    min-height: 220px;
}
.news-page .news-card-media { overflow: hidden; }
.news-page .news-card-media-link,
.news-page .news-card-media img {
    width: 100%;
    height: 100%;
    display: block;
}
.news-page .news-card-media img {
    object-fit: cover;
    transition: transform .7s ease;
}
.news-page .news-card:hover .news-card-media img { transform: scale(1.06); }
.news-page .news-card-content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-page .news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #7084a6;
}
.news-page .news-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.news-page .news-card-meta i { color: #2A7DE1; }
.news-page .news-card-title {
    margin: 0;
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.35;
}
.news-page .news-card-title a {
    color: #1f3d71;
    text-decoration: none;
    transition: color .2s ease;
}
.news-page .news-card-title a:hover { color: #2A7DE1; }
.news-page .news-card-desc {
    margin: 0;
    color: #4a5f86;
    line-height: 1.8;
    font-size: 14px;
}
.news-page .news-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2A7DE1;
    text-decoration: none;
    font-size: 14px;
}
.news-page .news-card-link i { transition: transform .2s ease; }
.news-page .news-card-link:hover { color: #1f5fd1; }
.news-page .news-card-link:hover i { transform: translateX(5px); }
.news-page .news-card-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2f7bf0, #8B5CF6);
    transition: width .35s ease;
}
.news-page .news-card:hover .news-card-line { width: 100%; }
.news-page .news-card-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 16px;
    background: linear-gradient(135deg, #2f7bf0, #8B5CF6);
    opacity: 0;
    filter: blur(20px);
    transition: opacity .3s ease;
}
.news-page .news-card:hover .news-card-glow { opacity: .16; }

.news-page .news-pager { margin-top: 24px; display: flex; justify-content: center; }
.news-page .news-pager .join {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    padding: 10px 12px;
}
.news-page .news-pager ul,
.news-page .news-pager ol,
.news-page .news-pager .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.news-page .news-pager li {
    margin: 0;
    list-style: none;
    line-height: 1;
    color: #6b7ea0;
    font-size: 13px;
}
.news-page .news-pager li:first-child { line-height: 1.4; }
.news-page .news-pager li a,
.news-page .news-pager li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(42, 125, 225, 0.22);
    background: rgba(42, 125, 225, 0.08);
    color: #2A7DE1;
}
.news-page .news-pager li:first-child a,
.news-page .news-pager li:first-child span { min-width: 0; height: auto; padding: 0; border: 0; background: transparent; color: inherit; }
.news-page .news-pager li .active,
.news-page .news-pager li.active a,
.news-page .news-pager li.active span,
.news-page .news-pager li span:not([class]) { background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; color: #fff; }

.news-page .news-empty-state { text-align: center; padding: 70px 0; }
.news-page .news-empty-icon { font-size: 56px; opacity: .3; margin-bottom: 10px; }
.news-page .news-empty-state h3 { margin: 0 0 8px; font-size: 26px; color: #1f3d71; }
.news-page .news-empty-state p { margin: 0; color: #5b7091; }

.news-page .news-subscribe-section { position: relative; z-index: 10; padding: 0 0 80px; }
.news-page .news-subscribe-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 48px;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(24, 62, 132, 0.14);
}
.news-page .news-subscribe-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    opacity: .2;
    filter: blur(36px);
    pointer-events: none;
    transition: opacity .25s ease;
}
.news-page .news-subscribe-card:hover .news-subscribe-glow { opacity: .3; }
.news-page .news-subscribe-glow-right { top: -80px; right: -80px; background: #2A7DE1; }
.news-page .news-subscribe-glow-left { bottom: -80px; left: -80px; background: #8B5CF6; }
.news-page .news-subscribe-card h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    color: #1f3d71;
}
.news-page .news-subscribe-card p {
    position: relative;
    margin: 0 auto 26px;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.75;
    color: #6f84a8;
}
.news-page .news-subscribe-form {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}
.news-page .news-subscribe-input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(255, 255, 255, 0.9);
    color: #2b3f65;
    padding: 0 16px;
    outline: none;
}
.news-page .news-subscribe-input::placeholder { color: #8da0bf; }
.news-page .news-subscribe-input:focus {
    border-color: rgba(42, 125, 225, 0.55);
    box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.12);
}
.news-page .news-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 132px;
    height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
}
.news-page .news-subscribe-btn i { transition: transform .25s ease; }
.news-page .news-subscribe-btn:hover i { transform: translateX(6px); }
.news-page .news-subscribe-card .news-subscribe-btn { margin: 0 auto; }
.news-page .news-subscribe-form { display: none; }

/* detail page */
.news-page .news-detail-breadcrumb { padding-top: 28px; }
.news-page .news-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #7c90b2;
    font-size: 13px;
}
.news-page .news-breadcrumbs a {
    color: #7c90b2;
    text-decoration: none;
    transition: color .2s ease;
}
.news-page .news-breadcrumbs a:hover { color: #2A7DE1; }
.news-page .news-breadcrumbs strong { color: #1f3d71; font-weight: 600; }
.news-page .news-detail-card .news-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 14px;
}

.news-page .news-detail-section { padding-top: 20px; }
.news-page .news-detail-card {
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(24, 62, 132, 0.1);
    padding: 28px 24px;
}
.news-page .news-detail-back-row { margin-bottom: 10px; }
.news-page .news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.news-page .news-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
.news-page .news-detail-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    color: #1f3d71;
}
.news-page .news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: #7186a8;
    font-size: 13px;
}
.news-page .news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.news-page .news-detail-meta i { color: #2A7DE1; }
.news-page .news-detail-cover { margin-bottom: 14px; }
.news-page .news-detail-cover img { width: 100%; border-radius: 10px; display: block; }
.news-page .news-detail-desc { margin: 0 0 16px; color: #4a5f86; line-height: 1.85; }
.news-page .news-rich-content { color: #4a5f86; line-height: 1.9; font-size: 14px; }
.news-page .news-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: zoom-in;
}

.news-page .news-neighbor-section { padding: 0 0 44px; }
.news-page .news-neighbor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.news-page .news-neighbor-card {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.news-page .news-neighbor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 123, 240, 0.35);
    box-shadow: 0 10px 20px rgba(24, 62, 132, 0.12);
}
.news-page .news-neighbor-card span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #7890b5;
    font-size: 12px;
}
.news-page .news-neighbor-card h4 {
    margin: 8px 0 0;
    color: #1f3d71;
    font-size: 14px;
    line-height: 1.5;
}
.news-page .news-neighbor-card.is-next { text-align: right; }
.news-page .news-neighbor-card.is-next span { justify-content: flex-end; }
.news-page .news-neighbor-empty {
    border: 1px dashed rgba(191, 219, 254, 0.7);
    border-radius: 12px;
}

.news-page .news-related-section { padding: 0 0 80px; }
.news-page .news-related-title {
    margin: 0 0 18px;
    text-align: center;
    color: #1f3d71;
    font-size: clamp(24px, 2.4vw, 34px);
}
.news-page .news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.news-page .news-related-card {
    overflow: hidden;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
}
.news-page .news-related-media,
.news-page .news-related-media img { display: block; width: 100%; }
.news-page .news-related-media img { height: 190px; object-fit: cover; }
.news-page .news-related-body { padding: 12px; }
.news-page .news-related-date {
    font-size: 12px;
    color: #7084a6;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.news-page .news-related-body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.45;
}
.news-page .news-related-body h3 a {
    color: #1f3d71;
    text-decoration: none;
}
.news-page .news-related-body h3 a:hover { color: #2A7DE1; }
.news-page .news-related-body p {
    margin: 0;
    font-size: 13px;
    color: #5d7398;
    line-height: 1.75;
}
.news-page .news-related-empty {
    margin: 16px 0 0;
    text-align: center;
    color: #7d91b3;
}

/* rich image preview */
.news-image-preview {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}
.news-image-preview.is-open { display: block; }
.news-image-preview-mask {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 24, 0.82);
}
.news-image-preview-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.news-image-preview-body img {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}
.news-image-preview-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.news-image-preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.news-image-preview-nav.is-prev { left: 20px; }
.news-image-preview-nav.is-next { right: 20px; }
body.news-preview-open { overflow: hidden; }

@media (max-width: 980px) {
    .news-page .news-card-layout { grid-template-columns: 1fr; }
    .news-page .news-card-media { max-height: 240px; }
    .news-page .news-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .module-search-section { padding-top: 14px; }
    .module-breadcrumbs,
    .news-page .news-detail-card .news-breadcrumbs { padding-right: 0; min-height: 0; }
    .case-page .case-detail-back-row,
    .recruit-page .recruit-detail-back-row,
    .produce-page .produce-detail-back-row,
    .team-page .team-detail-back-row,
    .news-page .news-detail-back-row {
        position: static;
        top: auto;
        right: auto;
        margin: 0 0 10px;
    }
    .news-page .section-padding { padding: 38px 0; }
    .news-page .service-hero { margin-top: -56px; padding-top: 56px; }
    .news-page .service-hero .about-hero-banner { min-height: 320px; }
    .news-page .service-hero .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .news-page .service-hero .about-hero-summary-card h2 { font-size: 30px; }
    .news-page .news-card-content { padding: 16px 14px; }
    .news-page .news-card-title { font-size: 20px; }
    .news-page .news-subscribe-section { padding-bottom: 56px; }
    .news-page .news-subscribe-card { padding: 32px 18px; border-radius: 14px; }
    .news-page .news-subscribe-card h2 { font-size: 30px; }
    .news-page .news-subscribe-card p { font-size: 15px; margin-bottom: 20px; }
    .news-page .news-subscribe-btn { width: auto; }
    .news-page .news-neighbor-grid { grid-template-columns: 1fr; }
    .news-page .news-neighbor-card.is-next { text-align: left; }
    .news-page .news-neighbor-card.is-next span { justify-content: flex-start; }
    .news-page .news-related-grid { grid-template-columns: 1fr; }
    .news-image-preview-body { padding: 14px; }
    .news-image-preview-nav {
        top: auto;
        bottom: 18px;
        transform: none;
    }
    .news-image-preview-nav.is-prev { left: calc(50% - 56px); }
    .news-image-preview-nav.is-next { right: calc(50% - 56px); }
}
@media (max-width: 480px) { .news-page .news-pager li:first-child { display: none; } }

/* news page dark mode */
body.dark-mode .news-page .tech-shell { background: rgba(18, 24, 44, 0.72); }
body.dark-mode .module-search-input {
    color: #dbe9ff;
    background: rgba(18, 24, 44, 0.82);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .module-search-input::placeholder { color: #8ea6cb; }
body.dark-mode .module-search-btn { color: #8cb8ff; background: rgba(64, 130, 255, 0.14); }
body.dark-mode .module-search-btn:hover { color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); }
body.dark-mode .module-breadcrumbs,
body.dark-mode .module-breadcrumbs a { color: #9bb0d2; }
body.dark-mode .module-breadcrumbs strong { color: #dbe9ff; }
body.dark-mode .news-page .service-hero .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .news-page .service-hero .about-hero-summary-card h2,
body.dark-mode .news-page .news-empty-state h3,
body.dark-mode .news-page .news-subscribe-card h2,
body.dark-mode .news-page .news-breadcrumbs strong,
body.dark-mode .news-page .news-detail-title,
body.dark-mode .news-page .news-neighbor-card h4,
body.dark-mode .news-page .news-related-title,
body.dark-mode .news-page .news-related-body h3 a,
body.dark-mode .news-page .news-card-title a { color: #dbe9ff; }
body.dark-mode .news-page .service-hero .about-hero-summary-content,
body.dark-mode .news-page .news-card-desc,
body.dark-mode .news-page .news-empty-state p,
body.dark-mode .news-page .news-subscribe-card p,
body.dark-mode .news-page .news-detail-desc,
body.dark-mode .news-page .news-rich-content,
body.dark-mode .news-page .news-related-body p,
body.dark-mode .news-page .news-related-empty { color: #a8bcde; }
body.dark-mode .news-page .news-filter-chip,
body.dark-mode .news-page .news-search-input,
body.dark-mode .news-page .news-search-btn,
body.dark-mode .news-page .news-card-inner,
body.dark-mode .news-page .news-pager .glass-card,
body.dark-mode .news-page .news-subscribe-card,
body.dark-mode .news-page .news-detail-card,
body.dark-mode .news-page .news-neighbor-card,
body.dark-mode .news-page .news-related-card {
    background: rgba(22, 30, 52, 0.9);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .news-page .news-filter-chip { color: #9db4db; }
body.dark-mode .news-page .news-filter-chip:hover,
body.dark-mode .news-page .news-filter-chip.is-active {
    color: #fff;
    border-color: transparent;
}
body.dark-mode .news-page .news-search-input {
    color: #dbe9ff;
    background: rgba(18, 24, 44, 0.82);
}
body.dark-mode .news-page .news-search-input::placeholder { color: #8ea6cb; }
body.dark-mode .news-page .news-search-btn { color: #8cb8ff; background: rgba(64, 130, 255, 0.14); }
body.dark-mode .news-page .news-search-btn:hover { color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); }
body.dark-mode .news-page .news-card-meta,
body.dark-mode .news-page .news-detail-meta,
body.dark-mode .news-page .news-breadcrumbs,
body.dark-mode .news-page .news-neighbor-card span,
body.dark-mode .news-page .news-related-date,
body.dark-mode .news-page .news-pager li { color: #9bb0d2; }
body.dark-mode .news-page .news-card-link,
body.dark-mode .news-page .news-back-btn { color: #8cb8ff; }
body.dark-mode .news-page .news-card-link:hover { color: #b8d6ff; }
body.dark-mode .news-page .news-back-btn {
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .news-page .news-back-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
body.dark-mode .news-page .news-subscribe-input {
    color: #dbe9ff;
    background: rgba(18, 24, 44, 0.84);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .news-page .news-subscribe-input::placeholder { color: #8ea6cb; }
body.dark-mode .news-page .news-pager li:first-child { color: #8fa6cd; }
body.dark-mode .news-page .news-pager li a,
body.dark-mode .news-page .news-pager li span {
    color: #8cb8ff;
    background: rgba(64, 130, 255, 0.14);
    border-color: rgba(126, 173, 255, 0.3);
}
body.dark-mode .news-page .news-pager li:first-child a,
body.dark-mode .news-page .news-pager li:first-child span { border: 0; background: transparent; color: inherit; }
body.dark-mode .news-page .news-pager li .active,
body.dark-mode .news-page .news-pager li.active a,
body.dark-mode .news-page .news-pager li.active span,
body.dark-mode .news-page .news-pager li span:not([class]) { color: #fff; background: linear-gradient(135deg, #2f7bf0, #1f5fd1); border-color: transparent; }

/* status pages: msg / 404 */
.status-page .container { width: min(1080px, calc(100% - 56px)); margin: 0 auto; }
.status-page .tech-shell { background: rgba(224, 235, 255, 0.38); }
.status-page .status-hero { margin-top: -64px; padding-top: 64px; }
.status-page .status-hero .about-hero-inner { position: relative; width: 100%; max-width: none; margin: 0; }
.status-page .status-hero .about-hero-banner {
    min-height: 360px;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 20px 36px rgba(19, 59, 128, 0.2);
}
.status-page .status-hero .about-hero-summary-card {
    position: relative;
    width: min(920px, calc(100% - 72px));
    margin: -72px auto 0;
    padding: 20px 28px;
    border-radius: 16px;
    border: 1px solid rgba(191, 219, 254, 0.62);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(19, 59, 128, 0.12);
    color: #4a5f86;
    text-align: center;
}
.status-page .status-hero .about-hero-summary-card h2 {
    margin: 0 0 6px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;
    color: #1f3d71;
}
.status-page .status-hero .about-hero-summary-content { margin: 0; line-height: 1.85; font-size: 15px; }
.status-page .status-hero .about-hero-summary-content p { margin: 0; }
.status-page .status-shell {
    position: relative;
    z-index: 10;
    padding: 34px 0 88px;
}
.status-page .status-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 52px 36px;
    border: 1px solid rgba(191, 219, 254, 0.62);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(24, 62, 132, 0.14);
}
.status-page .status-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    opacity: .2;
    filter: blur(42px);
    pointer-events: none;
    transition: opacity .25s ease;
}
.status-page .status-card:hover .status-glow { opacity: .3; }
.status-page .status-glow-right { top: -90px; right: -90px; background: #2A7DE1; }
.status-page .status-glow-left { bottom: -90px; left: -90px; background: #8B5CF6; }
.status-page .status-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.2);
    background: rgba(42, 125, 225, 0.08);
    margin-bottom: 14px;
}
.status-page .status-code {
    position: relative;
    margin: 0 0 6px;
    font-size: clamp(68px, 10vw, 116px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: .02em;
    color: #2A7DE1;
    text-shadow: 0 12px 24px rgba(42, 125, 225, 0.22);
}
.status-page .status-title {
    position: relative;
    margin: 0 0 12px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.25;
    color: #1f3d71;
}
.status-page .status-desc {
    position: relative;
    margin: 0 auto;
    max-width: 760px;
    color: #5b7091;
    line-height: 1.85;
    font-size: 15px;
}
.status-page .status-actions {
    position: relative;
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.status-page .status-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
}
.status-page .status-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    color: #2A7DE1;
    border: 1px solid rgba(42, 125, 225, 0.24);
    background: rgba(42, 125, 225, 0.08);
    transition: all .2s ease;
}
.status-page .status-btn-ghost:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
@media (max-width: 767px) {
    .status-page .status-hero { margin-top: -56px; padding-top: 56px; }
    .status-page .status-hero .about-hero-banner { min-height: 300px; }
    .status-page .status-hero .about-hero-summary-card {
        width: calc(100% - 30px);
        margin-top: -56px;
        padding: 14px 12px;
    }
    .status-page .status-hero .about-hero-summary-card h2 { font-size: 30px; }
    .status-page .status-shell { padding: 34px 0 58px; }
    .status-page .status-card { padding: 34px 16px; border-radius: 14px; }
    .status-page .status-title { font-size: 30px; }
    .status-page .status-desc { font-size: 14px; }
    .status-page .status-actions { flex-direction: column; }
    .status-page .status-btn-primary,
    .status-page .status-btn-ghost { width: 100%; }
}
body.dark-mode .status-page .status-card {
    background: rgba(22, 30, 52, 0.92);
    border-color: rgba(126, 173, 255, 0.28);
    box-shadow: 0 12px 24px rgba(5, 10, 24, 0.35);
}
body.dark-mode .status-page .tech-shell { background: rgba(18, 24, 44, 0.72); }
body.dark-mode .status-page .status-hero .about-hero-summary-card {
    background: rgba(22, 30, 52, 0.94);
    border-color: rgba(126, 173, 255, 0.32);
}
body.dark-mode .status-page .status-hero .about-hero-summary-card h2 { color: #dbe9ff; }
body.dark-mode .status-page .status-hero .about-hero-summary-content { color: #a8bcde; }
body.dark-mode .status-page .status-badge {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .status-page .status-code { color: #8cb8ff; text-shadow: 0 12px 22px rgba(64, 130, 255, 0.25); }
body.dark-mode .status-page .status-title { color: #dbe9ff; }
body.dark-mode .status-page .status-desc { color: #a8bcde; }
body.dark-mode .status-page .status-btn-ghost {
    color: #8cb8ff;
    border-color: rgba(126, 173, 255, 0.3);
    background: rgba(64, 130, 255, 0.14);
}
body.dark-mode .status-page .status-btn-ghost:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f7bf0, #1f5fd1);
}
