html {
    scroll-behavior: smooth;
}

:root {
    /* Brand Colors */
    --brand-1: #E8F3FF;
    --brand-2: #BEDAFF;
    --brand-3: #94BFFF;
    --brand-4: #6AA1FF;
    --brand-5: #4080FF;
    --brand-6: #165DFF;
    --brand-7: #0E42D2;

    /* Neutral Colors */
    --neutral-1: #F7F8FA;
    --neutral-2: #F2F3F5;
    --neutral-3-fill: #E5E6E8;
    --neutral-3-line: #E5E6EB;
    --neutral-4: #C9CDD4;
    --neutral-6: #86909C;
    --neutral-8: #4E5969;
    --neutral-10: #1D2129;

    /* Functional Colors */
    --success: #00B42A;
    --success-light: #E8FFEA;
    --warning: #FF7D00;
    --warning-light: #FFF7E8;
    --danger: #F53F3F;
    --danger-light: #FFECE8;
    --info: #0FC6C2;
    --info-light: #E8FFFF;

    /* Semantic */
    --text-primary: var(--neutral-10);
    --text-secondary: var(--neutral-8);
    --text-muted: var(--neutral-6);
    --text-disabled: var(--neutral-4);
    
    --border-color: var(--neutral-3-line);
    --bg-base: #FFFFFF;
    --bg-light: var(--neutral-1);
    
    /* Shadows & Radii */
    --shadow-sm: 0 4px 10px rgba(29, 33, 41, 0.05);
    --shadow-md: 0 10px 30px rgba(29, 33, 41, 0.08);
    --shadow-lg: 0 24px 48px rgba(22, 93, 255, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Typography */
    --font-family: 'Nunito', 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Utilities */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.text-primary { color: var(--brand-6) !important; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }
.bg-primary { background-color: var(--brand-6); color: white; }
.bg-primary-light { background-color: var(--brand-1); }
.bg-success { background-color: var(--success); color: white; }
.bg-success-light { background-color: var(--success-light); }
.bg-warning { background-color: var(--warning); color: white; }
.bg-warning-light { background-color: var(--warning-light); }
.bg-danger { background-color: var(--danger); color: white; }
.bg-danger-light { background-color: var(--danger-light); }
.bg-info { background-color: var(--info); color: white; }
.bg-info-light { background-color: var(--info-light); }
.bg-secondary { background-color: var(--neutral-6); color: white; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background-color: var(--brand-6); color: white; box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3); }
.btn-primary:hover { background-color: var(--brand-5); box-shadow: 0 6px 16px rgba(22, 93, 255, 0.4); }
.btn-primary:active { background-color: var(--brand-7); }

.btn-outline { background-color: white; border-color: var(--border-color); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--brand-6); color: var(--brand-6); }

.btn-white { background-color: white; color: var(--brand-6); box-shadow: var(--shadow-md); }
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-outline-white { background-color: transparent; border-color: rgba(255,255,255,0.4); color: white; }
.btn-outline-white:hover { background-color: rgba(255,255,255,0.1); border-color: white; }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 100px; }

.btn-download-stack {
    display: inline-flex;
    align-items: center;
    padding-left: 22px;
    padding-right: 28px;
}

/* Header */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--text-primary); }
.logo img { width: 32px; height: 32px; border-radius: 8px; }

nav ul { display: flex; gap: 40px; }
nav a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

nav a:hover { color: var(--brand-6); }
nav a.active { color: var(--brand-6); }
nav a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background-color: var(--brand-6); border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #F5F9FF 0%, #FFFFFF 100%);
}

.hero-bg-shapes {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6;
}

.hero-bg-shapes .shape-1 { width: 550px; height: 550px; background: #E8F3FF; top: -180px; left: -100px; opacity: 0.8; }
.hero-bg-shapes .shape-2 { width: 450px; height: 450px; background: #F0F6FF; bottom: -100px; left: 50px; opacity: 0.8; }
.hero-bg-shapes .shape-3 { width: 280px; height: 280px; background: rgba(82, 196, 26, 0.06); top: 10%; left: 15%; }
.hero-bg-shapes .shape-4 { width: 350px; height: 350px; background: rgba(250, 140, 22, 0.04); top: 40%; left: -50px; }

.hero-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 80px; position: relative; z-index: 1;
}

.hero-content { flex: 1.2; max-width: 640px; }

.tag {
    display: inline-block; padding: 6px 16px; background-color: white; color: var(--brand-6);
    border: 1px solid var(--brand-2); border-radius: 100px; font-size: 14px; font-weight: 700;
    margin-bottom: 24px; box-shadow: var(--shadow-sm);
}

.hero h1 { font-size: 56px; line-height: 1.15; margin-bottom: 24px; font-weight: 900; letter-spacing: -0.5px; }

.subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 48px; line-height: 1.7; max-width: 90%; }

.hero-actions { display: flex; gap: 20px; margin-bottom: 40px; }

