:root {
            --z_getv-primary: #d26b46;
            --z_getv-primary-soft: rgba(210, 107, 70, 0.1);
            --z_getv-text-dark: #2c3e50;
            --z_getv-text-light: #64748b;
            --z_getv-bg-light: #ffffff;
            --z_getv-bg-tint: #fcf9f7;
            --z_getv-radius: 21px;
            --z_getv-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --z_getv-transition: all 0.35s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            color: var(--z_getv-text-dark);
            line-height: 1.7;
            background-color: var(--z_getv-bg-light);
            word-break: keep-all;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--z_getv-transition);
        }

        /* 强制导航栏样式复用 */
        .z_getv-sogate {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .z_getv-vesslo {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .z_getv-logo {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .z_getv-logo img {
            height: 100%;
        }

        .z_getv-keyway {
            display: flex;
            gap: 32px;
        }

        .z_getv-hitly {
            font-size: 16px;
            font-weight: 500;
            color: var(--z_getv-text-dark);
            position: relative;
        }

        .z_getv-hitly:hover {
            color: var(--z_getv-primary);
        }

        .z_getv-hitly.active {
            color: var(--z_getv-primary);
        }

        .z_getv-hitly.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--z_getv-primary);
            border-radius: 2px;
        }

        /* Hero Mosaic Collage Layout */
        .z_getv-skinglo {
            padding: 60px 24px;
            background: radial-gradient(circle at top right, #fff5f0, #ffffff);
        }

        .z_getv-lexihub {
            max-width: 1300px;
            margin: 0 auto;
        }

        .z_getv-shino {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            gap: 20px;
        }

        .z_getv-sheller {
            background: #fff;
            border-radius: var(--z_getv-radius);
            overflow: hidden;
            box-shadow: var(--z_getv-shadow);
            transition: var(--z_getv-transition);
            position: relative;
        }

        .z_getv-sheller:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(210, 107, 70, 0.12);
        }

        .z_getv-shino-main {
            grid-column: span 2;
            grid-row: span 2;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #d26b46 0%, #e88d6a 100%);
            color: white;
        }

        .z_getv-shino-main h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 24px;
            word-break: break-word;
        }

        .z_getv-shino-main p {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 480px;
        }

        .z_getv-shino-art {
            grid-column: span 1;
            grid-row: span 2;
            background: #f8fafc;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 30px;
        }

        .z_getv-shino-box {
            grid-column: span 1;
            grid-row: span 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--z_getv-bg-tint);
        }

        /* Content Sections */
        .z_getv-peakly {
            padding: 100px 24px;
        }

        .z_getv-vesslo-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .z_getv-lexia {
            flex: 1;
            min-width: 320px;
        }

        .z_getv-lexia h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
            color: var(--z_getv-text-dark);
            line-height: 1.3;
        }

        .z_getv-lexia p {
            font-size: 1.1rem;
            color: var(--z_getv-text-light);
            margin-bottom: 32px;
        }

        .z_getv-keybit {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        /* Feature Grid */
        .z_getv-lexihub-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding: 80px 0;
        }

        .z_getv-lexia-card {
            flex: 1;
            min-width: 280px;
            padding: 40px;
            background: #fff;
            border-radius: var(--z_getv-radius);
            border: 1px solid #f1f5f9;
            transition: var(--z_getv-transition);
        }

        .z_getv-lexia-card:hover {
            border-color: var(--z_getv-primary);
            background: var(--z_getv-primary-soft);
        }

        .z_getv-lexia-card svg {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            fill: var(--z_getv-primary);
        }

        .z_getv-lexia-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        /* Call to Action */
        .z_getv-tappit-wrap {
            text-align: center;
            padding: 100px 24px;
            background: #2c3e50;
            color: white;
            border-radius: 40px;
            margin: 40px 24px;
        }

        .z_getv-hitly-cta {
            display: inline-block;
            padding: 18px 48px;
            background: var(--z_getv-primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 32px;
        }

        .z_getv-hitly-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(210, 107, 70, 0.3);
        }

        /* Footer */
        .z_getv-tailer {
            background: #f8fafc;
            padding: 80px 24px 40px;
            margin-top: 100px;
        }

        .z_getv-rooton {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 60px;
        }

        .z_getv-rooton-brand h4 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--z_getv-primary);
        }

        .z_getv-rooton-links {
            display: flex;
            gap: 60px;
        }

        .z_getv-rooton-col h5 {
            margin-bottom: 20px;
            font-size: 1rem;
            color: var(--z_getv-text-dark);
        }

        .z_getv-rooton-col a {
            display: block;
            margin-bottom: 12px;
            color: var(--z_getv-text-light);
            font-size: 0.9rem;
        }

        .z_getv-rooton-col a:hover {
            color: var(--z_getv-primary);
        }

        .z_getv-copyright {
            max-width: 1200px;
            margin: 40px auto 0;
            text-align: center;
            color: var(--z_getv-text-light);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .z_getv-shino {
                grid-template-columns: repeat(2, 1fr);
            }
            .z_getv-shino-main {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .z_getv-shino {
                display: flex;
                flex-direction: column;
            }
            .z_getv-vesslo {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }
            .z_getv-keyway {
                margin-top: 20px;
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .z_getv-shino-main h1 {
                font-size: 2.2rem;
            }
            .z_getv-peakly {
                padding: 60px 24px;
            }
            .z_getv-lexia h2 {
                font-size: 1.8rem;
            }
        }

.z_getv-hdr-sogate {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--z_getv-text-dark);
}
.z_getv-hdr-sogate,
.z_getv-hdr-sogate *,
.z_getv-hdr-sogate *::before,
.z_getv-hdr-sogate *::after {
    box-sizing: border-box;
}

.z_getv-hdr-sogate nav,
.z_getv-hdr-sogate div,
.z_getv-hdr-sogate section,
.z_getv-hdr-sogate article,
.z_getv-hdr-sogate aside,
.z_getv-hdr-sogate p,
.z_getv-hdr-sogate h1,
.z_getv-hdr-sogate h2,
.z_getv-hdr-sogate h3,
.z_getv-hdr-sogate h4,
.z_getv-hdr-sogate h5,
.z_getv-hdr-sogate h6,
.z_getv-hdr-sogate a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.z_getv-hdr-sogate p,
.z_getv-hdr-sogate h1,
.z_getv-hdr-sogate h2,
.z_getv-hdr-sogate h3,
.z_getv-hdr-sogate h4,
.z_getv-hdr-sogate h5,
.z_getv-hdr-sogate h6 {
    text-decoration: none;
}

.z_getv-hdr-sogate img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.z_getv-hdr-sogate {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.z_getv-hdr-sogate a.z_getv-hdr-hitly {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.z_getv-hdr-sogate a.z_getv-hdr-hitly,
.z_getv-hdr-sogate a.z_getv-hdr-hitly:hover,
.z_getv-hdr-sogate a.z_getv-hdr-hitly:focus,
.z_getv-hdr-sogate a.z_getv-hdr-hitly:active,
.z_getv-hdr-sogate a.z_getv-hdr-hitly.active,
.z_getv-hdr-sogate a.z_getv-hdr-hitly[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.z_getv-hdr-sogate{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.z_getv-hdr-sogate .z_getv-hdr-vesslo{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.z_getv-hdr-sogate .z_getv-hdr-logo{
            padding: 18px 0;
            min-width: 0;
        }

.z_getv-hdr-sogate .z_getv-hdr-logo img{
            height: 32px;
            width: auto;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway a{
            padding: 25px 20px;
            font-weight: 500;
            color: #666666;
            position: relative;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway a:hover, .z_getv-hdr-sogate .z_getv-hdr-keyway a.active{
            color: #d26b46;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway a.active::after{
            content: '';
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #d26b46;
        }

@media (max-width: 768px){.z_getv-hdr-sogate .z_getv-hdr-keyway{ display: none; }}

.z_getv-hdr-sogate {
    background: rgb(255, 255, 255);
    background-image: none;
}

.z_getv-ftr-tailer {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--z_getv-text-dark);
}
.z_getv-ftr-tailer,
.z_getv-ftr-tailer *,
.z_getv-ftr-tailer *::before,
.z_getv-ftr-tailer *::after {
    box-sizing: border-box;
}

.z_getv-ftr-tailer nav,
.z_getv-ftr-tailer div,
.z_getv-ftr-tailer section,
.z_getv-ftr-tailer article,
.z_getv-ftr-tailer aside,
.z_getv-ftr-tailer p,
.z_getv-ftr-tailer h1,
.z_getv-ftr-tailer h2,
.z_getv-ftr-tailer h3,
.z_getv-ftr-tailer h4,
.z_getv-ftr-tailer h5,
.z_getv-ftr-tailer h6,
.z_getv-ftr-tailer a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.z_getv-ftr-tailer p,
.z_getv-ftr-tailer h1,
.z_getv-ftr-tailer h2,
.z_getv-ftr-tailer h3,
.z_getv-ftr-tailer h4,
.z_getv-ftr-tailer h5,
.z_getv-ftr-tailer h6 {
    text-decoration: none;
}

.z_getv-ftr-tailer img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.z_getv-ftr-tailer {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.z_getv-ftr-tailer a,
.z_getv-ftr-tailer a:hover,
.z_getv-ftr-tailer a:focus,
.z_getv-ftr-tailer a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.z_getv-ftr-tailer .z_getv-ftr-vesslo{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.z_getv-ftr-tailer{
            padding: 80px 0 40px;
            background: #222;
            color: #aaa;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-grid{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 50px;
            margin-bottom: 30px;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-brand h2{
            color: white;
            margin-bottom: 20px;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links h5{
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links ul{
            list-style: none;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links li{
            margin-bottom: 12px;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links a:hover{
            color: white;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-bottom{
            text-align: center;
            font-size: 0.9rem;
        }