/* ============================================
   全局样式与变量
   ============================================ */
:root {
    --bg-primary: #000000;
    --bg-secondary: #1A1A1E;
    --bg-card: rgba(30, 30, 35, 0.7);
    --neon-cyan: #5DD9FF;
    --neon-blue: #4A9EFF;
    --neon-green: #4AFF88;
    --accent-green: #00FF88;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-neon: rgba(93, 217, 255, 0.35);
    --shadow-neon: 0 0 20px rgba(93, 217, 255, 0.4);
    --shadow-neon-strong: 0 0 40px rgba(74, 158, 255, 0.6);
    --glow-blue: rgba(74, 158, 255, 0.25);
    --glow-cyan: rgba(93, 217, 255, 0.25);
    --glow-green: rgba(74, 255, 136, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* ============================================
   导航栏
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-neon);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(93, 217, 255, 0.6);
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(93, 217, 255, 0.6));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon:hover {
    filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.9));
    transform: scale(1.08);
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    filter: blur(12px);
    opacity: 0.4;
    z-index: -1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-neon);
    background: rgba(15, 15, 23, 0.8);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(93, 217, 255, 0.4);
}

.nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-line + .nav-toggle-line {
    margin-top: 5px;
}

body.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--glow-cyan);
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px var(--glow-cyan);
}

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

.nav-download-btn {
    display: none; /* 暂时隐藏，APP未上架 */
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border-radius: 25px;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 0 15px var(--glow-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-download-btn:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--accent-green));
    box-shadow: 0 0 25px var(--glow-cyan), 0 0 40px var(--glow-blue);
    transform: translateY(-2px);
    text-shadow: none;
}

.nav-download-btn:hover::after {
    width: 0;
}

/* ============================================
   Hero 区域
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-cyan), var(--neon-blue));
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-blue), var(--accent-green));
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    bottom: -125px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 1;
    transform: translateY(-15px); /* 整体向上移动15像素 */
}

@media (max-width: 768px) {
    .hero-left {
        transform: translateY(0);
        text-align: center;
    }
}

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.app-preview-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: -2rem;
    perspective: 2000px;
    min-height: 600px;
    width: 100%;
    padding: 2rem 0;
    margin-left: -1rem;
}

.app-preview {
    position: relative;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* 第一张图（左图）：低一点，逆时针转15度，无3D倾斜 */
.preview-1 {
    transform: translateY(-15px) translateX(-10px) rotateZ(-5deg) scale(0.85); /* 缩小到和右侧一致: 0.9 -> 0.85 */
    z-index: 3;
}

/* 第二张图（右图）：高一点，形成错落感，适当缩小，无3D倾斜 */
.preview-2 {
    transform: translateY(-30px) translateX(20px) rotateZ(2deg) scale(0.85); /* 下移10px: -40px -> -30px */
    z-index: 1;
}

.app-preview:hover {
    transform: translateY(0) translateX(0) rotateZ(0) scale(1.05);
    z-index: 10;
}

.preview-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-preview:hover .preview-label {
    opacity: 1;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    min-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9/19;
    background: transparent; /* 去掉背景渐变 */
    border-radius: 30px;
    padding: 0; /* 去掉内边距，让图片直接显示 */
    border: none; /* 去掉边框 */
    box-shadow: none; /* 去掉阴影 */
    transition: transform 0.3s ease;
}

.app-preview:hover .phone-frame {
    transform: scale(1.05);
}

.phone-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border-radius: 40px;
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* AI 食物识别界面截图 */
.screenshot-1 {
    background-image: url('images/food-recognition-1.png');
}

/* 营养仪表盘界面截图 */
.screenshot-dashboard-1 {
    background-image: url('images/nutrition-dashboard-1.png');
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.4; /* 从 1.2 增大到 1.4 */
    margin-bottom: 2rem; /* 从 1.5rem 增大到 2rem */
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 209, 0.5);
}

.title-subtitle {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.8rem; /* 从 0.5rem 增大到 0.8rem */
    line-height: 1.3; /* 新增行距 */
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-tagline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(93, 217, 255, 0.15) 0%, 
        rgba(74, 158, 255, 0.15) 50%,
        rgba(74, 255, 136, 0.15) 100%);
    border: 1px solid rgba(93, 217, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(93, 217, 255, 0.2), 
        transparent);
    animation: shimmer-slide 3s infinite;
}

@keyframes shimmer-slide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(93, 217, 255, 0.5);
    position: relative;
    z-index: 1;
}

.hero-description-text {
    font-size: 1.3rem; /* 从 1.4rem 减少1号 */
    color: var(--text-secondary);
    line-height: 2.2;
}

.highlight {
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-cyan), 0 0 25px var(--glow-blue);
}

