/* 设计系统变量 */
:root {
    /* 主色调 */
    --primary-color: #83e21d;
    --primary-dark: #6bc817;
    --primary-light: #a8f04a;
    --primary-gradient: linear-gradient(135deg, #83e21d 0%, #6bc817 100%);
    
    /* 中性色 */
    --white: #ffffff;
    --gray-25: #fcfcfd;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* 主色调扩展 */
    --primary-50: #f0fdf4;
    --primary-100: #dcfce7;
    --primary-150: #bbf7d0;
    
    /* 中性色扩展 */
    --gray-150: #e5e7eb;
    
    /* 功能色 */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* 阴影 - 扁平化设计 */
    --shadow-sm: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    
    /* 圆角 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* 间距 */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* 字体 */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: var(--space-4) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-download-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.nav-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-600);
    transition: 0.3s;
}

/* 首屏Banner区 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: var(--space-10);
}

.hero-title-main {
    display: block;
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.625rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}



.hero-buttons {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-10);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    min-width: 180px;
}

.download-btn.primary {
    background: var(--primary-gradient);
    color: var(--white);
}

.download-btn.secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.2;
}

.btn-platform {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-7);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: var(--space-3);
    font-weight: 500;
}

/* 手机Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.app-header {
    padding: var(--space-4) var(--space-4) var(--space-6);
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.status-icons {
    display: flex;
    gap: var(--space-2);
}

.app-title-bar {
    text-align: center;
    padding: 0 var(--space-4);
}

.app-title-bar h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.app-status {
    font-size: 0.875rem;
    opacity: 0.8;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    gap: var(--space-6);
}

.jump-counter {
    text-align: center;
    margin-bottom: var(--space-4);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.counter-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: var(--space-2);
}

.progress-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-4);
}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 8;
}

.progress-fill {
    fill: none;
    stroke: var(--white);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 67.8584;
    animation: progress 2s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.progress-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: var(--space-1);
}

.app-stats {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-4);
}

.app-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.stat-name {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: var(--space-1);
}

@keyframes progress {
    0% { stroke-dashoffset: 339.292; }
    100% { stroke-dashoffset: 67.8584; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 背景装饰 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(131, 226, 29, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, transparent 0%, rgba(131, 226, 29, 0.03) 100%);
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(131, 226, 29, 0.1), rgba(131, 226, 29, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* 通用区块样式 */
section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* 核心功能区 */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* 信任背书区 */
.trust {
    background: var(--gray-50);
}

.trust-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: var(--space-8);
    padding: var(--space-6) 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-1);
    display: block;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.875rem;
}

/* 删除合作伙伴样式 */

/* 删除用户评价相关样式 */

/* 应用场景区 */
.scenes {
    background: var(--white);
}

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.scene-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.scene-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.scene-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    color: var(--white);
}

.scene-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.scene-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.scene-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
}

/* 价格方案区 */
.pricing {
    background: var(--gray-50);
}

.pricing-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pricing-plan {
    padding: var(--space-6);
    text-align: center;
    position: relative;
    border-right: 1px solid var(--gray-200);
    background: var(--gray-50);
    overflow: hidden;
    transition: all 0.2s ease;
}

.pricing-plan:last-child {
    border-right: none;
}

/* 移除价格菜单悬停背景效果 */

.pricing-plan.featured {
    background: var(--primary-gradient);
    color: var(--white);
}

.pricing-plan.featured:hover {
    background: var(--primary-dark);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--warning) 0%, #f97316 100%);
    color: var(--white);
    padding: var(--space-1) var(--space-8);
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg) translate(25%, -50%);
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.featured-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--warning) 0%, #f97316 100%);
    transform: skew(-10deg);
    z-index: -1;
}

.featured-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    z-index: 1;
}

.pricing-plan h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--gray-900);
    transition: color 0.2s ease;
}

/* 移除价格菜单悬停标题颜色效果 */

.pricing-plan.featured h3 {
    color: var(--white);
}

.pricing-plan.featured:hover h3 {
    color: var(--white);
}

.price-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-2);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

/* 移除价格菜单悬停价格颜色效果 */

.pricing-plan.featured .price {
    color: var(--white);
}

.pricing-plan.featured:hover .price {
    color: var(--white);
}

.period {
    color: var(--gray-500);
    font-weight: 500;
    transition: color 0.2s ease;
}

/* 移除价格菜单悬停周期颜色效果 */

