/* 官网首页 v4 — 纯绿色主题（用户提供设计），作用域 .hl-site */

.page-home-landing.site-body,
.page-home-landing .page {
    margin: 0;
    padding: 0;
    background: #fcfcfd;
}

.page-home-landing .page .container {
    max-width: none;
    padding: 0;
}

.hl-site {
    --hp-green: #2c6e2f;
    --hp-green-dark: #1b5e20;
    --hp-green-light: #e8f5e9;
    --field-green: var(--hp-green);
    --field-green-light: var(--hp-green-light);
    --lane-orange: #f15a24;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-muted: #94a3b8;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    font-family: 'Inter', 'Microsoft YaHei', sans-serif;
    background: #fcfcfd;
    color: #1e293b;
    line-height: 1.5;
}

.hl-site * {
    box-sizing: border-box;
}

.hl-site .hp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 按钮 */
.hl-site .hp-btn-primary {
    background: var(--hp-green);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(44, 110, 47, 0.2);
    cursor: pointer;
}

.hl-site .hp-btn-primary:hover {
    background: var(--hp-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(44, 110, 47, 0.25);
    color: #fff;
}

.hl-site .hp-btn-outline {
    background: transparent;
    border: 1.5px solid var(--hp-green);
    color: var(--hp-green);
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

.hl-site .hp-btn-outline:hover {
    background: var(--hp-green);
    color: #fff;
}

.hl-site .hp-hero-buttons .hp-btn-outline {
    background: #fff;
    box-shadow: 0 1px 4px rgba(44, 110, 47, 0.08);
}

.hl-site .hp-hero-buttons .hp-btn-outline:hover {
    background: var(--hp-green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(44, 110, 47, 0.15);
}

.hl-site .hp-btn-outline--muted {
    border-color: #cbd5e1;
    color: #334155;
}

.hl-site .hp-btn-outline--muted:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

.hl-site .hp-nav-logout-form {
    margin: 0;
    display: inline-flex;
}

/* 导航 */
.hl-site .hp-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hl-site .hp-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hl-site .hp-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.hl-site .hp-logo-icon {
    background: var(--hp-green);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.hl-site .hp-logo-text {
    font-weight: 800;
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    white-space: nowrap;
}

.hl-site .hp-logo-text span {
    color: var(--hp-green);
}

.hl-site .hp-logo-text--light {
    color: #fff;
}

.hl-site .hp-logo-text--light span {
    color: var(--hp-green-light);
}

.hl-site .hp-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.hl-site .hp-nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.2s;
}

.hl-site .hp-nav-links a:hover {
    color: var(--hp-green);
}

.hl-site .hp-nav-links a.is-active {
    color: var(--hp-green);
    font-weight: 700;
}

.hl-site .hp-nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* 顶栏右侧「退出 / 返回官网」等按钮略缩小 */
.hl-site .hp-nav-buttons .hp-btn-primary,
.hl-site .hp-nav-buttons .hp-btn-outline {
    padding: 6px 14px;
    font-size: 0.82rem;
    border-radius: 999px;
    line-height: 1.3;
    gap: 4px;
}

.hl-site .hp-nav-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 180px;
}

.hl-site .hp-nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #dbeafe;
    border: 1px solid #e5e7eb;
}

.hl-site .hp-nav-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hl-site .hp-nav-user-name {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero */
.hl-site .hp-hero {
    padding: 56px 0 48px;
    background: linear-gradient(135deg, #f0f8ef 0%, #e4f2e4 55%, #d8ebda 100%);
}

.hl-site .hp-hero-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hl-site .hp-hero-content {
    flex: 1.2;
    min-width: 280px;
}

.hl-site .hp-hero-badge {
    background: rgba(44, 110, 47, 0.12);
    color: var(--hp-green);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hl-site .hp-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hl-site .hp-hero-highlight {
    color: var(--lane-orange);
}

/* Hero / 底部 CTA 主按钮：跑道橙（与高亮文案同色） */
.hl-site.hl-site--home-v4 .hp-hero-buttons .hp-btn-primary,
.hl-site.hl-site--home-v4 .hp-cta-buttons .hp-btn-primary {
    background: var(--lane-orange);
    box-shadow: 0 2px 6px rgba(241, 90, 36, 0.25);
}

.hl-site.hl-site--home-v4 .hp-hero-buttons .hp-btn-primary:hover,
.hl-site.hl-site--home-v4 .hp-cta-buttons .hp-btn-primary:hover {
    background: #d84315;
    box-shadow: 0 8px 18px rgba(241, 90, 36, 0.3);
}

.hl-site .hp-hero-content > p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 500px;
}

.hl-site .hp-hero-stats {
    display: flex;
    gap: 32px;
    margin: 20px 0 28px;
    flex-wrap: wrap;
}

.hl-site .hp-hero-stat-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hp-green);
    margin: 0;
}

.hl-site .hp-hero-stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 4px 0 0;
}