.hero-stats {
    display: flex;
    gap: 2.5rem; /* 从 2rem 增大到 2.5rem，让间距更宽松 */
    margin-bottom: 3rem;
    flex-wrap: nowrap; /* 不允许换行，保持5个数字在一行 */
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0; /* 防止内容溢出 */
    flex: 0 1 auto; /* 允许收缩，不强制等宽 */
}

.stat-number {
    font-size: 1.6rem; /* 从 2rem 减小2号 */
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem; /* 从 0.9rem 减小2号 */
    color: var(--text-muted);
}

.neon-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    filter: drop-shadow(0 0 8px var(--glow-cyan));
}

.download-btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, var(--accent-green), var(--neon-cyan));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--glow-green), 0 0 40px var(--glow-cyan);
}

.download-btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: 0 6px 30px var(--glow-cyan), 0 0 60px var(--glow-blue), 0 0 80px rgba(74, 158, 255, 0.3);
}

.download-btn:active {
    transform: translateY(-1px) scale(1);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-btn:hover .btn-glow {
    opacity: 1;
    animation: rotate-glow 2s infinite linear;
}

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

.hero-cta {
    display: none; /* 暂时隐藏，APP未上架 */
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-qr-code {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 2px solid var(--border-neon);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(93, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-qr-code:hover {
    box-shadow: 0 0 25px rgba(93, 217, 255, 0.5);
    transform: scale(1.05);
}

.qr-pattern-small {
    width: 80%;
    height: 80%;
    background: 
        linear-gradient(90deg, var(--neon-cyan) 20%, transparent 20%),
        linear-gradient(var(--neon-cyan) 20%, transparent 20%);
    background-size: 8px 8px;
    border-radius: 6px;
    opacity: 0.6;
}

.download-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   通用区块样式
   ============================================ */
section {
    position: relative;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    font-size: 2.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ============================================
   核心功能区
   ============================================ */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 217, 255, 0.08), rgba(74, 158, 255, 0.08));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--accent-green));
    border-radius: 20px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px var(--glow-blue), 0 0 60px var(--glow-cyan);
}

.feature-card:hover .card-glow {
    opacity: 0.6;
}