.hero-features { display: flex; gap: 32px; font-size: 15px; color: var(--text-primary); font-weight: 600; }
.hero-features span i { margin-right: 6px; }

/* Hero Interactive Popup Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1200px;
}

/* Floating Format Badges around it */
.format-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 15;
    animation: float-badge 6s ease-in-out infinite;
}

.format-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.format-badge span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    background: white;
    padding: 2px 8px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.format-badge:hover .format-icon {
    transform: scale(1.15) rotate(8deg);
    border-color: var(--brand-6);
    box-shadow: 0 10px 20px rgba(22, 93, 255, 0.15);
}

/* Floating animation keyframes and offsets */
@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Floating animation keyframes and offsets */
@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
.float-2 { bottom: -70px; left: 100px; animation-delay: 1.5s; }
.float-3 { bottom: -50px; left: 240px; animation-delay: 3s; }
.float-4 { bottom: 20px; left: 370px; animation-delay: 0.8s; }
.float-5 { bottom: 140px; left: 460px; animation-delay: 2.2s; }
.float-6 { bottom: 280px; left: 510px; animation-delay: 3.5s; }

/* Background Browser Mockup */
.mock-browser-bg {
    position: absolute;
    width: 440px;
    height: 330px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(22, 93, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    left: -80px;
    top: 50px;
    z-index: 2;
    transform: rotateY(15deg) rotateX(6deg) scale(0.95);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mock-browser-bg .browser-header {
    height: 28px;
    background: #F4F6FA;
    border-bottom: 1px solid rgba(22, 93, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 12px;
}

.mock-browser-bg .browser-dots {
    display: flex;
    gap: 5px;
}

.mock-browser-bg .browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.mock-browser-bg .browser-dots span:nth-child(1) { background: #FF5F56; }
.mock-browser-bg .browser-dots span:nth-child(2) { background: #FFBD2E; }
.mock-browser-bg .browser-dots span:nth-child(3) { background: #27C93F; }

.mock-browser-bg .browser-address {
    flex: 1;
    height: 18px;
    background: white;
    border-radius: 4px;
    border: 1px solid rgba(22, 93, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 8px;
    color: var(--text-muted);
}

.mock-browser-bg .browser-body {
    flex: 1;
    background: white;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feishu-doc-header {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-primary);
}

.feishu-doc-editor {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feishu-doc-editor .editor-line {
    height: 6px;
    background: var(--neutral-2);
    border-radius: 3px;
    width: 90%;
}

.feishu-doc-editor .editor-line.title-line {
    height: 10px;
    background: var(--neutral-3);
    width: 60%;
    margin-bottom: 8px;
}

.feishu-doc-editor .editor-line.short {
    width: 70%;
}

.feishu-doc-editor .editor-line.short-2 {
    width: 45%;
}

/* Center Brand Logo with Double Ring Glow */
.center-logo-area {
    position: absolute;
    left: 0px;
    top: 235px;
    width: 90px;
    height: 90px;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-container {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #165DFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(22, 93, 255, 0.45);
    border: 2px solid white;
    z-index: 28;
    overflow: hidden;
}

.center-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outer-glow-ring {
    position: absolute;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 1.5px dashed rgba(22, 93, 255, 0.2);
    animation: spin 30s linear infinite;
    z-index: 24;
}

.inner-glow-ring {
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1.5px solid rgba(22, 93, 255, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 16px rgba(22, 93, 255, 0.05);
    z-index: 23;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Connections SVG */
.hero-connections-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.dotted-path {
    stroke: rgba(22, 93, 255, 0.16);
    stroke-width: 1.5px;
    stroke-dasharray: 4 4;
    fill: none;
}

.interactive-popup {
    width: 340px;
    height: 450px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--font-family);
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(1deg) scale(1.02);
    transform-style: preserve-3d;
    box-shadow: -20px 20px 50px rgba(22, 93, 255, 0.12), 0 10px 20px rgba(0,0,0,0.04);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    z-index: 10;
    margin-left: 120px;
    margin-top: -30px; /* Pull up to clear space for the lower logo */
}

.interactive-popup:hover {
    transform: rotateY(-6deg) rotateX(4deg) rotateZ(1deg) scale(1.06);
    box-shadow: -30px 30px 70px rgba(22, 93, 255, 0.18), 0 15px 30px rgba(0,0,0,0.06);
}

/* Popup Nav */
.popup-nav {
    display: flex;
    background: white;
    border-bottom: 1px solid var(--neutral-2);
    z-index: 10;
}

.popup-nav-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    transition: all 0.2s;
}

.popup-nav-btn:hover {
    color: var(--text-primary);
    background: var(--neutral-1);
}

.popup-nav-btn.active {
    color: var(--brand-6);
}

.popup-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background-color: var(--brand-6);
    border-radius: 3px;
}

/* Popup Content Area */
.popup-content {
    flex: 1;
    background: #F9FBFF;
    overflow-y: auto;
    padding: 16px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.popup-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.popup-pane {
    height: 100%;
}

.pane-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    height: 250px;
}

.pane-empty i {
    font-size: 32px;
    opacity: 0.5;
}

/* Home Pane */
.mock-doc-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 144, 255, 0.2);
    box-shadow: var(--shadow-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.card-header {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 16px;
}

.badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

.badge-doc {
    background: rgba(24, 144, 255, 0.1);
    color: var(--brand-6);
}

.doc-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.export-btn {
    background: #F0F7FF;
    border: 1px solid rgba(24, 144, 255, 0.2);
    color: var(--brand-6);
    border-radius: var(--radius-sm);
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.export-btn:hover {
    background: var(--brand-6);
    color: white;
    box-shadow: 0 4px 10px rgba(22, 93, 255, 0.25);
}

.export-btn:hover i {
    color: white !important;
}

.cache-btn {
    width: 100%;
    background: var(--brand-6);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.cache-btn:hover {
    background: var(--brand-5);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

.status-bar {
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.active {
    background: var(--success);
    box-shadow: 0 0 8px rgba(0, 180, 42, 0.5);
}

.status-msg {
    background: var(--neutral-1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--text-secondary);
}

/* Webcopy Pane */
.pane-webcopy {
    display: flex;
    flex-direction: column;
}

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

.webcopy-btn {
    background: #F0F7FF;
    border: 1px solid rgba(24, 144, 255, 0.2);
    color: var(--brand-6);
    border-radius: var(--radius-sm);
    padding: 11px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    transition: all 0.2s;
}

.webcopy-btn:hover {
    background: var(--brand-6);
    color: white;
    box-shadow: 0 4px 10px rgba(22, 93, 255, 0.2);
}

.badge-web {
    background: rgba(15, 198, 194, 0.1);
    color: var(--info);
}

.badge-wiki {
    background: rgba(255, 125, 0, 0.1);
    color: var(--warning);
}

.badge-md {
    background: rgba(29, 33, 41, 0.08);
    color: var(--neutral-10);
}

.badge-xlsx {
    background: rgba(0, 180, 42, 0.1);
    color: var(--success);
}

/* Cache Pane */
.pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.refresh-icon {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.refresh-icon:hover {
    color: var(--brand-6);
}

.empty-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    padding: 40px 0;
}

.empty-list i {
    font-size: 28px;
    opacity: 0.3;
}

.cache-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cache-item {
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cache-info {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.cache-title {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

.cache-actions {
    display: flex;
    gap: 4px;
}

.action-btn {
    border: none;
    background: transparent;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.action-btn:hover {
    background: var(--neutral-1);
}

/* Settings Pane */
.settings-group {
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.group-title {
    background: var(--neutral-1);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.setting-item {
    padding: 12px;
    border-bottom: 1px solid var(--neutral-2);
    display: flex;
    font-size: 12px;
}

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

.setting-item.flex-col {
    flex-direction: column;
    gap: 8px;
}

.setting-item.flex-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.setting-item label {
    font-weight: 700;
    color: var(--text-secondary);
}

.fake-select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 12px;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.setting-desc .title {
    font-weight: 700;
    color: var(--text-primary);
}

.setting-desc .sub {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}

.toggle-checkbox {
    appearance: none;
    width: 34px;
    height: 18px;
    background-color: var(--neutral-3-fill);
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s;
    outline: none;
    flex-shrink: 0;
}

.toggle-checkbox::before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-checkbox:checked {
    background-color: var(--brand-6);
}

.toggle-checkbox:checked::before {
    transform: translateX(16px);
}

/* Popup Footer */
.popup-footer {
    background: var(--neutral-1);
    border-top: 1px solid var(--border-color);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: var(--text-muted);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.footer-left img {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

/* Sections */
section { padding: 60px 0; }
.section-title { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 20px; color: var(--text-primary); letter-spacing: -0.5px; }
.section-subtitle { text-align: center; font-size: 18px; color: var(--text-secondary); margin-bottom: 64px; }

/* Grids */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 56px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 56px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }

/* Capability Cards */
.capability-card {
    background: white;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--neutral-2);
    box-shadow: 0 4px 24px rgba(0,0,0,0.01);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 93, 255, 0.06);
    border-color: var(--brand-3);
}

.capability-card .icon-wrapper {
    width: 68px;
    height: 68px;
    margin: 0 0 28px 0;
    background: linear-gradient(135deg, #F0F7FF 0%, rgba(22, 93, 255, 0.05) 100%);
    color: var(--brand-6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(22, 93, 255, 0.12);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 0 6px 16px rgba(22, 93, 255, 0.04);
}

.capability-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.capability-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Platforms */
.platform-logos {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 48px;
    padding-bottom: 8px;
}

.logo-card {
    background: white;
    border: 1px solid var(--neutral-3-line);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0; /* Stop cards from shrinking on small containers */
}

.logo-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-3);
    box-shadow: 0 12px 28px rgba(22, 93, 255, 0.08);
}

.logo-img-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-card span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Features */
.features-split {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-top: 64px;
}

.features-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.feature-mock-card {
    width: 250px;
    height: 175px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    padding: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-mock-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--brand-3);
}

.feature-mock-card.bg-dark-mock {
    background: #1D2129;
    border: none;
}

.feature-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-num-badge {
    width: 26px;
    height: 26px;
    background: var(--brand-6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.feature-text-block h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.feature-text-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-f {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Miniature Mock UIs */
.mini-browser {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid var(--neutral-3-line);
    overflow: hidden;
    background: white;
}

.browser-dots {
    height: 16px;
    background: var(--neutral-1);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
    flex-shrink: 0;
}

.browser-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

/* Feishu Mock */
.mini-feishu-page {
    display: flex;
    height: 100%;
    background: white;
}

.feishu-left {
    width: 44px;
    background: var(--neutral-1);
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
}

.feishu-right {
    flex: 1;
    padding: 10px;
    position: relative;
}

.feishu-text-line {
    height: 6px;
    background: var(--neutral-2);
    border-radius: 3px;
    margin-bottom: 6px;
}

.feishu-text-line.short {
    width: 60%;
}

.feishu-popup-mock {
    position: absolute;
    right: 8px;
    top: 12px;
    width: 96px;
    background: white;
    border-radius: 6px;
    border: 1px solid rgba(24, 144, 255, 0.2);
    box-shadow: var(--shadow-sm);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.feishu-popup-mock .popup-title {
    font-size: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feishu-popup-mock .popup-grid-mock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.feishu-popup-mock .popup-grid-mock span {
    height: 10px;
    background: var(--brand-1);
    border: 1px solid rgba(22, 93, 255, 0.08);
    border-radius: 2px;
}

/* Code Preview Mock */
.code-preview-mock {
    font-family: monospace;
    font-size: 11px;
    line-height: 1.5;
    color: #A9B2C3;
}

.code-line {
    display: flex;
}

.c-tag { color: #C678DD; }
.c-bullet { color: #61AFEF; }
.c-code { color: #98C379; }
.c-img { color: #E5C07B; }

/* Batch Card Mock */
.mini-batch-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.batch-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.batch-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.b-item {
    font-size: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--neutral-1);
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: 600;
    color: var(--text-primary);
}

.b-item span {
    color: var(--text-muted);
    font-size: 8px;
}

.b-btn {
    width: 100%;
    background: #E8F3FF;
    color: var(--brand-6);
    border: 1px solid rgba(22, 93, 255, 0.1);
    border-radius: 4px;
    padding: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-top: 6px;
    cursor: pointer;
}

/* Web Page Mock */
.mini-web-page {
    flex: 1;
    padding: 10px;
    position: relative;
    background: white;
}

.web-text-line {
    height: 5px;
    background: var(--neutral-2);
    border-radius: 2.5px;
    margin-bottom: 5px;
}

.web-text-line.short {
    width: 50%;
}

.web-img-block {
    height: 30px;
    background: var(--neutral-1);
    border-radius: 3px;
    margin-bottom: 5px;
}

.web-popup-save-mock {
    position: absolute;
    right: 8px;
    top: 15px;
    width: 90px;
    background: white;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.web-popup-save-mock img {
    border-radius: 2px;
    margin-bottom: 2px;
}

.w-btn {
    font-size: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--brand-1);
    color: var(--brand-6);
    padding: 3px;
    border-radius: 2px;
}

.check-list-mock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
    margin-top: 12px;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.check-list-mock li {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Scenarios */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.scenario-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 230px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.scenario-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.scenario-card ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.scenario-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.scenario-card ul li i {
    font-size: 14px;
}

.scenario-svg-img {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.scenario-card:hover .scenario-svg-img {
    transform: scale(1.1) rotate(2deg);
}

/* Scenario Theme Colors */
.card-green {
    background: linear-gradient(135deg, #F6FFED 0%, #FFFFFF 100%);
    border: 1px solid rgba(82, 196, 26, 0.12);
}
.card-green h3 { color: #237804; }
.card-green ul li i { color: #52c41a; }
.card-green:hover { border-color: rgba(82, 196, 26, 0.3); }

.card-blue {
    background: linear-gradient(135deg, #E6F7FF 0%, #FFFFFF 100%);
    border: 1px solid rgba(24, 144, 255, 0.12);
}
.card-blue h3 { color: #0050b3; }
.card-blue ul li i { color: #1890ff; }
.card-blue:hover { border-color: rgba(24, 144, 255, 0.3); }

.card-orange {
    background: linear-gradient(135deg, #FFF7E6 0%, #FFFFFF 100%);
    border: 1px solid rgba(250, 140, 22, 0.12);
}
.card-orange h3 { color: #ad4e00; }
.card-orange ul li i { color: #fa8c16; }
.card-orange:hover { border-color: rgba(250, 140, 22, 0.3); }

.card-indigo {
    background: linear-gradient(135deg, #F0F5FF 0%, #FFFFFF 100%);
    border: 1px solid rgba(47, 84, 235, 0.12);
}
.card-indigo h3 { color: #1d39c4; }
.card-indigo ul li i { color: #2f54eb; }
.card-indigo:hover { border-color: rgba(47, 84, 235, 0.3); }

/* Why Choose Us */
.reason-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #F9FBFF 0%, #FFFFFF 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 93, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reason-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-4);
    box-shadow: 0 12px 28px rgba(22, 93, 255, 0.08);
}

.reason-icon {
    width: 44px;
    height: 44px;
    background: rgba(22, 93, 255, 0.04);
    border: 1.5px solid var(--brand-5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand-6);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--brand-6);
    color: white;
    transform: scale(1.05);
}

.reason-text h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.reason-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing */
.pricing { padding: 20px 0 60px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--transition-bounce);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.pricing-card-vip {
    border: 2px solid var(--brand-6);
    box-shadow: 0 12px 30px rgba(24, 144, 255, 0.1);
}
.pricing-recommend {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-5), var(--brand-7));
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(24, 144, 255, 0.3);
}
.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 12px;
}
.pricing-price {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}
.pricing-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pricing-feature i {
    font-size: 14px;
    margin-top: 4px;
}
.pricing-feature span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.pricing-action {
    margin-top: auto;
    width: 100%;
}
.pricing-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
}
.pricing-btn.btn-outline {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.pricing-btn.btn-outline:hover {
    border-color: var(--brand-6);
    color: var(--brand-6);
    background: rgba(24, 144, 255, 0.04);
}
.pricing-btn.btn-primary {
    background: var(--brand-6);
    color: white;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}
.pricing-btn.btn-primary:hover {
    background: var(--brand-5);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.4);
    transform: translateY(-1px);
}

/* CTA */
.cta { padding-bottom: 60px; }
.cta-banner {
    background: linear-gradient(90deg, #D4E9FF 0%, #E8F3FF 100%);
    border-radius: var(--radius-xl);
    padding: 56px 80px 56px 480px; /* Increase space for even larger illustration */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(22, 93, 255, 0.08);
}

.cta-left-img {
    position: absolute;
    left: 30px; /* Shift right slightly */
    bottom: -75px; /* Shift the image further down */
    width: 390px; /* Even larger illustration */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.cta-svg-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Stacked Icons inside Button */
.stacked-icons {
    display: flex;
    align-items: center;
    margin-right: 4px;
}

.stack-icon-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid white;
    margin-right: -6px;
    position: relative;
    object-fit: contain;
}

.stack-icon-item:nth-child(1) { z-index: 3; }
.stack-icon-item:nth-child(2) { z-index: 2; }
.stack-icon-item:nth-child(3) { z-index: 1; }

.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--brand-7);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 15px;
    margin-bottom: 28px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 600;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.cta-btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-white {
    background: white;
    color: var(--brand-6);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.05);
}

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 93, 255, 0.15);
}

.cta-btn-blue {
    background: rgba(22, 93, 255, 0.06);
    color: var(--brand-6);
    border: 1px solid rgba(22, 93, 255, 0.1);
}

.cta-btn-blue:hover {
    background: rgba(22, 93, 255, 0.1);
    transform: translateY(-2px);
}

.cta-watermark {
    position: absolute;
    right: -40px;
    bottom: -45px;
    width: 280px;
    height: 280px;
    color: rgba(22, 93, 255, 0.04);
    z-index: 1;
    pointer-events: none;
}

.watermark-svg {
    width: 100%;
    height: 100%;
}

/* Download Page Styles */

/* Download Hero */
.download-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.download-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 2; }
.download-hero-content { flex: 1; max-width: 600px; }
.download-hero-content h1 { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
.download-hero-features { display: flex; gap: 24px; margin-top: 40px; }
.hero-feature { display: flex; align-items: center; gap: 12px; }
.hero-feature-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-1); color: var(--brand-6); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hero-feature-text { display: flex; flex-direction: column; gap: 2px; }
.hero-feature-text strong { font-size: 14px; color: var(--text-primary); }
.hero-feature-text span { font-size: 12px; color: var(--text-secondary); }
.download-hero-image { flex: 1; display: flex; justify-content: center; }

/* Versions Section */
.versions-section { padding: 80px 0; }
.version-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; margin-bottom: 32px; }
.version-card { background: white; border: 1px solid var(--neutral-3-line); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: all 0.3s; }
.version-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); border-color: transparent; }
.version-card.disabled { background: var(--neutral-1-bg); opacity: 0.8; }
.version-card.disabled:hover { transform: none; box-shadow: 0 4px 12px rgba(0,0,0,0.02); border-color: var(--neutral-3-line); }
.version-icon { font-size: 48px; margin-bottom: 16px; display: flex; justify-content: center; align-items: center; }
.version-icon img { width: 48px; height: 48px; }
.version-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: var(--text-primary); }
.version-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.version-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; min-height: 18px; display: flex; align-items: center; justify-content: center; }
.badge-upcoming { background: var(--brand-1); color: var(--brand-6); padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.install-guide-link { margin-top: 16px; font-size: 14px; color: var(--text-secondary); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color 0.3s; }
.install-guide-link:hover:not(.disabled) { color: var(--brand-6); }
.install-guide-link.disabled { color: var(--text-muted); cursor: not-allowed; }

/* Install Steps Section */
.install-steps-section { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.step-card { background: white; border-radius: var(--radius-lg); padding: 32px 32px 0 32px; border: 1px solid var(--neutral-3-line); box-shadow: 0 4px 12px rgba(0,0,0,0.02); display: flex; flex-direction: column; align-items: flex-start; text-align: left; overflow: hidden; transition: all 0.3s; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.step-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; width: 100%; }
.step-number { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--brand-6); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin-bottom: 0; }
.step-text { flex: 1; }
.step-text h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text-primary); }
.step-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }

.step-img-mockup { width: 100%; height: 160px; display: flex; align-items: flex-end; justify-content: center; position: relative; margin-top: auto; }

/* Mockup 1 */
.mock-1-browser { width: 90%; height: 120px; background: white; border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 0 1px rgba(0,0,0,0.1), 0 -4px 12px rgba(0,0,0,0.03); border: 1px solid var(--neutral-3-line); border-bottom: none; display: flex; flex-direction: column; }
.mock-1-top { height: 36px; background: #F7F8FA; display: flex; align-items: center; padding: 0 12px; gap: 12px; border-bottom: 1px solid var(--neutral-3-line); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.mock-1-dots { display: flex; gap: 4px; }
.mock-1-dots span { width: 8px; height: 8px; border-radius: 50%; }
.mock-1-dots span:nth-child(1) { background: #FF5F56; }
.mock-1-dots span:nth-child(2) { background: #FFBD2E; }
.mock-1-dots span:nth-child(3) { background: #27C93F; }
.mock-1-address { flex: 1; height: 20px; background: white; border-radius: 10px; font-size: 10px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; }
.mock-1-content { flex: 1; padding: 16px 12px; display: flex; align-items: center; gap: 12px; }
.mock-1-icon { width: 40px; height: 40px; background: white; border: 1px solid var(--neutral-2); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.mock-1-icon img { width: 24px; height: 24px; }
.mock-1-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mock-1-line { height: 6px; background: var(--neutral-3-line); border-radius: 3px; }
.mock-1-line.short { width: 60%; }
.mock-1-action { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: var(--brand-6); background: #E6EFFF; border-radius: 50%; font-size: 12px; margin-left: auto; }

/* Mockup 2 */
.mock-2-card { width: 80%; padding: 24px; background: white; border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 0 1px rgba(0,0,0,0.1), 0 -4px 16px rgba(0,0,0,0.04); border: 1px solid var(--neutral-3-line); border-bottom: none; display: flex; align-items: center; gap: 16px; margin-bottom: -10px; }
.mock-2-icon { width: 56px; height: 56px; background: #E6EFFF; border-radius: 16px; display: flex; align-items: center; justify-content: center; position: relative; }
.mock-2-icon img { width: 32px; height: 32px; }
.mock-2-icon .sparkle { position: absolute; top: -6px; right: -6px; color: var(--brand-6); font-size: 14px; }
.mock-2-info { flex: 1; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.mock-2-title { width: 70%; height: 8px; background: var(--neutral-3-line); border-radius: 4px; }
.mock-2-btn { background: var(--brand-6); color: white; font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 6px; }

/* Mockup 3 */
.mock-3-toolbar { width: 90%; height: 48px; background: white; border-radius: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--neutral-2); display: flex; align-items: center; padding: 0 16px; gap: 16px; margin-bottom: 24px; }
.mock-3-toolbar .address-bar { flex: 1; height: 28px; background: #F2F3F5; border-radius: 14px; display: flex; align-items: center; padding: 0 12px; color: var(--text-muted); font-size: 12px; }
.mock-3-tools { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text-secondary); }
.mock-3-tools .active-icon { background: var(--brand-6); color: white; width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* FAQ Section */
.faq-section { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.faq-item { background: white; border: 1px solid var(--neutral-3-line); border-radius: var(--radius-md); padding: 20px 24px; cursor: pointer; transition: all 0.3s; }
.faq-item:hover { border-color: var(--brand-4); }
.faq-item.active { border-color: var(--brand-6); box-shadow: 0 4px 12px rgba(24,144,255,0.1); }
.faq-question { display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 16px; color: var(--text-primary); }
.faq-question span { flex: 1; }
.faq-icon { color: var(--text-muted); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--brand-6); }
.faq-answer { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--neutral-3-line); font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Features Card for Download Page */
.dl-feature-card { background: white; border-radius: var(--radius-md); padding: 24px 20px; border: 1px solid var(--neutral-3-line); box-shadow: 0 4px 12px rgba(0,0,0,0.02); display: flex; flex-direction: column; align-items: flex-start; text-align: left; transition: all 0.3s; }
.dl-feature-card:hover { border-color: var(--brand-4); box-shadow: 0 8px 24px rgba(22,93,255,0.08); transform: translateY(-2px); }
.dl-feature-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.dl-feature-icon { color: var(--brand-6); font-size: 16px; display: flex; align-items: center; justify-content: center; }
.dl-feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 0; }
.dl-feature-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Foreground Plugin Mockup (for download page) */
.dl-hero-plugin {
    width: 340px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(1deg) scale(1.02);
    transform-style: preserve-3d;
    box-shadow: -20px 20px 50px rgba(22, 93, 255, 0.12), 0 10px 20px rgba(0,0,0,0.04);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    z-index: 10;
    margin-left: 120px;
    margin-top: -30px;
}

.dl-hero-plugin:hover {
    transform: rotateY(-6deg) rotateX(4deg) rotateZ(1deg) scale(1.06);
    box-shadow: -30px 30px 70px rgba(22, 93, 255, 0.18), 0 15px 30px rgba(0,0,0,0.06);
}

.dl-hero-plugin .plugin-header { padding: 20px 24px 16px; border-bottom: 1px solid var(--neutral-2); display: flex; align-items: center; gap: 12px; }
.dl-hero-plugin .plugin-header img { width: 42px; height: 42px; border-radius: 10px; }
.dl-hero-plugin .plugin-info { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.dl-hero-plugin .plugin-info strong { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.dl-hero-plugin .plugin-info span { font-size: 12px; color: var(--text-muted); }

.dl-hero-plugin .plugin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px; }
.dl-hero-plugin .plugin-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.dl-hero-plugin .plugin-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 4px; transition: transform 0.3s; }
.dl-hero-plugin .plugin-item:hover .plugin-icon { transform: scale(1.1); }
.dl-hero-plugin .plugin-item span { font-size: 11px; color: var(--text-secondary); font-weight: 600; }
/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .download-hero-inner { flex-direction: column; text-align: center; overflow: hidden; }
    .download-hero-content { max-width: 100%; }
    .download-hero-features { justify-content: center; flex-wrap: wrap; }
    .version-cards, .steps-grid, .faq-grid { grid-template-columns: 1fr; }
    .hero-image, .download-hero-image { transform: scale(0.8); height: 320px; }
}

@media (max-width: 576px) {
    .hero-image, .download-hero-image { transform: scale(0.6); height: 240px; }
}



/* Auth Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.auth-modal {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-pop {
    0% { transform: scale(0.95) translateY(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    font-size: 20px; color: var(--text-muted);
    cursor: pointer; transition: color 0.3s;
}
.modal-close:hover { color: var(--text-primary); }

.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h2 { font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.auth-header p { font-size: 14px; color: var(--text-secondary); }

.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.form-group input { 
    padding: 12px 16px; 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius-md); 
    font-size: 14px; outline: none; transition: all 0.3s; 
}
.form-group input:focus { border-color: var(--brand-6); box-shadow: 0 0 0 3px rgba(24,144,255,0.1); }
.auth-submit-btn { width: 100%; padding: 12px 0; font-size: 16px; margin-top: 8px; font-weight: 600; }

.auth-divider { 
    text-align: center; position: relative; margin: 24px 0; 
}
.auth-divider::before { 
    content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: var(--border-color); 
}
.auth-divider span { 
    position: relative; background: white; padding: 0 12px; font-size: 12px; color: var(--text-muted); 
}

.auth-social { display: flex; justify-content: center; }
.social-btn { width: 100%; display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--text-primary); font-weight: 600; font-size: 14px; }

.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-secondary); }
.auth-footer a { color: var(--brand-6); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* Footer */
footer { border-top: 1px solid var(--border-color); padding: 48px 0; background: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text-primary); }
.footer-logo img { width: 24px; height: 24px; }
.copyright { color: var(--text-muted); font-weight: 400; font-size: 14px; margin-left: 24px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--brand-6); }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: var(--brand-6);
    color: white;
    border-color: var(--brand-6);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(24, 144, 255, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .grid-6 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .grid-4, .scenario-grid { grid-template-columns: repeat(2, 1fr); }
    .features-split { gap: 24px; }
}

@media (max-width: 992px) {
    .hero-inner { flex-direction: column; text-align: center; padding-top: 60px; }
    .hero-actions { justify-content: center; }
    .hero-features { justify-content: center; }
    .hero-image { width: 100%; margin-top: 60px; }
    .cta-banner {
        flex-direction: column-reverse; /* Put image at the bottom on tablets, or normal stack */
        text-align: center;
        padding: 48px 32px;
        gap: 32px;
    }
    .cta-left-img {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 240px;
        margin-top: 16px;
    }
    .cta-content {
        align-items: center;
        text-align: center;
    }
    .cta-content h2 { font-size: 30px; }
    .features-split { flex-direction: column; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .platform-logos { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .grid-6 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .grid-5, .grid-4, .scenario-grid { grid-template-columns: 1fr; }
    nav ul { display: none; }
    .hero h1 { font-size: 40px; }
    .subtitle { font-size: 16px; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto 32px; }
    .hero-features { flex-direction: column; gap: 16px; }
    .cta-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .copyright { display: block; margin: 12px 0 0 0; }
    .feature-row { flex-direction: column; text-align: center; align-items: center; }
    .feature-title-row { justify-content: center; }
    .format-tags { justify-content: center; }
    .platform-logos { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .check-list-mock { justify-content: center; }
    .back-to-top { bottom: 24px; right: 24px; width: 40px; height: 40px; font-size: 16px; }
}

/* Pricing Page Specific */
.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.pricing-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.pricing-comparison {
    padding: 60px 0 80px;
}
.comparison-table-wrapper {
    margin-top: 48px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-3-line);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}
.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--neutral-3-line);
    font-size: 14px;
}
.comparison-table th {
    font-weight: 700;
    color: var(--text-primary);
    background: var(--neutral-1-bg);
}
.comparison-table th:first-child {
    width: 40%;
}
.comparison-table th:not(:first-child) {
    width: 20%;
    text-align: center;
}
.comparison-table td {
    color: var(--text-secondary);
}
.comparison-table td:not(:first-child) {
    text-align: center;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-feature-name {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}
.comparison-feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}
.comparison-table i.fa-check {
    color: var(--brand-6);
    font-size: 16px;
}
.comparison-table i.fa-xmark {
    color: var(--neutral-4-muted);
    font-size: 16px;
}

/* Guide Page Specific */
.guide-container {
    padding: 120px 0 80px;
}
.guide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}
.guide-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-3-line);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.guide-search-wrapper {
    margin-bottom: 24px;
    position: relative;
}
.guide-search-wrapper input {
    width: 100%;
    padding: 10px 16px 10px 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-3-line);
    background: var(--neutral-1-bg);
    outline: none;
    font-size: 14px;
    transition: all 0.3s;
}
.guide-search-wrapper input:focus {
    border-color: var(--brand-6);
    background: white;
    box-shadow: 0 0 0 3px rgba(24,144,255,0.1);
}
.guide-search-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.guide-category-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 8px;
}
.guide-category-title:first-of-type {
    margin-top: 0;
}
.guide-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.guide-menu-item {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.guide-menu-item:hover {
    color: var(--brand-6);
    background: var(--neutral-2-bg);
}
.guide-menu-item.active {
    color: white;
    background: var(--brand-6);
    font-weight: 600;
}
.guide-content-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-3-line);
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.guide-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.guide-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--neutral-3-line);
    padding-bottom: 8px;
}
.guide-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.guide-content ul, .guide-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.guide-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}
.note-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.6;
}
.note-box i {
    font-size: 18px;
    margin-top: 2px;
}
.note-box.warning {
    background: #FFFBE6;
    border: 1px solid #FFE58F;
    color: #D46B08;
}
.note-box.tip {
    background: #E6F7FF;
    border: 1px solid #91D5FF;
    color: #096DD9;
}
.note-box.important {
    background: #FFF0F6;
    border: 1px solid #FFADD2;
    color: #C41D7F;
}
.guide-content code {
    background: var(--neutral-2-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    color: #c41d7f;
}

/* Feedback Page Specific */
.feedback-container {
    padding: 120px 0 80px;
}
.feedback-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin-top: 40px;
}
.feedback-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-3-line);
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.feedback-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feedback-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-3-line);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.feedback-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.feedback-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.contact-item i {
    color: var(--brand-6);
    font-size: 16px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.feedback-textarea {
    min-height: 180px;
    resize: vertical;
}
.feedback-submit-btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}
.success-animation {
    text-align: center;
    padding: 60px 0;
}
.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background: #E6F7FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--brand-6);
    font-size: 32px;
    box-shadow: 0 0 0 10px #F6F9FF;
}

@media (max-width: 992px) {
    .guide-layout {
        grid-template-columns: 1fr;
    }
    .guide-sidebar {
        position: static;
        width: 100%;
    }
    .feedback-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .pricing-hero h1 {
        font-size: 32px;
    }
    .guide-content-wrapper {
        padding: 24px;
    }
}

/* Legal Pages Specific */
.legal-container {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}
.legal-content {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-3-line);
    padding: 48px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.legal-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.legal-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--neutral-3-line);
    padding-bottom: 16px;
}
.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text-primary);
}
.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}
@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
    }
    .legal-content h1 {
        font-size: 26px;
    }
}