.hl-site .hp-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hl-site .hp-hero-image {
    flex: 1;
    min-width: 260px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 20px;
    border: 1px solid var(--border-light);
}

.hl-site .hp-mock-list {
    background: #f8fafe;
    border-radius: 20px;
    padding: 16px;
}

.hl-site .hp-mock-item {
    background: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hl-site .hp-mock-item i {
    color: var(--hp-green);
    width: 22px;
    font-size: 1.05rem;
    text-align: center;
    flex-shrink: 0;
}

.hl-site .hp-mock-text {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.hl-site .hp-mock-tag {
    flex-shrink: 0;
    background: var(--hp-green-light);
    color: var(--hp-green);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.hl-site .hp-mock-note {
    margin-top: 4px;
    background: #eff6ef;
    border-radius: 14px;
    padding: 12px 14px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.45;
}

.hl-site .hp-mock-note i {
    color: var(--hp-green);
}

/* 区块标题 */
.hl-site .hp-section-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 48px 0 12px;
    color: var(--text-dark);
}

.hl-site .hp-section-title--tight {
    margin-top: 0;
}

.hl-site .hp-section-sub {
    text-align: center;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1rem;
}

/* 流程三卡 */
.hl-site .hp-process-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hl-site .hp-process-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    border-radius: 28px;
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    transition: 0.2s ease;
}

.hl-site .hp-process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--hp-green-light);
}

.hl-site .hp-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(44, 110, 47, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--hp-green);
    margin-bottom: 20px;
    overflow: visible;
    flex-shrink: 0;
}

.hl-site .hp-card-icon i {
    display: block;
    line-height: 1;
}

.hl-site .hp-process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.hl-site .hp-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hl-site .hp-feature-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    color: var(--text-gray);
    font-size: 1rem;
}

.hl-site .hp-feature-list i {
    color: var(--hp-green);
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* 特色四宫格 */
.hl-site .hp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 40px 0 36px;
}

.hl-site .hp-feature-item {
    background: #fff;
    border-radius: 24px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.hl-site .hp-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--hp-green);
}

.hl-site .hp-card-icon--center {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.hl-site .hp-feature-item h4 {
    font-size: 1.25rem;
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-dark);
}

.hl-site .hp-feature-desc {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-gray);
}

/* 信任数据栏 */
.hl-site .hp-trust-bar {
    background: var(--hp-green-dark);
    border-radius: 32px;
    padding: 28px 20px;
    margin: 20px 0 48px;
    color: #fff;
    text-align: center;
}

.hl-site .hp-trust-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.hl-site .hp-trust-stats > div {
    font-weight: 700;
    font-size: 1.2rem;
}

.hl-site .hp-trust-stats span {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

/* CTA */
.hl-site .hp-cta-simple {
    background: #fff;
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    margin-bottom: 56px;
}

.hl-site .hp-cta-simple h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.hl-site .hp-cta-simple > p {
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
}

.hl-site .hp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* 页脚 */
.hl-site .hp-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 24px 0 14px;
    margin-top: 0;
}

.hl-site .hp-footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
}