/* 现代扁平风格的通栏Icon区域 */
.feature-icon-banner {
    width: 100%;
    margin: 0;
    padding: 1.0625rem 2.5rem; /* 从 2rem 减少15像素 (2rem=32px, 32-15=17px≈1.0625rem) */
    background: linear-gradient(135deg, 
        rgba(93, 217, 255, 0.08) 0%, 
        rgba(74, 158, 255, 0.08) 100%);
    border-bottom: 1px solid rgba(93, 217, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.feature-icon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(93, 217, 255, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 第二个卡片的渐变配色 */
.banner-2 {
    background: linear-gradient(135deg, 
        rgba(74, 158, 255, 0.08) 0%, 
        rgba(74, 255, 136, 0.08) 100%);
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

/* 第三个卡片的渐变配色 */
.banner-3 {
    background: linear-gradient(135deg, 
        rgba(74, 255, 136, 0.08) 0%, 
        rgba(93, 217, 255, 0.08) 100%);
    border-bottom: 1px solid rgba(74, 255, 136, 0.2);
}

/* 扁平现代风格的Icon */
.icon-flat {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(93, 217, 255, 0.3),
        inset 0 0 20px rgba(93, 217, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.icon-flat svg {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px rgba(93, 217, 255, 0.6));
    transition: all 0.3s ease;
}

.feature-card:hover .icon-flat {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 5px 30px rgba(93, 217, 255, 0.5),
        inset 0 0 30px rgba(93, 217, 255, 0.2);
    border-color: var(--accent-green);
}

.feature-card:hover .icon-flat svg {
    color: var(--accent-green);
    filter: drop-shadow(0 0 12px rgba(74, 255, 136, 0.8));
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem 2.5rem 2.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-neon);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 第二屏核心功能区图片 */
.image-placeholder.food-recognition {
    background-image: url('images/feature-food.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-placeholder.nutrition-dashboard {
    background-image: url('images/feature-dashboard.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-placeholder.personalized-plan {
    background-image: url('images/feature-plan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .image-glow {
    opacity: 0.3;
}

/* ============================================
   场景价值区
   ============================================ */
.scenarios {
    background: var(--bg-primary);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.scenario-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.scenario-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-green), var(--neon-cyan), var(--neon-blue));
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.scenario-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 40px var(--glow-green), 0 0 60px var(--glow-cyan);
    border-color: var(--accent-green);
}

.scenario-card:hover .scenario-glow {
    opacity: 0.5;
}

.scenario-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    color: var(--bg-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.scenario-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.scenario-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.scenario-card:hover .scenario-img-placeholder {
    transform: scale(1.1);
}

/* 第三屏使用场景区图片 */
.scenario-img-placeholder.weight-loss {
    background-image: url('images/scenario-weight-loss.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scenario-img-placeholder.body-management {
    background-image: url('images/scenario-fitness.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scenario-img-placeholder.health-maintenance {
    background-image: url('images/scenario-health.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scenario-content {
    padding: 2rem;
}

.scenario-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.scenario-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.scenario-testimonial {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-neon);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 209, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* ============================================
   数据安全区
   ============================================ */
.security {
    background: var(--bg-secondary);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.security-right {
    text-align: left;
}

.security-right .section-title {
    text-align: left;
    justify-content: flex-start;
}

.security-icon-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.security-icon {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 30px;
    background: var(--bg-card);
    border: 3px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

.security-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-neon-strong);
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.1), rgba(0, 176, 255, 0.1));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-icon:hover .icon-bg {
    opacity: 1;
}

.security-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-text strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.feature-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   CTA 区域
   ============================================ */
.cta {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 25s infinite ease-in-out;
}

.cta-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    top: -250px;
    left: -250px;
}

.cta-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 0 2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex; /* 改为flex，用于显示footer */
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ============================================
   页脚
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-neon);
    padding: 2.5rem 0 1.5rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 0;
}

/* ============================================
   滚动动画
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   页面切换动画
   ============================================ */
.page-transition {
    animation: pageFadeIn 0.5s ease-in-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-fade-out {
    animation: pageFadeOut 0.4s ease-in-out forwards;
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        order: 2;
        text-align: center;
        transform: translateY(0);
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-preview-container {
        min-height: 500px;
        gap: 1.5rem;
        justify-content: center;
        margin-left: 0;
    }
    
    .preview-1,
    .preview-2 {
        transform: translateY(0) rotateY(0) rotateX(0) rotateZ(0) scale(1);
    }
    
    .phone-frame {
        max-width: 320px;
        min-width: 280px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid,
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .security-icon-wrapper {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* 导航栏适配 */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9rem;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    
    .nav-links a {
        padding: 0.35rem 0;
        width: 100%;
    }
    
    body.nav-open .nav-links {
        max-height: 420px;
        opacity: 1;
        padding: 0.5rem 0 0.75rem;
        pointer-events: auto;
    }

    .nav-download-btn {
        display: none;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Hero区域适配 */
    .hero {
        padding-top: 70px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 1.25rem;
        justify-items: center;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .app-preview-container {
        flex-direction: column;
        min-height: auto;
        gap: 1.5rem;
        margin-left: 0;
    }
    
    .phone-frame {
        max-width: 280px;
        min-width: 250px;
    }
    
    .preview-label {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        opacity: 1;
        font-size: 0.8rem;
    }
    
    /* 通用区块适配 */
    section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* 功能卡片适配 */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        margin: 0 auto;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    /* 场景卡片适配 */
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* 安全区域适配 */
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-icon-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .security-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    /* CTA区域适配 */
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    /* Footer适配 */
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* ============================================
   关于我们页面样式
   ============================================ */
.about-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-primary);
}

.about-section-alt {
    background: var(--bg-secondary);
}

.about-content-block {
    max-width: 1000px;
    margin: 0;
    text-align: left;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--neon-cyan);
    text-align: left;
    line-height: 1.3;
}

.about-text-content {
    margin-bottom: 3rem;
}

.about-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 0 auto 3rem;
    max-width: 1100px;
    justify-items: center;
    justify-content: center;
}

.about-feature-item {
    background: var(--bg-card);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 217, 255, 0.08), rgba(74, 158, 255, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-feature-item:hover::before {
    opacity: 1;
}

.about-feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px var(--glow-blue), 0 0 60px var(--glow-cyan);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(93, 217, 255, 0.3),
        inset 0 0 20px rgba(93, 217, 255, 0.1);
    color: var(--neon-cyan);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-feature-item:hover .about-feature-icon {
    transform: scale(1.1);
    border-color: var(--accent-green);
    box-shadow: 
        0 5px 30px rgba(93, 217, 255, 0.5),
        inset 0 0 30px rgba(93, 217, 255, 0.2);
    color: var(--accent-green);
}

.about-feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-align: left;
    position: relative;
    z-index: 1;
}

.about-feature-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: justify;
    position: relative;
    z-index: 1;
}

.about-beliefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 1100px;
    justify-items: center;
    justify-content: center;
}

.about-belief-item {
    background: var(--bg-card);
    border: 2px solid var(--border-neon);
    border-radius: 18px;
    padding: 1.8rem 2.2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-belief-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 217, 255, 0.06), rgba(74, 158, 255, 0.06));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-belief-item:hover::before {
    opacity: 1;
}

.about-belief-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 30px var(--glow-blue), 0 0 50px var(--glow-cyan);
}

.belief-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 8px rgba(93, 217, 255, 0.6));
}

.about-belief-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--neon-cyan);
    position: relative;
    z-index: 1;
}

