    /* Home-only styles (keep minimal) */
    .hero {
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(1200px 600px at 70% -20%, rgba(79, 140, 255, .25), transparent 70%),
            radial-gradient(900px 600px at -10% 10%, rgba(34, 197, 94, .12), transparent 65%),
            linear-gradient(180deg, #0b1220 0%, #0b1220 60%, #0e1627 100%);
        border-bottom: 1px solid var(--divider);
    }

    .hero-inner {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 40px;
        align-items: center;
        padding: 68px 0
    }

    @media (max-width:960px) {
        .hero-inner {
            grid-template-columns: 1fr;
            gap: 28px;
            padding: 54px 0
        }
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border: 1px solid var(--divider);
        border-radius: 999px;
        color: var(--muted);
        font-size: 12px;
        letter-spacing: .3px;
        text-transform: uppercase
    }

    h1 {
        margin: 12px 0 10px;
        font-size: 44px;
        line-height: 1.15;
        letter-spacing: .2px
    }

    @media (max-width:600px) {
        h1 {
            font-size: 34px
        }
    }

    .sub {
        color: #c7d2fe;
        opacity: .95;
        font-size: 18px;
        max-width: 640px
    }

    .actions {
        display: flex;
        gap: 14px;
        margin-top: 24px;
        flex-wrap: wrap
    }

    .trust {
        display: flex;
        gap: 18px;
        align-items: center;
        margin-top: 20px;
        color: var(--muted);
        font-size: 14px;
        flex-wrap: wrap
    }

    .trust .dot {
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: var(--muted);
        opacity: .65
    }

    .hero-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
        border: 1px solid var(--divider);
        border-radius: 18px;
        padding: 20px 18px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, .35)
    }

    .card-title {
        font-size: 14px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .3px;
        margin-bottom: 6px
    }

    .steps {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .step {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .04);
        border: 1px dashed var(--divider)
    }

    .badge {
        min-width: 26px;
        height: 26px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        background: #1f2a44
    }

    .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    @media (max-width:960px) {
        .split {
            grid-template-columns: 1fr
        }
    }

    .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 18px
    }

    @media (max-width:960px) {
        .features {
            grid-template-columns: 1fr 1fr
        }
    }

    @media (max-width:640px) {
        .features {
            grid-template-columns: 1fr
        }
    }

    .feature {
        background: var(--card);
        border: 1px solid var(--divider);
        border-radius: 14px;
        padding: 18px
    }

    .faq {
        max-width: 920px;
        margin: 0 auto
    }

    /* Footer语言切换器样式 */
    .footer-language-switcher {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin: 12px 0 0 0;
        padding-top: 12px;
        border-top: 1px solid var(--divider);
    }

    .footer-lang-label {
        color: var(--muted);
        font-size: 14px;
        font-weight: 500;
    }

    .footer-lang-links {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .footer-lang-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 8px;
        border-radius: 6px;
        text-decoration: none;
        color: var(--muted);
        font-size: 14px;
        transition: all 0.2s;
        border: 1px solid transparent;
    }

    .footer-lang-link:hover {
        color: var(--text);
        background: rgba(255, 255, 255, 0.05);
    }

    .footer-lang-link.active {
        color: var(--brand);
        border-color: var(--brand);
        background: rgba(79, 140, 255, 0.1);
    }

    /* 中文字体优化 */
    .zh-text {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    @media (max-width: 640px) {
        .footer-language-switcher {
            justify-content: center;
            text-align: center;
        }

        .footer-lang-links {
            justify-content: center;
        }
    }