.pricing-plan.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-plan.featured:hover .period {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features-table {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-row {
    display: contents;
}

.feature-name {
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    font-weight: 600;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
}

.feature-name:last-child {
    border-right: none;
}

    .header-row .feature-name {
        background: var(--gray-50);
        font-weight: 700;
        font-size: 1rem;
    }

.feature-available,
.feature-unavailable {
    padding: var(--space-4);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.feature-available:last-child,
.feature-unavailable:last-child {
    border-right: none;
}

.feature-available {
    background: var(--gray-25);
}

.feature-available i {
    color: var(--success);
    font-size: 1.25rem;
}

.feature-unavailable {
    color: var(--gray-400);
    font-weight: 500;
    background: var(--gray-50);
}

/* 为不同列添加不同的背景色以区分 */
.feature-available:nth-child(2),
.feature-unavailable:nth-child(2) {
    background: var(--gray-25);
}

.feature-available:nth-child(3),
.feature-unavailable:nth-child(3) {
    background: var(--primary-50);
}

.feature-available:nth-child(4),
.feature-unavailable:nth-child(4) {
    background: var(--gray-25);
}

.feature-unavailable:nth-child(2),
.feature-unavailable:nth-child(4) {
    background: var(--gray-50);
}

/* 移除整列悬停效果 */



/* 删除FAQ和联系我们样式 */

/* 底部信息 */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-brand {
    /* 品牌区域占据更多空间 */
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: var(--space-6);
    line-height: 1.6;
    font-size: 0.875rem;
}



.footer-services h4,
.footer-contact-hours h4 {
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-services ul,
.footer-links ul {
    list-style: none;
}

.footer-services li,
.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-services a,
.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.footer-services a:hover,
.footer-links a:hover {
    color: var(--primary-color);
}

/* 删除下载按钮样式 */

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-6);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-legal p {
    color: var(--gray-400);
    margin: 0;
}

.beian-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.beian-link:hover {
    color: var(--gray-400);
}

.footer-contact-hours .contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer-contact-hours .contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-contact-hours .contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.footer-contact-hours .working-hours {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-4);
}

.footer-contact-hours .working-hours h5 {
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--white);
    font-size: 0.875rem;
}

.footer-contact-hours .working-hours p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.language-selection h5 {
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--white);
    font-size: 1rem;
}

.language-buttons {
    display: flex;
    gap: var(--space-2);
}

.lang-btn {
    padding: var(--space-2) var(--space-4);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--gray-800);
    color: var(--gray-400);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    background: var(--gray-700);
    color: var(--white);
}