.about-belief-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: justify;
    position: relative;
    z-index: 1;
}

.about-mission {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(93, 217, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.about-mission-content {
    max-width: 1100px;
    margin: 3rem 0 0;
    text-align: left;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

.about-mission-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
}

.about-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-neon);
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
}

/* 响应式设计 - 关于我们页面 */
@media (max-width: 1200px) {
    .about-main-title {
        font-size: 3.5rem;
    }
    
    .about-section-title {
        font-size: 2.5rem;
    }
    
    .about-feature-grid,
    .about-beliefs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* 关于我们页面适配 */
    .about-hero {
        height: auto !important;
        min-height: auto !important;
        padding: 80px 0 1rem !important;
    }
    
    .about-header {
        padding: 0.5rem 0;
    }
    
    .about-main-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .about-content-block {
        max-width: 100%;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }
    
    .about-feature-grid,
    .about-beliefs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .about-feature-item,
    .about-belief-item {
        width: 100%;
        padding: 1.5rem;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 0 1rem 0;
    }
    
    .about-feature-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-feature-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-belief-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .about-belief-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-mission-content {
        max-width: 100%;
        padding-top: 2rem;
    }
    
    .about-mission-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

/* ============================================
   联系我们页面样式
   ============================================ */
.contact-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 100px 0 0 0 !important;
    min-height: 230px !important;
    height: 230px !important;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.contact-header {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 0;
    margin: 0;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(93, 217, 255, 0.5);
    filter: drop-shadow(0 0 20px var(--glow-cyan));
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    position: relative;
    padding: 4rem 0 6rem;
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.contact-form-wrapper {
    position: relative;
    width: 100%;
}

.contact-form {
    background: var(--bg-card);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 217, 255, 0.05), rgba(74, 158, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px var(--glow-blue), 0 0 60px var(--glow-cyan);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 8px rgba(93, 217, 255, 0.3);
}

.required {
    color: var(--accent-green);
    margin-left: 0.25rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-neon);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    pointer-events: auto;
    z-index: 1;
    position: relative;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(93, 217, 255, 0.3), inset 0 0 20px rgba(93, 217, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.contact-submit-btn {
    position: relative;
    width: 50%;
    margin: 1rem auto 0;
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, var(--accent-green), var(--neon-cyan));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--glow-green), 0 0 40px var(--glow-cyan);
}

.contact-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: 0 6px 30px var(--glow-cyan), 0 0 60px var(--glow-blue), 0 0 80px rgba(74, 158, 255, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(-1px) scale(1);
}

.contact-info-simple {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
}

.contact-info-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-email-list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-email-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-email-link {
    color: var(--neon-cyan);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.contact-email-link:hover {
    color: var(--accent-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.contact-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-neon);
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
}

/* 表单成功提示弹窗 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-success-modal {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-width: 300px;
    max-width: 400px;
}

.success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #000000;
    font-weight: 700;
}

.modal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.modal-close-btn {
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    background: var(--accent-green);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--neon-cyan);
    transform: translateY(-2px);
}

/* 响应式设计 - 联系我们页面 */
@media (max-width: 1200px) {
    .contact-content {
        max-width: 100%;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* 联系我们页面适配 */
    .contact-hero {
        height: auto !important;
        min-height: auto !important;
        padding: 80px 0 1rem !important;
    }
    
    .contact-header {
        padding: 0.5rem 0;
    }
    
    .contact-main-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .contact-content {
        max-width: 100%;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-info-simple {
        padding-top: 1.5rem;
    }
    
    .contact-email-list {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-email-item {
        font-size: 0.8rem;
    }
    
    /* 弹窗适配 */
    .modal-content {
        min-width: 280px;
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
    }
    
    .modal-close-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 小屏幕设备适配 (最大宽度480px) */
@media (max-width: 480px) {
    .nav-links {
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .nav-links a {
        padding: 0.2rem 0.3rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description-text {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem 0.9rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }

    .phone-frame {
        max-width: 240px;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .contact-main-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.9rem;
        padding: 0.7rem 0.9rem;
    }
    
    .footer-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .about-feature-item,
    .about-belief-item {
        padding: 1.2rem;
    }
    
    .about-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-feature-title,
    .about-belief-title {
        font-size: 1.2rem;
    }
    
    .about-feature-text,
    .about-belief-text {
        font-size: 0.9rem;
    }
}