.hl-site .hp-footer-grid--slim {
    display: grid;
    grid-template-columns: minmax(200px, 1.4fr) repeat(2, minmax(120px, 1fr));
    gap: 16px 32px;
    align-items: start;
    margin-bottom: 14px;
}

.hl-site .hp-footer .hp-logo-area--footer {
    margin-bottom: 8px;
}

@media (max-width: 800px) {
    .hl-site .hp-footer-grid--slim {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.hl-site .hp-footer-desc {
    max-width: 280px;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.hl-site .hp-footer h4 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 0.95rem;
}

.hl-site .hp-footer p {
    margin: 0 0 5px;
    font-size: 0.85rem;
    line-height: 1.45;
}

.hl-site .hp-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.hl-site .hp-footer a:hover {
    color: #fff;
}

.hl-site .hp-footer-legal {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 14px;
}

.hl-site .hp-footer-copyright,
.hl-site .hp-footer-icp {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
}

.hl-site .hp-footer-icp {
    margin-top: 6px;
}

.hl-site .hp-footer-icp a {
    color: #94a3b8;
    text-decoration: none;
}

.hl-site .hp-footer-icp a:hover {
    color: #e2e8f0;
}

.hl-site.hl-site--features .hl-fintro {
    padding-top: 32px;
}

.hl-site.hl-site--membership .hp-member {
    padding-top: 28px;
}

/* ========== 登录页 ========== */
.hl-site.hl-site--login {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hl-site .hp-login-main {
    flex: 1;
}

.hl-site .hp-login {
    padding: 48px 0 56px;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f8ef 0%, #e4f2e4 55%, #d8ebda 100%);
}

.hl-site .hp-login .hp-container {
    width: 100%;
}

.hl-site .hp-login-card {
    width: min(480px, 100%);
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 36px 32px 28px;
}

.hl-site .hp-login-card-head {
    text-align: center;
    margin-bottom: 28px;
}

.hl-site .hp-login-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: var(--hp-green-light);
    color: var(--hp-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.hl-site .hp-login-card h1 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
}

.hl-site .hp-login-card-head > p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.55;
}

.hl-site .hp-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hl-site .hp-login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hl-site .hp-login-field span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hl-site .hp-login-field input,
.hl-site .hp-login-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f8fafc;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hl-site .hp-login-field input:focus {
    outline: none;
    border-color: var(--hp-green);
    box-shadow: 0 0 0 3px rgba(44, 110, 47, 0.12);
    background: #fff;
}

.hl-site .hp-login-field select:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.hl-site .hp-login-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 13px 28px;
}

.hl-site .hp-login-tip {
    margin: 18px 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hl-site .hp-login-alt {
    margin: 14px 0 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-gray);
}

.hl-site .hp-login-alt a {
    color: var(--hp-green);
    font-weight: 600;
    text-decoration: none;
}

.hl-site .hp-login-alt a:hover {
    color: var(--hp-green-dark);
    text-decoration: underline;
}

.hl-site .hp-login-alt span {
    margin: 0 8px;
    color: #cbd5e1;
}

.hl-site .hp-footer--compact {
    padding: 20px 0;
}

.hl-site .hp-footer--compact .hp-footer-legal,
.hl-site .hp-footer--compact .hp-footer-copyright {
    border-top: none;
    padding-top: 0;
}


/* ========== 功能详细介绍页 ========== */
.hl-site .hl-fintro {
    padding: 72px 0 56px;
    background: linear-gradient(180deg, #f4faf4 0%, #fcfcfd 48%);
}

/* 标题区放在左侧主栏内并相对左栏居中 */
.hl-site .hl-fintro-head {
    margin: 0 0 28px;
    text-align: center;
}

.hl-site .hl-fintro-main > .hl-fintro-head .hl-section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-dark);
}

