/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 强制清除所有默认样式 */
ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--ink);
    background-color: #ffffff; /* 简洁背景，提升信息聚焦 */
}

:root {
    --brand: #ff6b9a;
    --brand-2: #ff9fc0;
    --ink: #2a2f45;
    --muted: #6f6b78;
    --card: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(20, 24, 40, 0.08);
}

.container {
    max-width: 1140px; /* 收窄版心，版式更紧致 */
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background: #ffffffcc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: saturate(150%) blur(8px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 30px;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
}

.nav-menu li {
    list-style: none !important;
    display: inline-block;
}

.nav-menu a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--brand);
}

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


/* 二维码弹窗 */
.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.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(4px);
}

.qr-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    z-index: 10001;
}

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

.qr-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.qr-modal-content h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 30px;
    margin-top: 0;
}

.qr-codes-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.qr-code-item {
    flex: 1;
    text-align: center;
    max-width: 250px;
}

.qr-code-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 15px;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.qr-code-tip {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .nav-download-link {
        display: none;
    }
    
    .qr-codes-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .qr-code-item {
        max-width: 100%;
    }
    
    .qr-code-image {
        width: 180px;
        height: 180px;
    }
    
    .qr-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }
}

/* App介绍轮播图 */
.app-carousel-section {
    margin-top: 70px;
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff2f6 100%);
}

.app-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: #fff;
}

.app-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    width: fit-content;
}

.app-carousel-slide {
    flex-shrink: 0;
    width: calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.app-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--brand);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.app-carousel-btn:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.app-carousel-btn.prev {
    left: 15px;
}

.app-carousel-btn.next {
    right: 15px;
}

.app-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.app-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-carousel-dots .dot.active {
    background: var(--brand);
    width: 30px;
    border-radius: 5px;
}

.app-download-area {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 20;
}

.app-download-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 50%, #ff6ec7 100%);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.6), 0 0 30px rgba(255, 23, 68, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: downloadPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.app-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

.app-download-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-out infinite;
}

@keyframes downloadPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 23, 68, 0.6), 0 0 30px rgba(255, 23, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 23, 68, 0.7), 0 0 40px rgba(255, 23, 68, 0.5);
    }
}

