/* ===================================
   xinghuo-windsurf 官网样式
   Morandi马卡龙配色 + 玻璃拟态风格
   =================================== */

/* --- 全局变量 --- */
:root {
    /* 背景渐变 */
    --bg-gradient-start: #E8F0F2;
    --bg-gradient-end: #FFFFFF;
    --bg-body: linear-gradient(135deg, #e0f7fa 0%, #e1bee7 50%, #fff9c4 100%);

    /* 主色调 - Morandi绿 */
    --primary: #8DA399;
    --primary-hover: #7A9389;
    --primary-light: rgba(141, 163, 153, 0.15);
    --accent-color: #7A9CA5;

    /* 马卡龙糖果色 */
    --candy-pink: #F4C2C2;
    --candy-blue: #B4D8E7;
    --candy-green: #C1E1C1;
    --candy-yellow: #FDFD96;
    --candy-purple: #E0BBE4;
    --candy-orange: #FFD8B8;

    /* 玻璃拟态 */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);

    /* 文字色 */
    --text-main: #4A4A4A;
    --text-muted: #999999;
    --text-light: #666666;

    /* 圆角 */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(31, 38, 135, 0.08);
    --shadow-xl: 0 16px 48px rgba(31, 38, 135, 0.12);

    /* 字体 */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft YaHei", sans-serif;
}

/* --- 基础重置 --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-body);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- 容器 --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- 导航栏 --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-link-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    color: white !important;
}

.nav-link-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 163, 153, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- 英雄区域 --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(180, 216, 231, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(244, 194, 194, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(193, 225, 193, 0.3) 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 50%, var(--candy-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* --- 按钮样式 --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    color: white;
    box-shadow: 0 4px 16px rgba(141, 163, 153, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(141, 163, 153, 0.5);
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* --- 统计数据 --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* --- 英雄视觉区域 --- */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-mockup {
    position: relative;
    z-index: 2;
}

.mockup-frame {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(12px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 60px;
}

.mockup-content {
    padding: 8px;
}

.mockup-image {
    width: 100%;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* --- 浮动卡片 --- */
.hero-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 20px;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- 滚动指示器 --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: scrollBounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scrollWheelMove 2s infinite;
}

@keyframes scrollWheelMove {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(6px);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.hero-scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- 区块标题 --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- 功能特性区域 --- */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--glass-bg-strong);
}

.feature-card-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

.feature-card-highlight {
    background: linear-gradient(135deg, rgba(141, 163, 153, 0.15), rgba(180, 216, 231, 0.15));
    border-color: var(--candy-blue);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--candy-blue), rgba(180, 216, 231, 0.5));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: #5A6B75;
}

.feature-icon-green {
    background: linear-gradient(135deg, var(--candy-green), rgba(193, 225, 193, 0.5));
}

.feature-icon-green .feature-icon {
    color: #5A705A;
}

.feature-icon-purple {
    background: linear-gradient(135deg, var(--candy-purple), rgba(224, 187, 228, 0.5));
}

.feature-icon-purple .feature-icon {
    color: #6B5A6E;
}

.feature-icon-orange {
    background: linear-gradient(135deg, var(--candy-orange), rgba(255, 216, 184, 0.5));
}

.feature-icon-orange .feature-icon {
    color: #6E5A4A;
}

.feature-icon-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
}

.feature-icon-gradient .feature-icon {
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.feature-list {
    margin-top: 16px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--candy-green);
    border-radius: 50%;
}

.feature-list-highlight li::before {
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
}

/* --- 界面预览区域 --- */
.preview {
    padding: 120px 0;
    background: rgba(248, 250, 252, 0.5);
}

.preview-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.preview-tab {
    padding: 12px 24px;
    border: none;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-tab:hover {
    background: white;
}

.preview-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    color: white;
    box-shadow: 0 4px 12px rgba(141, 163, 153, 0.3);
}

.preview-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.preview-panel.active {
    display: block;
}

.preview-card {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
}

.preview-image-wrapper {
    padding: 24px 24px 0;
}

.preview-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    min-height: 400px;
    object-fit: cover;
}

.preview-info {
    padding: 24px 32px;
    background: white;
}

.preview-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.preview-info p {
    font-size: 15px;
    color: var(--text-light);
}

/* --- 使用教程区域 --- */
.tutorial {
    padding: 120px 0;
}

.tutorial-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.tutorial-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--candy-blue), var(--candy-green), var(--candy-pink));
}

.tutorial-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(141, 163, 153, 0.35);
    z-index: 1;
}

.step-number span {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.step-content {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(12px);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.step-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.step-time {
    font-size: 13px;
    color: var(--text-muted);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 999px;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.platform-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 24px;
    height: 24px;
}

.platform-icon.windows {
    background: linear-gradient(135deg, #00a4ef, #0078d4);
    color: white;
}

.platform-icon.mac {
    background: linear-gradient(135deg, #333, #1d1d1f);
    color: white;
}

.platform-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.platform-info p {
    font-size: 13px;
    color: var(--text-light);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-list li {
    display: flex;
    gap: 12px;
}

.list-icon {
    width: 32px;
    height: 32px;
    background: var(--candy-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.list-content strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.list-content p {
    font-size: 14px;
    color: var(--text-light);
}

.list-content code {
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--primary);
}

/* --- 为什么选择区域 --- */
.why-choose {
    padding: 120px 0;
    background: rgba(248, 250, 252, 0.5);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.why-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.why-feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.why-feature-text span {
    font-size: 14px;
    color: var(--text-light);
}

.stats-card {
    display: flex;
    justify-content: center;
}

.stats-ring {
    position: relative;
    width: 200px;
    height: 200px;
}

.stats-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stats-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-percent {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.stats-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- 下载区域 --- */
.download {
    padding: 120px 0;
}

.download-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.download-content>p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: white;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.download-btn svg {
    width: 32px;
    height: 32px;
}

.download-btn-windows svg {
    color: #0078d4;
}

.download-btn-mac svg {
    color: #1d1d1f;
}

.download-btn-text {
    text-align: left;
}

.download-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.download-os {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.download-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.download-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- 页脚 --- */
.footer {
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-icon svg {
    width: 18px;
    height: 18px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--text-muted);
}

/* --- 动画 --- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 响应式设计 --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card-large {
        grid-column: span 2;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-choose-content {
        text-align: center;
    }

    .why-choose-content .section-title {
        text-align: center;
    }

    .why-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* 移动端统计数字区域适配 */
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-divider {
        height: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .platform-cards {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 联系我们区域 --- */
.contact {
    padding: 100px 0;
    background: rgba(248, 250, 252, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.contact-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    font-family: monospace;
    margin-bottom: 8px;
}

.contact-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    width: fit-content;
    margin: 0 auto;
}

.contact-qr img {
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}