/* ========================================
   南庆供应链 - 全局样式
   技术栈: HTML + CSS3 + jQuery
   ======================================== */

/* ---- CSS变量 ---- */
:root {
    --bg-primary: #F5F5F5;
    --bg-deep: #0A0A0A;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-body: #333333;
    --accent: #B99A6B;
    --accent-blue: #0B1D3A;
    --nav-height: 80px;
    --section-gap: 160px;
    --container-max: 1280px;
    --font-mono: 'Space Mono', 'Courier New', monospace;
    --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- 重置与基础 ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ---- 导航栏 ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s ease;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue), #1a3a6b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

/* ---- 容器 ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4vw;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4vw;
}

/* ---- Hero区域 ---- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 4vw;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-btn:hover {
    border-color: var(--accent);
    color: var(--text-dark);
}

.hero-btn:hover::before {
    left: 0;
}

/* Hero入场动画 */
.hero.loaded .hero-subtitle {
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero.loaded .hero-title {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero.loaded .hero-desc {
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero.loaded .hero-btn {
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- 板块通用 ---- */
.section {
    position: relative;
    padding: var(--section-gap) 0;
}

.section-dark {
    background: var(--bg-deep);
    color: var(--text-light);
}

.section-light {
    background: var(--bg-primary);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- 业务概览网格 ---- */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.overview-card {
    position: relative;
    padding: 60px 32px;
    background: #FFFFFF;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.overview-card:nth-child(even) {
    background: #FAFAFA;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.overview-card:hover::before {
    border-color: var(--accent);
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.overview-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.4s ease;
}

.overview-card:hover .overview-icon {
    transform: translate(4px, -4px);
}

.overview-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-blue);
    stroke-width: 1.5;
    fill: none;
}

.overview-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.overview-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ---- 数据驱动板块 ---- */
.data-section {
    position: relative;
    overflow: hidden;
}

.data-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.data-text {
    position: relative;
    z-index: 2;
}

.data-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.data-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}

.data-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.data-visual {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.data-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.data-visual:hover img {
    opacity: 1;
}

/* ---- 关于我们 Hero ---- */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-deep);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.8), rgba(10, 10, 10, 0.6));
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4vw;
    width: 100%;
}

.about-hero-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.8;
}

/* ---- 目标卡片 ---- */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.goal-card {
    text-align: center;
    padding: 60px 32px;
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal-card:hover {
    border-color: rgba(185, 154, 107, 0.2);
    transform: translateY(-4px);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(185, 154, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.goal-card:hover .goal-icon {
    background: rgba(185, 154, 107, 0.2);
}

.goal-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.goal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.goal-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ---- 使命板块 ---- */
.mission-section {
    position: relative;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-image:hover img {
    transform: scale(1.03);
}

.mission-text {
    position: relative;
}

.mission-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mission-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.mission-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ---- 联系页面 ---- */
.contact-hero {
    position: relative;
    width: 100%;
    padding: 140px 0 80px;
    background: var(--bg-deep);
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.contact-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 48px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-label .required {
    color: #E74C3C;
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    background: #FAFAFA;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    background: #FFFFFF;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    display: inline-block;
    padding: 14px 48px;
    background: var(--accent-blue);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.contact-info {
    padding-top: 20px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E5E5E5;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--accent-blue);
}

.contact-info-label {
    font-size: 12px;
    color: var(--text-body);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.contact-info-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ---- 页脚 ---- */
.footer {
    background: var(--bg-deep);
    color: var(--text-light);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-blue), #1a3a6b);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-light);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.footer-code {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 2px;
    user-select: none;
}

/* ---- 滚动显示动画 ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- 分割线 ---- */
.divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 24px;
}

/* ---- 装饰代码背景 ---- */
.code-bg {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* ========================================
   响应式适配
   ======================================== */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
        --section-gap: 100px;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 18px;
        color: var(--text-light);
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .data-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .about-hero {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .overview-card {
        padding: 40px 24px;
    }
    
    .goal-card {
        padding: 40px 24px;
    }
    
    .contact-hero {
        padding: 120px 0 60px;
    }
}

/* ========================================
   法律文档页面样式
   ======================================== */

/* 法律文档 Hero */
.legal-hero {
    position: relative;
    width: 100%;
    padding: 140px 0 80px;
    background: var(--bg-deep);
    text-align: center;
}

.legal-hero-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.legal-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.legal-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 法律文档内容区 */
.legal-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 4vw;
}

.legal-section {
    margin-bottom: 56px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E5E5;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-section ul li {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: var(--accent);
}

.legal-document .divider {
    margin: 0 auto 48px;
}

.legal-document .section-desc {
    text-align: center;
    margin-bottom: 48px;
}

.legal-highlight {
    background: rgba(185, 154, 107, 0.08);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    margin: 20px 0;
}

.legal-highlight p {
    margin-bottom: 0;
    font-size: 14px;
}

/* 法律文档更新日期 */
.legal-date {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    letter-spacing: 1px;
}