@keyframes downloadShine {
    0% {
        background: linear-gradient(135deg, #ff1744 0%, #ff4081 50%, #ff6ec7 100%);
    }
    50% {
        background: linear-gradient(135deg, #ff4081 0%, #ff6ec7 50%, #ff1744 100%);
    }
    100% {
        background: linear-gradient(135deg, #ff1744 0%, #ff4081 50%, #ff6ec7 100%);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.app-download-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.7), 0 0 50px rgba(255, 23, 68, 0.5);
    animation-play-state: paused;
}


@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 77, 122, 0.5), 0 0 20px rgba(255, 77, 122, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 77, 122, 0.7), 0 0 30px rgba(255, 77, 122, 0.5);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .app-carousel-section {
        margin-top: 0 !important;
        padding: 0 !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        background: linear-gradient(180deg, #ffffff 0%, #fff2f6 100%) !important;
    }
    
    /* 移动端导航栏默认隐藏 */
    .navbar {
        transform: translateY(-100%) !important;
        transition: transform 0.3s ease !important;
    }
    
    /* 移动端导航栏显示 */
    .navbar.navbar-visible {
        transform: translateY(0) !important;
    }
    
    /* 移动端只显示logo和公司名称，隐藏菜单 */
    .nav-menu {
        display: none !important;
    }
    
    /* 导航栏显示时，给内容区域添加padding-top，避免被遮挡 */
    .navbar.navbar-visible ~ .app-carousel-section {
        padding-top: 60px !important;
    }
    
    /* 移动端确保body和html没有留白 */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .app-carousel-section {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }
    
    .app-carousel-container {
        padding: 0 !important;
        margin: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: 0 !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    
    .app-carousel-wrapper {
        border-radius: 0 !important;
        max-width: 100vw !important;
        width: 100vw !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        position: relative !important;
        min-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
    }
    
    .app-carousel-track {
        position: relative !important;
        width: 100vw !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .app-carousel-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100% !important;
        opacity: 0 !important;
        pointer-events: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .app-carousel-slide.active {
        opacity: 1 !important;
        position: relative !important;
        pointer-events: auto !important;
        width: 100vw !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .app-carousel-slide img {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    /* 确保所有轮播相关容器都没有圆角 */
    .app-carousel-wrapper,
    .app-carousel-container,
    .app-carousel-track,
    .app-carousel-slide {
        border-radius: 0 !important;
    }
    
    .app-carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
        z-index: 10 !important;
    }
    
    .app-carousel-btn.prev {
        left: 10px !important;
    }
    
    .app-carousel-btn.next {
        right: 10px !important;
    }
    
    .app-download-area {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center !important;
        padding: 15px 20px !important;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 243, 0.95) 50%, rgba(255, 250, 243, 1) 100%) !important;
        z-index: 5 !important;
    }
    
    .app-download-btn {
        padding: 16px 40px !important;
        font-size: 18px !important;
        width: auto !important;
        display: inline-block !important;
    }
}

@media (max-width: 480px) {
    .app-carousel-section {
        margin-top: 50px;
        min-height: calc(100vh - 50px);
    }
    
    .app-carousel-slide img {
        max-height: calc(100vh - 180px);
    }
    
    .app-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .app-carousel-btn.prev {
        left: 8px;
    }
    
    .app-carousel-btn.next {
        right: 8px;
    }
    
    .app-download-area {
        padding: 15px;
    }
    
    .app-download-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* 英雄区域 */
.hero {
    padding: 120px 0 88px;
    background:
      radial-gradient(900px 380px at 20% -10%, rgba(255,155,192,0.22), transparent 60%),
      radial-gradient(800px 360px at 100% 0%, rgba(255,107,154,0.18), transparent 60%),
      linear-gradient(180deg, #ffffff 0%, #fff2f6 100%);
    color: var(--ink);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-description p {
    margin-bottom: 20px;
    font-size: 1.06rem;
    line-height: 1.9;
    color: var(--muted);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* 产品介绍 */
.product-section {
    padding: 88px 0;
    background: #fffefe;
}
.product-section .container { position: relative; }
.product-section .container::before { content: none; }

.product-section h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #2f2f33; /* 中性深灰，去除蓝调 */
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-subtitle {
    text-align: left;
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 42px;
}

.product-split { display: grid; grid-template-columns: 5fr 7fr; gap: 18px; align-items: center; }
.features-list { display: grid; gap: 14px; }
.feature-row { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; padding: 10px 12px; border: 1px solid #eee; border-radius: 12px; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.feature-row h3 { margin: 0 0 4px; font-size: 1.02rem; color: #2f2f33; }
.feature-row p { margin: 0; color: var(--muted); }

.product-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.product-features .feature-item h3 { font-size: 1.28rem; letter-spacing: -.2px; color: #2f2f33; }
.product-features .feature-item p { max-width: 60ch; }

/* 走马灯 */
.product-marquee { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; }
.mq-btn { width: 34px; height: 34px; border-radius: 999px; border: 1px solid #eaeaea; background: #fff; box-shadow: 0 6px 14px rgba(0,0,0,.05); cursor: pointer; }
.mq-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px; border: 1px solid #eee; border-radius: 14px; box-shadow: 0 8px 18px rgba(0,0,0,.05); }
.mq-track::-webkit-scrollbar { height: 8px; }
.mq-track::-webkit-scrollbar-thumb { background: #eaeaea; border-radius: 999px; }
.mq-item { scroll-snap-align: start; background: #fff; border-radius: 10px; overflow: hidden; }
.mq-item img { width: 100%; height: 220px; object-fit: cover; display: block; }

/* 核心产品 - 卡片+图片（控制图片尺寸，避免撑乱布局） */
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pcard { display: grid; grid-template-rows: 180px auto; border: 1px solid #eee; background: #fff; border-radius: 14px; box-shadow: 0 8px 18px rgba(0,0,0,.05); overflow: hidden; }
.pcard-media { margin: 0; }
.pcard-media img { width: 100%; height: 180px; object-fit: cover; display: block; }
.pcard-body { padding: 12px 12px 14px; }
.pcard-body h3 { margin: 0 0 6px; font-size: 1.02rem; color: #2f2f33; }
.pcard-body p { margin: 0; color: var(--muted); line-height: 1.75; }

/* Feature 数字卡片 */
.fc-num { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(180deg, var(--brand-2), var(--brand)); box-shadow: 0 8px 18px rgba(255,107,154,.25); font-size: .9rem; }

/* App 截图展示 */
.app-gallery {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.phone-frame {
    background: #fff; border-radius: 16px; padding: 8px;
    box-shadow: 0 8px 20px rgba(16,24,40,.10); border: 1px solid #eef2ff;
    display: flex; align-items: center; justify-content: center;
}
.phone-frame img { width: 100%; height: auto; border-radius: 12px; display: block; object-fit: cover; }

.feature-item h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
    color: #3a4259;
    font-weight: 700;
}

.feature-item p {
    color: var(--muted);
    line-height: 1.7;
}

/* 关于我们 */
.about-section {
    padding: 80px 0;
    background: #f8faff;
}

.about-section h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2f2f33;
}

.about-content { display: none; }

.about-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-card { position: relative; background: linear-gradient(180deg, #ffffff 0%, #fff4f8 100%); border: 1px solid #f4dbe3; border-radius: 18px; padding: 20px 18px 18px 22px; box-shadow: 0 12px 28px rgba(255,107,154,0.10); overflow: hidden; }
.about-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-top-left-radius: 18px; border-bottom-left-radius: 18px; background: linear-gradient(180deg, var(--brand-2), var(--brand)); opacity: .9; }
.about-card h3 { margin: 0 0 8px; font-size: 1.02rem; letter-spacing: -.2px; color: #2f2f33; }
.about-card p { margin: 0; color: var(--muted); line-height: 1.85; }
.about-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.about-card li { margin: 6px 0; }
.about-card:hover { box-shadow: 0 16px 36px rgba(255,107,154,0.14); transform: translateY(-1px); transition: box-shadow .25s ease, transform .25s ease; }

.about-text h3 {
    font-size: 1.4rem;
    margin: 22px 0 10px;
    color: var(--ink);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    color: var(--muted);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-text li:before {
    content: "•";
    color: var(--brand);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img { display: none; }

/* 联系我们 */
.contact-section {
    padding: 80px 0;
    background: #fff8fb;
}

.contact-section h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 48px;
    color: #2f2f33;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
    max-width: 1140px; /* 与版心对齐，防止过宽导致错位 */
    margin: 0 auto;     /* 居中放置，但标题仍为左对齐 */
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #eee;
}

.ci-icon {
    width: 36px; height: 36px;
    margin: 0;
    display: grid; place-items: center;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    color: #fff; font-size: 18px;
    box-shadow: 0 6px 14px rgba(255,107,154,0.22);
}

.contact-item h3 {
    font-size: 1rem;
    margin: 0;
    color: #2f2f33;
    grid-column: 2; /* 始终放到文本列，避免跑到图标列导致竖排 */
}

.contact-item p {
    color: var(--muted);
    font-size: .98rem;
    margin: 0;
    grid-column: 2; /* 同上：文本列 */
}

.contact-item a {
    color: var(--brand);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-btn { display: none; }

/* 底部 */
.footer {
    background: #0f172a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand span {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* 进场动画 */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-16px); }
.reveal-left.show { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(16px); }
.reveal-right.show { opacity: 1; transform: translateX(0); }

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid { grid-template-columns: 1fr; }

    .app-gallery { grid-template-columns: 1fr 1fr; gap: 14px; }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
}