/* ========================================
   律必达官网样式表
   风格：法律科技、可信赖、现代、克制、高级
   配色：深蓝/黑白灰为主，点缀强调色
======================================== */

/* CSS Variables */
:root {
    /* 主色调 - 基于 Logo 颜色 RGB(69, 111, 164) */
    --primary-color: #456FA4;
    --primary-dark: #3A5D8A;
    --primary-light: #5A82B5;
    
    /* 强调色 - 与主色调一致 */
    --accent-color: #456FA4;
    --accent-light: #5A82B5;
    --accent-dark: #3A5D8A;
    
    /* 中性色 */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* 背景色 */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* 边框色 */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    
    /* 成功/警告/错误 */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* 间距 */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* 过渡 */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* 字体 */
    --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* 字号 */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* 行高 */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* 最大宽度 */
    --max-width: 1200px;
    --max-width-narrow: 900px;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    font-size: var(--text-xl);
    color: var(--primary-color);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links a {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-gray) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Hero Trust Badge */
.hero-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.trust-item strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: calc(var(--spacing-md) - 2px) calc(var(--spacing-xl) - 2px);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

/* QR Code Card */
.hero-qrcode {
    display: flex;
    justify-content: center;
}

.qrcode-card {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.qrcode-placeholder {
    width: 200px;
    height: 200px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.qrcode-placeholder.small {
    width: 150px;
    height: 150px;
}

.qrcode-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
}

.qrcode-icon {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.qrcode-text {
    font-size: var(--text-sm);
}

.qrcode-tip {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Hero Background Decoration */
.hero-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-light);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    opacity: 0.5;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    opacity: 0.3;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(180deg, var(--border-light), transparent);
}

.line-1 {
    width: 1px;
    height: 200px;
    top: 100px;
    right: 200px;
    opacity: 0.5;
}

/* ========================================
   About Section
======================================== */
.about {
    background: var(--bg-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.about-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.vision-card {
    background: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.vision-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.vision-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--bg-white);
}

.vision-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.vision-card p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.values-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.value-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

.value-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.value-item p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Commitments Section */
.about-commitments {
    margin-top: var(--spacing-3xl);
}

.commitments-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.commitment-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.commitment-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-text h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.commitment-text p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
    .commitments-grid {
        grid-template-columns: 1fr;
    }
}

/* Philosophy Section */
.about-philosophy {
    margin-bottom: var(--spacing-3xl);
}

.philosophy-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    color: var(--bg-white);
}

.philosophy-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.philosophy-slogan {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    line-height: var(--leading-tight);
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.philosophy-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.philosophy-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-white);
}

.philosophy-text h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.philosophy-text p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .philosophy-slogan {
        font-size: var(--text-2xl);
    }
    
    .philosophy-card {
        padding: var(--spacing-2xl);
    }
}

/* ========================================
   Features Section
======================================== */
.features {
    background: var(--bg-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Feature Highlight Card */
.feature-card.feature-highlight {
    position: relative;
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), var(--bg-white));
}

.feature-card.feature-highlight:hover {
    border-color: var(--accent-dark);
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: var(--spacing-lg);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-white);
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: var(--leading-relaxed);
}

.feature-example {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-color);
}

.example-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.example-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ========================================
   Process Section
======================================== */
.process {
    background: var(--bg-white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-xl);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-bottom: var(--spacing-2xl);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.step-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.step-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.step-line {
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 48px);
    background: var(--border-light);
}

.process-step:last-child .step-line {
    display: none;
}

.process-step:last-child .step-content {
    padding-bottom: 0;
}

.process-note {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.process-note svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--warning-color);
}

.process-note p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ========================================
   Users Section
======================================== */
.users {
    background: var(--bg-gray);
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.user-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.user-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
}

.client-card .user-card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.lawyer-card .user-card-header {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
}

.user-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-white);
}

.user-card-header h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--bg-white);
}

.user-card-body {
    padding: var(--spacing-xl);
}

.user-desc {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: var(--leading-relaxed);
}

.user-benefits {
    margin-bottom: var(--spacing-xl);
}

.user-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--success-color);
    font-weight: 700;
}

.user-scenarios {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.scenarios-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.scenarios-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.lawyer-entry {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.lawyer-entry h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.lawyer-entry p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: var(--leading-relaxed);
}

/* ========================================
   Compliance Section
======================================== */
.compliance {
    background: var(--bg-white);
}

.compliance-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.compliance-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.compliance-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.compliance-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-white);
}

.compliance-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.compliance-card ul {
    list-style: none;
}

.compliance-card li {
    position: relative;
    padding-left: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.compliance-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.compliance-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    background: var(--bg-gray);
}

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

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-md);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.faq-answer ul {
    list-style: disc;
}

.faq-answer ol {
    list-style: decimal;
}

.faq-answer li {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-xs);
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-4xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.contact-detail h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contact-detail p {
    color: var(--text-secondary);
}

.contact-qrcode {
    display: flex;
    justify-content: center;
}

.contact-qrcode .qrcode-card {
    padding: var(--spacing-xl);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-3xl);
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
}

.footer-slogan {
    color: var(--text-light);
    font-size: var(--text-sm);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--bg-white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column a {
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright, .icp {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .hero-text {
        text-align: center;
        max-width: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .users-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .contact-qrcode {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .section {
        padding: var(--spacing-3xl) 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .qrcode-placeholder {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .process-step {
        gap: var(--spacing-md);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
    
    .step-line {
        left: 19px;
        top: 40px;
        height: calc(100% - 40px);
    }
}

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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