.hl-site .hl-fintro-main > .hl-fintro-head .hl-section-sub {
    text-align: center;
    color: var(--text-gray);
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.hl-site .hl-section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hl-site .hl-section-sub {
    text-align: center;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

.hl-site .hl-fintro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.hl-site .hl-fintro-overview {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #d4e8d4;
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hl-site .hl-fintro-overview > i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-green-light);
    color: var(--hp-green);
    border-radius: 12px;
    font-size: 1.1rem;
}

.hl-site .hl-fintro-overview strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hl-site .hl-fintro-overview p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.hl-site .hl-fintro-overview code {
    font-size: 0.85em;
    background: #f1f5f4;
    padding: 2px 6px;
    border-radius: 4px;
}

.hl-site .hl-fintro-module {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hl-site .hl-fintro-module-title {
    margin: 0;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.hl-site .hl-fintro-module--green .hl-fintro-module-title {
    background: linear-gradient(90deg, #2c6e2f, #3d8b40);
}

.hl-site .hl-fintro-module--teal .hl-fintro-module-title {
    background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.hl-site .hl-fintro-module--gold .hl-fintro-module-title {
    background: linear-gradient(90deg, #b45309, #d97706);
    color: #fffbeb;
}

.hl-site .hl-fintro-module--rose .hl-fintro-module-title {
    background: linear-gradient(90deg, #be185d, #db2777);
}

.hl-site .hl-fintro-module--slate .hl-fintro-module-title {
    background: linear-gradient(90deg, #334155, #475569);
}

.hl-site .hl-fintro-table-wrap {
    overflow-x: auto;
}

.hl-site .hl-fintro-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.hl-site .hl-fintro-table th,
.hl-site .hl-fintro-table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #f1f5f9;
}

.hl-site .hl-fintro-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    font-size: 0.8rem;
}

.hl-site .hl-fintro-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.hl-site .hl-fintro-table tbody tr:hover {
    background: #f0fdf4;
}

.hl-site .hl-fintro-table td:first-child {
    color: var(--hp-green);
    font-weight: 600;
    white-space: nowrap;
    width: 18%;
}

.hl-site .hl-fintro-table td:nth-child(2) {
    width: 22%;
}

.hl-site .hl-fintro-table td strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hl-site .hl-fintro-advantages {
    margin-top: 36px;
    padding-top: 8px;
}

.hl-site .hl-fintro-adv-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-green);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hl-site .hl-fintro-adv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hl-site .hl-fintro-adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-site .hl-fintro-adv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hl-site .hl-fintro-adv-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.hl-site .hl-fintro-adv-card--blue .hl-fintro-adv-ico {
    background: #dbeafe;
    color: #2563eb;
}

.hl-site .hl-fintro-adv-card--blue h4 {
    color: #2563eb;
}

.hl-site .hl-fintro-adv-card--green .hl-fintro-adv-ico {
    background: var(--hp-green-light);
    color: var(--hp-green);
}

.hl-site .hl-fintro-adv-card--green h4 {
    color: var(--hp-green);
}

.hl-site .hl-fintro-adv-card--orange .hl-fintro-adv-ico {
    background: #ffedd5;
    color: #d97706;
}

.hl-site .hl-fintro-adv-card--orange h4 {
    color: #d97706;
}

.hl-site .hl-fintro-adv-card--teal .hl-fintro-adv-ico {
    background: #ccfbf1;
    color: #0d9488;
}

.hl-site .hl-fintro-adv-card--teal h4 {
    color: #0d9488;
}

.hl-site .hl-fintro-adv-card h4 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.hl-site .hl-fintro-adv-card ul {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.55;
}

.hl-site .hl-fintro-adv-card li {
    margin-bottom: 4px;
}

.hl-site .hl-fintro-side {
    position: sticky;
    top: 88px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #d4e8d4;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.hl-site .hl-fintro-side-head {
    background: var(--hp-green);
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hl-site .hl-fintro-timeline {
    padding: 16px 18px 8px;
}

.hl-site .hl-fintro-log {
    position: relative;
    padding-left: 18px;
    margin-bottom: 20px;
    border-left: 2px solid #d4e8d4;
}

.hl-site .hl-fintro-log::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hp-green);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #d4e8d4;
}

.hl-site .hl-fintro-log-ver {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hl-site .hl-fintro-log-ver span {
    display: inline-block;
    background: var(--hp-green-light);
    color: var(--hp-green);
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 6px;
    font-size: 0.75rem;
}

.hl-site .hl-fintro-log ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.hl-site .hl-fintro-log li {
    margin-bottom: 6px;
}

.hl-site .hl-fintro-log code {
    font-size: 0.8em;
    background: #f1f5f4;
    padding: 1px 4px;
    border-radius: 3px;
}

.hl-site .hl-fintro-side-cta {
    display: block;
    margin: 8px 18px 18px;
    text-align: center;
    justify-content: center;
}

/* ========== 会员服务页 ========== */
.hl-site .hp-member {
    padding: 40px 0 56px;
    background: linear-gradient(180deg, #f4faf4 0%, #fcfcfd 40%);
}

.hl-site .hp-member-head {
    text-align: center;
    margin-bottom: 28px;
}

.hl-site .hp-member-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.hl-site .hp-member-sub {
    margin: 0;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.hl-site .hp-member-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 32px;
}

.hl-site .hp-member-notice > i {
    color: #d97706;
    font-size: 1.2rem;
    margin-top: 2px;
}

.hl-site .hp-member-notice strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.hl-site .hp-member-notice p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hl-site .hp-member-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.hl-site .hp-member-h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp-green-dark);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hl-site .hp-member-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.hl-site .hp-member-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.hl-site .hp-member-table th,
.hl-site .hp-member-table td {
    padding: 11px 12px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.hl-site .hp-member-table th:first-child,
.hl-site .hp-member-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 160px;
}

.hl-site .hp-member-table thead th {
    background: var(--hp-green);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
}

.hl-site .hp-member-table thead th.is-vip {
    background: var(--hp-green-dark);
}

.hl-site .hp-member-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.hl-site .hp-member-yes {
    color: var(--hp-green);
    font-weight: 700;
}

.hl-site .hp-member-no {
    color: #ef4444;
}

.hl-site .hp-member-row-price {
    background: #fffbeb;
}

.hl-site .hp-member-row-price td {
    font-size: 0.9rem;
}

.hl-site .hp-member-row-support {
    background: var(--hp-green-light);
}

.hl-site .hp-member-row-support td {
    font-size: 0.82rem;
    color: var(--hp-green-dark);
}

.hl-site .hp-member-table-tip {
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hl-site .hp-member-side {
    position: sticky;
    top: 88px;
}

.hl-site .hp-member-addon {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.hl-site .hp-member-addon-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.hl-site .hp-member-addon--blue .hp-member-addon-ico {
    background: #dbeafe;
    color: #2563eb;
}

.hl-site .hp-member-addon--teal .hp-member-addon-ico {
    background: #ccfbf1;
    color: #0d9488;
}

.hl-site .hp-member-addon--gold .hp-member-addon-ico {
    background: #fef3c7;
    color: #d97706;
}

.hl-site .hp-member-addon h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
}

.hl-site .hp-member-addon-price {
    margin: 0 0 6px;
    font-weight: 700;
    color: var(--hp-green);
    font-size: 0.88rem;
}

.hl-site .hp-member-addon-desc {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.45;
}

.hl-site .hp-member-contact {
    background: #fff;
    border: 1px solid #d4e8d4;
    border-radius: 14px;
    padding: 16px;
    margin-top: 8px;
    text-align: center;
}

.hl-site .hp-member-contact h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--hp-green-dark);
}

.hl-site .hp-member-contact-btn {
    width: 100%;
    justify-content: center;
}

.hl-site .hp-member-contact-tip {
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hl-site .hp-member-notes {
    margin-top: 40px;
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 60%);
}

.hl-site .hp-member-notes ul {
    margin: 0 0 20px;
    padding-left: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.65;
}

.hl-site .hp-member-notes li {
    margin-bottom: 6px;
}

.hl-site .hp-member-notes-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== 帮助中心 ========== */
.hl-site.hl-site--help .hp-help {
    padding: 32px 0 48px;
}

.hl-site .hp-help-hero {
    text-align: center;
    margin-bottom: 32px;
}

.hl-site .hp-help-title {
    margin: 0 0 10px;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hl-site .hp-help-title i {
    color: var(--hp-green);
}

.hl-site .hp-help-sub {
    margin: 0;
    color: var(--text-gray);
    font-size: 1rem;
}

.hl-site .hp-help-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.hl-site .hp-help-side {
    position: sticky;
    top: 88px;
}

.hl-site .hp-help-toc {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: var(--shadow-sm);
}

.hl-site .hp-help-toc-label {
    margin: 0 0 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hp-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hl-site .hp-help-toc a {
    display: block;
    padding: 8px 10px;
    margin-bottom: 4px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--text-gray);
    transition: background 0.15s, color 0.15s;
}

.hl-site .hp-help-toc a:hover {
    background: var(--hp-green-light);
    color: var(--hp-green-dark);
}

.hl-site .hp-help-toc a.is-scroll-active {
    background: var(--hp-green);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(44, 110, 47, 0.25);
}

.hl-site .hp-help-toc a.is-scroll-active:hover {
    background: var(--hp-green-dark);
    color: #fff;
}

.hl-site .hp-help-side-tip {
    margin-top: 14px;
    padding: 14px;
    background: linear-gradient(135deg, #f0f8ef, #fff);
    border: 1px solid #d4e8d4;
    border-radius: 14px;
    text-align: center;
}

.hl-site .hp-help-side-tip p {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.hl-site .hp-help-side-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
}

.hl-site .hp-help-panel {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hl-site .hp-help-panel h2 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp-green-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hl-site .hp-help-panel h2 i {
    color: var(--hp-green);
}

.hl-site .hp-help-core-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hl-site .hp-help-core-card {
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 14px 14px 12px;
}

.hl-site .hp-help-core-card h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hp-green);
}

.hl-site .hp-help-core-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.55;
}

.hl-site .hp-help-core-card li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.hl-site .hp-help-core-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hp-green);
    font-weight: 700;
    font-size: 0.75rem;
}

.hl-site .hp-help-hl-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hl-site .hp-help-hl-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f6;
}

.hl-site .hp-help-hl-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hp-green-light);
    color: var(--hp-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hl-site .hp-help-hl-item h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hl-site .hp-help-hl-item p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.hl-site .hp-help-chapter {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 22px 24px 18px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 96px;
}

.hl-site .hp-help-chapter-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hl-site .hp-help-chapter-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--hp-green);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hl-site .hp-help-chapter-head h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hl-site .hp-help-chapter-lead {
    margin: 0 0 16px;
    padding: 12px 14px;
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hl-site .hp-help-block {
    margin-bottom: 14px;
}

.hl-site .hp-help-block:last-child {
    margin-bottom: 0;
}

.hl-site .hp-help-block h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hp-green-dark);
}

