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

/* CSS变量定义 */
:root {
    --primary-color: #ff6b35;
    --primary-light: #ff8c5a;
    --primary-dark: #e85a2b;
    --secondary-color: #1a1a1a;
    --accent-color: #f4f4f4;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-primary: #ffffff;
    --background-secondary: #fafafa;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

/* 全局样式 */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:active {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 主页面 */
.hero {
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.gradient-text:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* 英雄区图片 */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 500px;
    max-width: 90vw;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    display: block;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    animation: badgeFloat 3s ease-in-out infinite;
}

.floating-badge:nth-child(1) {
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    top: 50%;
    left: -15px;
    animation-delay: 1s;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.floating-badge.badge-3 {
    bottom: 25%;
    right: -5px;
    animation-delay: 2s;
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* 通用部分样式 */
.section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

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

/* 区域背景色区分 */
/* 产品介绍 - 白色背景 */
#product {
    background: #ffffff;
}

/* 价格 - 浅灰背景 */
#pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* 功能介绍 - 白色背景 */
#features {
    background: #ffffff;
}

/* 优势 - 浅灰背景 */
#advantages {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* 应用场景 - 白色背景 */
#scenarios {
    background: #ffffff;
}

/* 下载区域 - 浅灰背景 */
#download {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 产品介绍 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--background-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 功能介绍 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background: var(--background-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 优势部分 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 统一的优势卡片基础样式 */
.advantage-item {
    background: var(--background-primary);
    border-radius: 20px;
    padding: 50px 30px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
}

.advantage-item .advantage-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.8;
}

.advantage-item h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.advantage-item p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
}

/* 主要优势样式 */
.primary-advantage {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

.primary-advantage::before {
    background: var(--gradient-primary);
}

.primary-advantage .advantage-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary-advantage h3 {
    color: var(--primary-color);
}

.primary-advantage p {
    color: var(--text-primary);
}

/* 次要优势样式 */
.secondary-advantage {
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.03) 0%, rgba(153, 153, 153, 0.03) 100%);
    border-color: rgba(102, 102, 102, 0.1);
}

.secondary-advantage::before {
    background: linear-gradient(135deg, #666666 0%, #999999 100%);
}

.secondary-advantage .advantage-number {
    color: #666666;
}

.secondary-advantage h3 {
    color: #666666;
}

.secondary-advantage:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* 价格部分 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--background-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 20px;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* 应用场景 */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.scenario-card {
    background: var(--background-primary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.scenario-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scenario-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

.scenario-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.scenario-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}



/* 页脚 */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-brand p {
    color: #cccccc;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #999999;
}

/* 响应式设计 */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }
    
    .navbar .container {
        padding: 20px 20px;
        min-height: 70px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .nav-brand {
        z-index: 1001;
        display: block !important;
    }
    
    .nav-brand h1 {
        font-size: 20px;
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        text-align: center;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
        font-size: 18px;
        color: var(--text-primary);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0 !important;
        background: transparent !important;
        gap: 8px;
    }
    
    .nav-menu a::before {
        display: none !important;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        height: auto;
        min-height: 650px;
        padding: 100px 0 60px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 0;
    }

    .hero-title {
        font-size: 36px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .hero-tags {
        justify-content: center;
        gap: 10px;
    }
    
    .hero-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-container {
        width: 400px;
        max-width: 85vw;
    }

    .floating-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .section {
        padding: 60px 0;
        width: 100% !important;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .product-grid,
    .features-grid,
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .download-platforms {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .platform-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .download-content {
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    .download-info {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .info-item {
        padding: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 90px 0 40px 0;
    }

    .hero-title {
        font-size: 28px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-image-container {
        width: 300px;
        max-width: 80vw;
    }

    .floating-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .floating-badge:nth-child(1) {
        right: -5px;
    }

    .floating-badge.badge-2 {
        left: -10px;
    }

    .floating-badge.badge-3 {
        right: 0px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .product-card,
    .scenario-card {
        padding: 30px;
    }
    
    .pricing-card {
        padding: 30px;
    }
}

/* 下载区域 */
.download-content {
    display: grid;
    gap: 60px;
    width: 100%;
    max-width: 100%;
}

.download-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.platform-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.platform-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 16px;
}

.download-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.info-item {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.info-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.info-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 波纹效果 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 动画类 */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

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

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 选择文本样式 */
::selection {
    background: var(--primary-color);
    color: white;
}

/* 焦点样式 */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* 客户案例 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--background-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card::before {
        font-size: 40px;
        top: 15px;
        left: 20px;
    }

    .testimonial-content p {
        font-size: 15px;
        margin-left: 15px;
    }
}

/* 法律页面样式 */
.legal-content {
    padding: 100px 0 60px;
    background: var(--background-primary);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-header .update-date,
.legal-header .effective-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 5px 0;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--background-primary);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: var(--primary-color);
}

/* 法律页面移动端适配 */
@media (max-width: 768px) {
    .legal-content {
        padding: 80px 0 40px;
    }

    .legal-header h1 {
        font-size: 28px;
    }

    .legal-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-body {
        padding: 0 10px;
    }
}