/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }
    
    /* 删除联系我们响应式样式 */
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    /* 导航栏优化 */
    .navbar {
        padding: var(--space-3) 0;
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.98);
    }
    
    .nav-container {
        padding: 0 var(--space-4);
    }
    
    .nav-logo {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: var(--space-6) 0;
        gap: var(--space-4);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-lg);
        transition: all 0.2s ease;
    }
    
    .nav-menu a:hover {
        background: var(--primary-50);
        color: var(--primary-color);
    }

    .hamburger {
        display: flex;
    }
    
    .nav-download-btn {
        padding: var(--space-2) var(--space-4);
        font-size: 0.875rem;
    }

    /* 首屏优化 */
    .hero {
        min-height: 100vh;
        padding: var(--space-8) 0;
    }
    
    .hero-container {
        padding: 0 var(--space-4);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: var(--space-2) var(--space-4);
        border-radius: var(--radius-xl);
    }
    
    .hero-title-main {
        font-size: 2.75rem;
        line-height: 1.1;
        margin-bottom: var(--space-4);
    }
    
    .hero-title-sub {
        font-size: 1.125rem;
        line-height: 1.5;
        color: var(--gray-600);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .download-btn {
        padding: var(--space-4) var(--space-6);
        min-width: 100%;
        border-radius: var(--radius-xl);
        font-size: 1rem;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    .btn-label {
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    .btn-platform {
        font-size: 1rem;
        font-weight: 700;
    }

    .hero-stats {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: var(--space-4);
        padding: var(--space-5);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: var(--space-2);
    }
    
    .stat-divider {
        display: none;
    }

    /* 手机Mockup优化 */
    .phone-mockup {
        transform: scale(0.8);
        margin-top: var(--space-4);
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
        border-radius: 32px;
    }

    /* 功能卡片优化 */
    .features {
        padding: var(--space-12) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-8);
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--space-3);
    }
    
    .section-subtitle {
        font-size: 1rem;
        color: var(--gray-600);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .feature-card {
        padding: var(--space-6);
        border-radius: var(--radius-xl);
        border: 1px solid var(--gray-100);
        background: var(--white);
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: var(--space-4);
        margin-left: 0;
        margin-right: auto;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-3);
        text-align: left;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--gray-600);
        text-align: left;
    }
    
    /* 用户数据优化 */
    .trust {
        padding: var(--space-8) 0;
    }
    
    .trust-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        margin-bottom: 0;
        padding: var(--space-4) 0;
    }
    
    .stat-item {
        text-align: center;
        padding: var(--space-4);
        background: var(--white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--gray-100);
    }
    
    .stat-number {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: var(--space-2);
    }
    
    .stat-label {
        font-size: 0.875rem;
        color: var(--gray-600);
        font-weight: 500;
    }
    
    /* 场景卡片优化 */
    .scenes {
        padding: var(--space-12) 0;
    }
    
    .scenes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .scene-card {
        padding: var(--space-6);
        border-radius: var(--radius-xl);
        border: 1px solid var(--gray-100);
        background: var(--white);
        text-align: left;
    }
    
    .scene-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        margin-bottom: var(--space-4);
        margin-left: 0;
        margin-right: auto;
    }
    
    .scene-card h3 {
        font-size: 1.375rem;
        margin-bottom: var(--space-3);
        text-align: left;
    }
    
    .scene-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--space-4);
        color: var(--gray-600);
        text-align: left;
    }
    
    .scene-features {
        justify-content: flex-start;
    }
    
    .feature-tag {
        font-size: 0.875rem;
        padding: var(--space-2) var(--space-3);
    }
    
    /* 价格方案优化 */
    .pricing {
        padding: var(--space-12) 0;
    }
    
    .pricing-table {
        margin: 0 var(--space-4);
        border-radius: var(--radius-xl);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-features-table {
        grid-template-columns: 2fr repeat(3, 1fr);
        font-size: 0.85rem;
        min-width: 600px;
    }
    
    .feature-row {
        display: contents;
    }
    
    .header-row {
        display: contents;
    }
    
    .header-row .pricing-plan {
        border-right: 1px solid var(--gray-200);
        border-bottom: none;
        padding: var(--space-4);
    }
    
    .header-row .pricing-plan:last-child {
        border-right: none;
    }
    
    .featured-badge {
        padding: var(--space-1) var(--space-3);
        font-size: 0.65rem;
        transform: rotate(45deg) translate(12%, -50%);
    }
    
    .pricing-plan h3 {
        font-size: 0.9rem;
        margin-bottom: var(--space-2);
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .period {
        font-size: 0.75rem;
    }
    
    .feature-name {
        padding: var(--space-3) var(--space-2);
        border-bottom: 1px solid var(--gray-200);
        border-right: 1px solid var(--gray-200);
        font-size: 0.8rem;
        line-height: 1.3;
        background: var(--white);
        font-weight: 600;
    }
    
    .header-row .feature-name {
        background: var(--gray-50);
        font-weight: 700;
        font-size: 0.9rem;
    }
    
    .feature-available,
    .feature-unavailable {
        padding: var(--space-3) var(--space-2);
        border-right: 1px solid var(--gray-200);
        border-bottom: 1px solid var(--gray-200);
        justify-content: center;
        background: var(--gray-50);
        font-size: 0.8rem;
    }
    
    .feature-available i {
        color: var(--success);
        font-size: 1rem;
    }
    
    .feature-unavailable {
        color: var(--gray-400);
        font-weight: 500;
    }
    
    /* 移动端保持列区分背景色 */
    .feature-available:nth-child(2),
    .feature-unavailable:nth-child(2) {
        background: var(--gray-25);
    }
    
    .feature-available:nth-child(3),
    .feature-unavailable:nth-child(3) {
        background: var(--primary-50);
    }
    
    .feature-available:nth-child(4),
    .feature-unavailable:nth-child(4) {
        background: var(--gray-25);
    }
    
    .feature-unavailable:nth-child(2),
    .feature-unavailable:nth-child(4) {
        background: var(--gray-50);
    }
    
    /* 移动端移除整列悬停效果 */

    /* 底部优化 */
    .footer {
        padding: var(--space-12) 0 var(--space-6);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }
    
    .footer-brand p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .footer-legal p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    /* 容器优化 */
    .container {
        padding: 0 var(--space-3);
    }
    
    /* 导航栏进一步优化 */
    .nav-container {
        padding: 0 var(--space-3);
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .nav-download-btn {
        padding: var(--space-2) var(--space-3);
        font-size: 0.8rem;
    }

    /* 首屏进一步优化 */
    .hero {
        padding: var(--space-6) 0;
    }
    
    .hero-container {
        padding: 0 var(--space-3);
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: var(--space-1) var(--space-3);
    }
    
    .hero-title-main {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: var(--space-3);
    }
    
    .hero-title-sub {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        max-width: 280px;
        gap: var(--space-2);
    }
    
    .download-btn {
        padding: var(--space-3) var(--space-5);
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1.25rem;
    }
    
    .btn-label {
        font-size: 0.8rem;
    }
    
    .btn-platform {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: var(--space-3);
        padding: var(--space-4);
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }

    /* 手机Mockup进一步优化 */
    .phone-mockup {
        transform: scale(0.7);
        margin-top: var(--space-2);
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }

    /* 功能卡片进一步优化 */
    .features {
        padding: var(--space-8) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-6);
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--space-2);
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .features-grid {
        gap: var(--space-3);
    }
    
    .feature-card {
        padding: var(--space-5);
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
        margin-bottom: var(--space-3);
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: var(--space-2);
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* 用户数据进一步优化 */
    .trust {
        padding: var(--space-6) 0;
    }
    
    .trust-stats-row {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .stat-item {
        padding: var(--space-3);
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: var(--space-1);
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* 场景卡片进一步优化 */
    .scenes {
        padding: var(--space-8) 0;
    }
    
    .scenes-grid {
        gap: var(--space-3);
    }
    
    .scene-card {
        padding: var(--space-5);
    }
    
    .scene-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: var(--space-3);
    }
    
    .scene-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-2);
    }
    
    .scene-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: var(--space-3);
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: var(--space-1) var(--space-2);
    }
    
    /* 价格方案进一步优化 */
    .pricing {
        padding: var(--space-8) 0;
    }
    
    .pricing-table {
        margin: 0 var(--space-3);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-features-table {
        min-width: 700px;
        font-size: 0.7rem;
        grid-template-columns: 2fr repeat(3, 1fr);
    }
    
    .header-row .pricing-plan {
        padding: var(--space-2);
    }
    
    .pricing-plan h3 {
        font-size: 0.8rem;
        margin-bottom: var(--space-1);
    }
    
    .price {
        font-size: 1rem;
    }
    
    .period {
        font-size: 0.65rem;
    }
    
    .feature-name {
        padding: var(--space-2) var(--space-1);
        font-size: 0.7rem;
        line-height: 1.2;
        background: var(--white);
        font-weight: 600;
    }
    
    .header-row .feature-name {
        background: var(--gray-50);
        font-weight: 700;
        font-size: 0.8rem;
    }
    
    .feature-available,
    .feature-unavailable {
        padding: var(--space-2) var(--space-1);
        font-size: 0.7rem;
    }
    
    .feature-available i {
        color: var(--success);
        font-size: 0.9rem;
    }
    
    .feature-unavailable {
        color: var(--gray-400);
        font-weight: 500;
    }
    
    .featured-badge {
        padding: var(--space-1) var(--space-1);
        font-size: 0.55rem;
        transform: rotate(45deg) translate(8%, -50%);
    }
    
    /* 底部进一步优化 */
    .footer {
        padding: var(--space-8) 0 var(--space-4);
    }
    
    .footer-content {
        gap: var(--space-6);
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
    }
}

/* 二维码弹窗样式 */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.qr-modal.active {
    display: flex;
}

.qr-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.qr-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-modal.active .qr-modal-content {
    transform: scale(1);
    opacity: 1;
}

.qr-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.qr-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.qr-modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.qr-modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.qr-modal-body {
    padding: var(--space-6);
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.qr-code {
    width: 200px;
    height: 200px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-500);
}

.qr-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.qr-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
}

.qr-info {
    text-align: center;
}

.qr-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.qr-info p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    font-size: 1rem;
}

.qr-platforms {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    min-width: 80px;
}

.platform-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.platform-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* 二维码弹窗响应式 */
@media (max-width: 480px) {
    .qr-modal {
        padding: var(--space-2);
    }
    
    .qr-modal-content {
        max-width: 100%;
    }
    
    .qr-modal-header {
        padding: var(--space-4) var(--space-4) var(--space-3);
    }
    
    .qr-modal-body {
        padding: var(--space-4);
    }
    
    .qr-code {
        width: 160px;
        height: 160px;
    }
    
    .qr-platforms {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .platform-item {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
    }
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: var(--space-2);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    width: 40px;
    height: 40px;
    /* 临时测试：让按钮更容易看到 */
    border: 2px solid var(--white);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.02);
}

.back-to-top i {
    font-size: 1rem;
    font-weight: bold;
}

.back-to-top span {
    display: none;
    font-weight: 500;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        padding: var(--space-2);
        font-size: 0.875rem;
    }
    
    .back-to-top span {
        display: none;
    }
    
    .back-to-top i {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        padding: var(--space-1);
    }
    
    .back-to-top i {
        font-size: 0.875rem;
    }
}