.hl-site .hp-help-block ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.65;
}

.hl-site .hp-help-block li {
    margin-bottom: 4px;
}

.hl-site .hp-help-section {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #e2e8f0;
}

.hl-site .hp-help-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hl-site .hp-help-section-title {
    margin: 0 0 12px;
    padding: 10px 14px;
    background: linear-gradient(90deg, #fffbeb 0%, #fff 100%);
    border-left: 4px solid var(--hp-green);
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-green-dark);
}

.hl-site .hp-help-section-intro {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hl-site .hp-help-steps {
    margin: 0 0 14px;
    padding-left: 22px;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.7;
}

.hl-site .hp-help-steps li {
    margin-bottom: 8px;
}

.hl-site .hp-help-steps li::marker {
    color: var(--hp-green);
    font-weight: 700;
}

.hl-site .hp-help-bullets {
    margin: 0 0 12px;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.hl-site .hp-help-bullets li {
    margin-bottom: 6px;
}

.hl-site .hp-help-sub {
    margin: 0 0 14px 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f6;
}

.hl-site .hp-help-sub h4 {
    margin: 0 0 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hp-green);
}

.hl-site .hp-help-sub ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.86rem;
    color: var(--text-gray);
    line-height: 1.55;
}

.hl-site .hp-help-tip {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 12px;
    padding: 12px 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    font-size: 0.88rem;
    color: #1e40af;
    line-height: 1.55;
}

