/**
 * Topaz Studio 主样式文件
 * 全新设计 - 现代、简洁、专业
 * 主题色: 黑色 #383838, 蓝色 #2D81FF
 */

/* ========== 基础重置 ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #2D81FF;
    --accent-hover: #5a9dff;
    --accent-dark: #1a5fc4;
    --accent-glow: rgba(45, 129, 255, 0.3);
    
    --bg-primary: #1a1a1a;
    --bg-secondary: #242424;
    --bg-tertiary: #383838;
    --bg-card: #2a2a2a;
    --bg-elevated: #303030;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-default: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(45, 129, 255, 0.4);
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 30px rgba(45, 129, 255, 0.2);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== 导航栏 ========== */
.topaz-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-brand-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-brand-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-trial {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    background: transparent;
    transition: all var(--transition-fast);
}

.btn-trial:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-buy {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    background: var(--accent);
    color: #ffffff;
    transition: all var(--transition-fast);
}

.btn-buy:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== 页脚 ========== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact {
    display: flex;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.contact-item a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent);
}

.footer-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 32px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-notice,
.footer-notice-en {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========== Hero 动画关键帧 ========== */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 0.08;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.12;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes heroGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(45, 129, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(45, 129, 255, 0.5);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes scanLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* ========== Hero 区域 ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 32px 100px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(45, 129, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: heroPulse 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 129, 255, 0.3), transparent);
    animation: scanLine 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: floatParticle 4s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 0.5s; }
.hero-particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 1s; }
.hero-particle:nth-child(4) { left: 90%; top: 70%; animation-delay: 1.5s; }
.hero-particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 2s; }
.hero-particle:nth-child(6) { left: 30%; top: 40%; animation-delay: 2.5s; }
.hero-particle:nth-child(7) { left: 70%; top: 55%; animation-delay: 3s; }
.hero-particle:nth-child(8) { left: 15%; top: 75%; animation-delay: 3.5s; }

/* 背景动画效果容器 */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* 浮动光效 */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: #5a9dff;
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.hero-glow-3 {
    width: 250px;
    height: 250px;
    background: #7ab8ff;
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 20px) scale(1.05);
        opacity: 0.35;
    }
}

/* 扫描线效果 */
.hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
    animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* 光环效果 */
.hero-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 30%, rgba(45, 129, 255, 0.05) 50%, transparent 70%);
    animation: ringPulse 6s ease-in-out infinite;
}

.hero-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(45, 129, 255, 0.15);
    border-radius: 50%;
    animation: ringExpand 4s ease-out infinite;
}

.hero-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(45, 129, 255, 0.2);
    border-radius: 50%;
    animation: ringExpand 4s ease-out infinite 2s;
}