.hl-site .hp-help-tip i {
    color: #3b82f6;
    margin-top: 2px;
    flex-shrink: 0;
}

.hl-site .hp-help-chapter {
    padding: 24px 26px 20px;
}

/* FAQ 折叠列表 */
.hl-site .hp-help-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.hl-site .hp-help-faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hl-site .hp-help-faq-item[open] {
    border-color: #b8d9b8;
    box-shadow: 0 4px 14px rgba(44, 110, 47, 0.08);
}

.hl-site .hp-help-faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: background 0.15s;
}

.hl-site .hp-help-faq-q::-webkit-details-marker {
    display: none;
}

.hl-site .hp-help-faq-q::marker {
    content: '';
}

.hl-site .hp-help-faq-q:hover {
    background: #f8fafc;
}

.hl-site .hp-help-faq-item[open] .hp-help-faq-q {
    background: var(--hp-green-light);
    color: var(--hp-green-dark);
}

.hl-site .hp-help-faq-q-ico {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.hl-site .hp-help-faq-q-text {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
}

.hl-site .hp-help-faq-chev {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.hl-site .hp-help-faq-item[open] .hp-help-faq-chev {
    transform: rotate(180deg);
    color: var(--hp-green);
}

.hl-site .hp-help-faq-a {
    padding: 0 16px 16px 60px;
    border-top: 1px solid #eef2f6;
}

.hl-site .hp-help-faq-a ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.hl-site .hp-help-faq-a li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}

.hl-site .hp-help-faq-a li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hp-green);
}