@keyframes ringPulse {
    0%, 100% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Hero Logo */
.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    animation: logoFloat 3s ease-in-out infinite, heroFadeUp 0.8s ease-out both;
    filter: drop-shadow(0 0 20px rgba(45, 129, 255, 0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 浮动应用图标 */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(45, 129, 255, 0.1);
    border: 1px solid rgba(45, 129, 255, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: iconFloat 6s ease-in-out infinite;
    opacity: 0;
}

.floating-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.floating-icon-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-icon-3 {
    bottom: 25%;
    left: 12%;
    animation-delay: 3s;
}

.floating-icon-4 {
    bottom: 30%;
    right: 8%;
    animation-delay: 4.5s;
}

@keyframes iconFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    20%, 80% {
        opacity: 0.8;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(45, 129, 255, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 40px;
    font-weight: 500;
    animation: heroFadeUp 0.8s ease-out, heroGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(52px, 9vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    animation: heroFadeUp 0.8s ease-out 0.1s both;
    position: relative;
    z-index: 1;
}

.hero-title .accent {
    background: linear-gradient(90deg, var(--accent), #7ab8ff, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.6;
    animation: heroFadeUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeUp 0.8s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

.btn-primary {
    padding: 16px 36px;
    background: var(--accent);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(45, 129, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: transparent;
}

.hero-platforms {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: heroFadeUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

.hero-platforms span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========== 产品展示卡片 ========== */
.products-section {
    padding: 120px 32px;
    background: var(--bg-secondary);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
}

.product-card-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.product-card:hover .product-card-bg {
    opacity: 1;
    transform: scale(1.05);
}

.product-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.product-card-logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
}

.product-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.product-card-link:hover {
    gap: 12px;
}

/* ========== 视频对比滑块 ========== */
.video-compare-section {
    padding: 100px 32px;
    background: var(--bg-primary);
}

.compare-container {
    max-width: 1200px;
    margin: 0 auto;
}

.compare-header {
    text-align: center;
    margin-bottom: 60px;
}

.compare-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.compare-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.compare-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    background: var(--bg-tertiary);
}

.compare-slider img,
.compare-slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.compare-after {
    z-index: 0;
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent);
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.compare-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: var(--shadow-accent);
}

.compare-handle::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    z-index: 1;
}

.compare-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
}

.compare-label.before {
    left: 20px;
    color: var(--text-secondary);
}

.compare-label.after {
    right: 20px;
    background: var(--accent);
    color: #ffffff;
}

/* ========== 信任品牌 ========== */
.trusted-section {
    padding: 80px 32px;
    background: var(--bg-tertiary);
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-title {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trusted-logo {
    height: 56px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.trusted-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ========== 功能展示网格 ========== */
.features-grid-section {
    padding: 120px 32px;
    background: var(--bg-primary);
}

.features-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(45, 129, 255, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== Studio 功能展示 ========== */
.studio-features-section {
    padding: 120px 32px;
    background: var(--bg-secondary);
}

.studio-features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.studio-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.studio-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition-normal);
}

.studio-feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.studio-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(45, 129, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}

.studio-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.studio-feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== 展示标签切换 ========== */
.showcase-tabs-section {
    padding: 120px 32px;
    background: var(--bg-primary);
}

.showcase-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-tab:hover {
    border-color: var(--border-default);
    color: var(--text-primary);
}

.showcase-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.showcase-content {
    display: none;
}

.showcase-content.active {
    display: block;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.showcase-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.showcase-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.showcase-item-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.showcase-item-tag {
    padding: 4px 12px;
    background: rgba(45, 129, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

.showcase-item-title {
    font-size: 16px;
    font-weight: 600;
}

.showcase-compare {
    position: relative;
    aspect-ratio: 16/9;
    cursor: ew-resize;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: var(--bg-tertiary);
}

.showcase-compare img,
.showcase-compare video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-compare .compare-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.showcase-compare .compare-after {
    z-index: 0;
}

.showcase-compare .compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--accent);
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.showcase-compare .compare-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: var(--shadow-accent);
}

.showcase-compare .compare-handle::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    z-index: 1;
}

/* ========== 渲染选项 ========== */
.render-section {
    padding: 120px 32px;
    background: var(--bg-secondary);
}

.render-container {
    max-width: 1200px;
    margin: 0 auto;
}

.render-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.render-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.render-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
}

.render-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.render-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.render-content {
    padding: 32px;
}

.render-icon {
    width: 48px;
    height: 48px;
    background: rgba(45, 129, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.render-icon svg {
    width: 24px;
    height: 24px;
}

.render-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.render-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== 应用列表 ========== */
.apps-section {
    padding: 120px 32px;
    background: var(--bg-primary);
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.apps-category {
    margin-bottom: 60px;
}

.apps-category:last-child {
    margin-bottom: 0;
}

.apps-category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-normal);
}

.app-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.app-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.app-status {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

.app-badge {
    padding: 4px 10px;
    background: rgba(45, 129, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
}

/* ========== 定价 ========== */
.pricing-section {
    padding: 120px 32px;
    background: var(--bg-secondary);
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-product-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-product-logo {
    height: 40px;
    width: auto;
}

.pricing-product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--border-accent);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.pricing-card.featured::before {
    content: '推荐';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.pricing-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-price {
    margin-bottom: 28px;
}

.price-original {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.price-current {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pricing-btn:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent);
}

/* ========== FAQ ========== */
.faq-section {
    padding: 120px 32px;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-default);
}

.faq-item.active {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px;
    color: var(--accent);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
}

/* ========== CTA ========== */
.cta-section {
    padding: 140px 32px;
    background: var(--bg-tertiary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(45, 129, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-title .accent {
    color: var(--accent);
}

.cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
}

.cta-image {
    max-width: 600px;
    margin: 48px auto 0;
    border-radius: var(--radius-lg);
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studio-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .render-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-subtle);
        padding: 24px 32px;
        flex-direction: column;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-trial,
    .btn-buy {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 120px 24px 80px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-platforms {
        flex-direction: column;
        gap: 8px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-features-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 28px;
    }
    
    .price-current {
        font-size: 32px;
    }
    
    .compare-handle::before {
        width: 40px;
        height: 40px;
    }
}

/* ========== 页面标题样式 ========== */
.page-hero {
    padding: 160px 32px 80px;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(45, 129, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== 下载页面样式 ========== */
.downloads-section {
    padding: 80px 32px;
    background: var(--bg-primary);
}

.downloads-container {
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 32px;
    transition: all var(--transition-normal);
}

.download-card:last-child {
    margin-bottom: 0;
}

.download-card:hover {
    border-color: var(--border-default);
}

.download-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, rgba(45, 129, 255, 0.05) 0%, var(--bg-card) 100%);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.download-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.download-info {
    flex: 1;
}

.download-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.download-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.download-card-body {
    margin-bottom: 24px;
}

.download-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.download-requirements-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.download-requirements-link:hover {
    color: var(--accent-hover);
}

.download-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.download-btn.mac {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.download-btn.mac:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-secondary);
}

.download-btn.windows {
    background: var(--accent);
    color: #ffffff;
}

.download-btn.windows:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.download-btn.snapdragon {
    background: rgba(45, 129, 255, 0.1);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.download-btn.snapdragon:hover {
    background: rgba(45, 129, 255, 0.2);
}

.downloads-notice-section {
    padding: 0 32px 80px;
    background: var(--bg-primary);
}

.downloads-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.downloads-notice svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.downloads-notice-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.downloads-notice-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== 帮助中心区域 ========== */
.help-center-section {
    padding: 80px 32px 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.help-center-container {
    max-width: 900px;
    margin: 0 auto;
}

.help-center-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.help-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.help-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-card:hover::before {
    opacity: 1;
}

.help-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(45, 129, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.help-card:hover .help-card-icon {
    background: rgba(45, 129, 255, 0.15);
    transform: scale(1.05);
}

.help-card-icon svg {
    color: var(--accent);
}

.help-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.help-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.help-card-link:hover {
    gap: 12px;
    color: var(--accent-hover);
}

.help-center-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.back-home-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ========== 支持页面样式 ========== */
.support-section {
    padding: 80px 32px;
    background: var(--bg-primary);
}

.support-section.alt-bg {
    background: var(--bg-secondary);
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
}

.support-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.support-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    gap: 24px;
    transition: all var(--transition-normal);
}

.support-hero-card:hover {
    border-color: var(--border-default);
}

.support-hero-card.primary {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, rgba(45, 129, 255, 0.08) 0%, var(--bg-card) 100%);
}

.support-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(45, 129, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-hero-card.primary .support-hero-icon {
    background: var(--accent);
}

.support-hero-icon svg {
    color: var(--accent);
}

.support-hero-card.primary .support-hero-icon svg {
    color: #ffffff;
}

.support-hero-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.support-hero-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.support-btn.primary {
    background: var(--accent);
    color: #ffffff;
}

.support-btn.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.support-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.support-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.section-header-left {
    margin-bottom: 48px;
}

.section-title-left {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc-left {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* 资源网格 */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition-normal);
    display: block;
}

.resource-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.resource-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(45, 129, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon svg {
    color: var(--accent);
}

.resource-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
}

.resource-card:hover .resource-link {
    gap: 10px;
}

/* 支持页 FAQ */
.support-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.support-faq-item:hover {
    border-color: var(--border-default);
}

.support-faq-item.active {
    border-color: var(--border-accent);
}

.support-faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

.support-faq-question:hover {
    color: var(--accent);
}

.support-faq-icon {
    font-size: 20px;
    color: var(--accent);
    transition: transform var(--transition-fast);
}

.support-faq-item.active .support-faq-icon {
    transform: rotate(45deg);
}

.support-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.support-faq-item.active .support-faq-answer {
    max-height: 300px;
}

.support-faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 联系方式网格 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--border-default);
}

.contact-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, rgba(45, 129, 255, 0.05) 0%, var(--bg-card) 100%);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(45, 129, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card.featured .contact-card-icon {
    background: var(--accent);
}

.contact-card-icon svg {
    color: var(--accent);
}

.contact-card.featured .contact-card-icon svg {
    color: #ffffff;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-hover);
}

.contact-link.primary {
    padding: 10px 24px;
    background: var(--accent);
    color: #ffffff;
    border-radius: var(--radius-md);
}

.contact-link.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 60px 24px;
    }
    
    .download-card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .download-card-footer {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .help-center-section {
        padding: 60px 24px 80px;
    }
    
    .help-center-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .help-card {
        padding: 24px;
    }
    
    .support-section {
        padding: 60px 24px;
    }
    
    .support-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .support-hero-card {
        flex-direction: column;
        padding: 28px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