.hl-site .hp-help-faq-more {
    margin-top: 24px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    border-radius: 16px;
}

.hl-site .hp-help-faq-more h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hl-site .hp-help-faq-more p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #334155;
}

.hl-site .hp-help-faq-more ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.hl-site .hp-help-faq-more a {
    color: var(--hp-green);
    font-weight: 600;
    text-decoration: none;
}

.hl-site .hp-help-faq-more a:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .hl-site .hp-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .hl-site .hp-feature-item {
        padding: 22px 16px;
    }

    .hl-site .hp-feature-item h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .hl-site .hp-help-layout {
        grid-template-columns: 1fr;
    }

    .hl-site .hp-help-side {
        position: static;
    }

    .hl-site .hp-help-toc {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 12px;
    }

    .hl-site .hp-help-toc-label {
        width: 100%;
    }

    .hl-site .hp-help-toc a {
        display: inline-block;
        margin: 0;
        padding: 6px 12px;
        background: #f1f5f9;
    }

    .hl-site .hp-help-toc a.is-scroll-active {
        background: var(--hp-green);
        color: #fff;
    }

    .hl-site .hp-help-side-tip {
        display: none;
    }

    .hl-site .hp-help-core-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hl-site .hp-member-layout {
        grid-template-columns: 1fr;
    }

    .hl-site .hp-member-side {
        position: static;
    }

    .hl-site .hl-fintro-layout {
        grid-template-columns: 1fr;
    }

    .hl-site .hl-fintro-side {
        position: static;
        order: -1;
    }
}

@media (max-width: 800px) {
    .hl-site .hp-nav-links,
    .hl-site .hp-nav-buttons {
        display: none;
    }

    .hl-site .hp-hero-content h1 {
        font-size: 2rem;
    }

    .hl-site .hp-process-cards {
        flex-direction: column;
    }

    .hl-site .hp-hero-stats {
        gap: 16px;
    }

    .hl-site .hp-trust-stats {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .hl-site .hp-feature-grid {
        grid-template-columns: 1fr;
    }

    .hl-site .hp-help-core-grid {
        grid-template-columns: 1fr;
    }

    .hl-site .hl-fintro-adv-grid {
        grid-template-columns: 1fr;
    }

    .hl-site .hl-fintro-table th,
    .hl-site .hl-fintro-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}
