/* AIGEO 官网样式系统 */
.ag-homepage * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
}

:root {
    --bg-primary: #0f0f14;
    --bg-secondary: #1a1a24;
    --bg-card: #232334;
    --bg-card-hover: #2a2a42;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255,255,255,0.08);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
}

.ag-homepage {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}
.ag-homepage p,
.ag-homepage span,
.ag-homepage h1, .ag-homepage h2, .ag-homepage h3, .ag-homepage h4, .ag-homepage h5, .ag-homepage h6,
.ag-homepage li, .ag-homepage td, .ag-homepage th,
.ag-homepage label, .ag-homepage .feature-desc, .ag-homepage .pricing-name,
.ag-homepage .stat-label, .ag-homepage .pricing-features li {
    color: var(--text-primary);
}
.ag-homepage a:not(.btn):not(.nav-item) {
    color: var(--accent-primary);
}

/* 背景效果 */
.ag-homepage .bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 110%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* 导航栏 */
.ag-homepage .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
}

.ag-homepage .nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ag-homepage .logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}


.ag-homepage .brand-name {
    font-size: 20px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ag-homepage .nav-center {
    display: flex;
    gap: 4px;
}

.ag-homepage .nav-item {
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.ag-homepage .nav-item:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.ag-homepage .nav-item.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.2);
}

.ag-homepage .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ag-homepage .btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ag-homepage .btn-primary {
    background: var(--gradient-cyan);
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.ag-homepage .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.ag-homepage .btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.ag-homepage .btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
}

.ag-homepage .btn-gradient {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.ag-homepage .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.ag-homepage .btn-gold {
    background: var(--gradient-gold);
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.ag-homepage .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* 主内容区 */
.ag-homepage .main-content {
    position: relative;
    z-index: 1;
    padding: 88px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 页面标题 */
.ag-homepage .page-header {
    text-align: center;
    margin-bottom: 48px;
}

.ag-homepage .page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ag-homepage .page-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero 区域 */
.ag-homepage .hero {
    text-align: center;
    padding: 60px 0 80px;
}

.ag-homepage .hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.ag-homepage .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ag-homepage .hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ag-homepage .hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ag-homepage .version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-primary);
    margin-bottom: 32px;
}

.ag-homepage .version-badge .tag {
    background: var(--accent-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.ag-homepage .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 功能卡片网格 */
.ag-homepage .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.ag-homepage .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.ag-homepage .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-gradient, var(--gradient-primary));
}

.ag-homepage .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ag-homepage .feature-card:nth-child(1) { --card-gradient: var(--gradient-primary); }
.ag-homepage .feature-card:nth-child(2) { --card-gradient: var(--gradient-cyan); }
.ag-homepage .feature-card:nth-child(3) { --card-gradient: var(--gradient-success); }
.ag-homepage .feature-card:nth-child(4) { --card-gradient: var(--gradient-warning); }
.ag-homepage .feature-card:nth-child(5) { --card-gradient: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
.ag-homepage .feature-card:nth-child(6) { --card-gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); }

.ag-homepage .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ag-homepage .feature-card:nth-child(1) .feature-icon { background: rgba(99, 102, 241, 0.15); }
.ag-homepage .feature-card:nth-child(2) .feature-icon { background: rgba(6, 182, 212, 0.15); }
.ag-homepage .feature-card:nth-child(3) .feature-icon { background: rgba(16, 185, 129, 0.15); }
.ag-homepage .feature-card:nth-child(4) .feature-icon { background: rgba(245, 158, 11, 0.15); }
.ag-homepage .feature-card:nth-child(5) .feature-icon { background: rgba(236, 72, 153, 0.15); }
.ag-homepage .feature-card:nth-child(6) .feature-icon { background: rgba(139, 92, 246, 0.15); }

.ag-homepage .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ag-homepage .feature-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* 表格样式 */
.ag-homepage .table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.ag-homepage .table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ag-homepage .table-title {
    font-size: 20px;
    font-weight: 600;
}

.ag-homepage .data-table {
    width: 100%;
    border-collapse: collapse;
}

.ag-homepage .data-table th {
    text-align: left;
    padding: 14px 16px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.ag-homepage .data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.ag-homepage .data-table tr:last-child td {
    border-bottom: none;
}

.ag-homepage .data-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.ag-homepage .version-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.ag-homepage .version-tag.latest {
    background: var(--gradient-primary);
    color: white;
}

/* 下载区域 */
.ag-homepage .download-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.ag-homepage .download-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.ag-homepage .download-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* 统计卡片 */
.ag-homepage .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ag-homepage .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.ag-homepage .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.ag-homepage .stat-value {
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ag-homepage .stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 定价卡片 */
.ag-homepage .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.ag-homepage .pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.ag-homepage .pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.ag-homepage .pricing-card.featured::before {
    content: '最受欢迎';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.ag-homepage .pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.ag-homepage .pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ag-homepage .pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.ag-homepage .pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.ag-homepage .pricing-amount {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ag-homepage .pricing-period {
    color: var(--text-muted);
    font-size: 14px;
}

.ag-homepage .pricing-save {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-success);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.ag-homepage .pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.ag-homepage .pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ag-homepage .pricing-features li::before {
    content: '✓';
    color: var(--accent-success);
    font-weight: 600;
}

.ag-homepage .pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.ag-homepage .pricing-features li.disabled::before {
    content: '✗';
    color: var(--text-muted);
}

.ag-homepage .pricing-features li .highlight {
    color: var(--accent-primary);
    font-weight: 500;
}

.ag-homepage .pricing-cta {
    width: 100%;
}

/* 合作伙伴卡片 */
.ag-homepage .partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.ag-homepage .partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.ag-homepage .partner-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.ag-homepage .flag {
    font-size: 28px;
}

.ag-homepage .partner-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ag-homepage .partner-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 优势卡片 */
.ag-homepage .advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ag-homepage .advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.ag-homepage .advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.ag-homepage .advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    background: rgba(99, 102, 241, 0.15);
}

.ag-homepage .advantage-card:nth-child(2) .advantage-icon { background: rgba(6, 182, 212, 0.15); }
.ag-homepage .advantage-card:nth-child(3) .advantage-icon { background: rgba(16, 185, 129, 0.15); }
.ag-homepage .advantage-card:nth-child(4) .advantage-icon { background: rgba(245, 158, 11, 0.15); }

.ag-homepage .advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ag-homepage .advantage-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 价值观卡片 */
.ag-homepage .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.ag-homepage .value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.ag-homepage .value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.ag-homepage .value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    background: rgba(99, 102, 241, 0.15);
}

.ag-homepage .value-card:nth-child(2) .value-icon { background: rgba(6, 182, 212, 0.15); }
.ag-homepage .value-card:nth-child(3) .value-icon { background: rgba(16, 185, 129, 0.15); }
.ag-homepage .value-card:nth-child(4) .value-icon { background: rgba(245, 158, 11, 0.15); }

.ag-homepage .value-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ag-homepage .value-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 时间轴 */
.ag-homepage .timeline {
    position: relative;
    padding-left: 40px;
    margin-bottom: 48px;
}

.ag-homepage .timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.ag-homepage .timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.ag-homepage .timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid var(--bg-primary);
}

.ag-homepage .timeline-year {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.ag-homepage .timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.ag-homepage .timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ag-homepage .timeline-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 联系表单 */
.ag-homepage .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.ag-homepage .contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
}

.ag-homepage .contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ag-homepage .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    margin-bottom: 12px;
}

.ag-homepage .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(99, 102, 241, 0.15);
}

.ag-homepage .contact-item:nth-child(2) .contact-icon { background: rgba(6, 182, 212, 0.15); }

.ag-homepage .contact-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ag-homepage .contact-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* 表单 */
.ag-homepage .form-group {
    margin-bottom: 20px;
}

.ag-homepage .form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.ag-homepage .form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}

.ag-homepage .form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.ag-homepage .form-input::placeholder {
    color: var(--text-muted);
}

.ag-homepage textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* 底部CTA */
.ag-homepage .cta-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.ag-homepage .cta-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ag-homepage .cta-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.ag-homepage .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* 底部 */
.ag-homepage .footer {
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding: 48px 24px 24px;
}

.ag-homepage .footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ag-homepage .footer-col {
    text-align: left;
    min-width: 120px;
}

.ag-homepage .footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.ag-homepage .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ag-homepage .footer-brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
}

.ag-homepage .footer-brand h4 {
    margin-bottom: 0;
}

.ag-homepage .footer-col p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.ag-homepage .footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.ag-homepage .footer-col a:hover {
    color: var(--accent-primary);
    text-decoration: none;
}

.ag-homepage .footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* 功能对比表格 */
.ag-homepage .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.ag-homepage .comparison-table th, .ag-homepage .comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.ag-homepage .comparison-table th {
    background: var(--bg-card);
    font-size: 14px;
    font-weight: 600;
}

.ag-homepage .comparison-table th:first-child, .ag-homepage .comparison-table td:first-child {
    text-align: left;
}

.ag-homepage .comparison-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.ag-homepage .check {
    color: var(--accent-success);
    font-size: 18px;
}

.ag-homepage .cross {
    color: var(--text-muted);
    font-size: 16px;
}

/* License 验证 */
.ag-homepage .license-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
}

.ag-homepage .license-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.ag-homepage .license-form {
    display: flex;
    gap: 12px;
}

.ag-homepage .license-form input {
    flex: 1;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.ag-homepage .fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.ag-homepage .fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.ag-homepage .stagger-1 { animation-delay: 0.1s; opacity: 0; }
.ag-homepage .stagger-2 { animation-delay: 0.2s; opacity: 0; }
.ag-homepage .stagger-3 { animation-delay: 0.3s; opacity: 0; }
.ag-homepage .stagger-4 { animation-delay: 0.4s; opacity: 0; }
.ag-homepage .stagger-5 { animation-delay: 0.5s; opacity: 0; }
.ag-homepage .stagger-6 { animation-delay: 0.6s; opacity: 0; }

/* ============================================================
   移动端侧滑导航
   ============================================================ */
/* 汉堡菜单按钮 */
.ag-homepage .nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: all 0.2s;
    padding: 0;
    z-index: 200;
}
.ag-homepage .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #f7f8f8;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.ag-homepage .nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}
.ag-homepage .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.ag-homepage .nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.ag-homepage .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端侧滑遮罩 */
.ag-homepage .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ag-homepage .nav-overlay.active {
    display: block;
    opacity: 1;
}

/* 移动端抽屉菜单 */
.ag-homepage .nav-drawer {
    display: none;
}

@media (max-width: 768px) {
    .ag-homepage .nav-toggle {
        display: flex;
    }
    .ag-homepage .nav-center {
        display: none;
    }
    .ag-homepage .nav-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100%;
        background: rgba(15, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.08);
        z-index: 200;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    .ag-homepage .nav-drawer.open {
        right: 0;
    }
    .ag-homepage .nav-drawer .nav-drawer-link {
        display: block;
        padding: 14px 16px;
        border-radius: 12px;
        color: #a1a1aa;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
        margin-bottom: 4px;
    }
    .ag-homepage .nav-drawer .nav-drawer-link:hover,
    .ag-homepage .nav-drawer .nav-drawer-link.active {
        background: rgba(99, 102, 241, 0.15);
        color: #f7f8f8;
    }
    .ag-homepage .nav-drawer .nav-drawer-link.active {
        color: #6366f1;
        font-weight: 600;
    }
    .ag-homepage .nav-drawer .nav-drawer-cta {
        display: block;
        margin-top: 24px;
        padding: 14px;
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
        color: #0f172a !important;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
    }
}

/* 响应式 */
@media (max-width: 1024px) {
    .ag-homepage .features-grid, .ag-homepage .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ag-homepage .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ag-homepage .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ag-homepage .navbar {
        padding: 0 16px;
        z-index: 100;
    }
    .ag-homepage .nav-center {
        display: none;
    }
    .ag-homepage .nav-right {
        gap: 8px;
    }
    .ag-homepage .nav-right .btn-gold {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* 主内容区 - 限制宽度避免溢出 */
    .ag-homepage .main-content {
        padding: 80px 16px 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ag-homepage .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        max-width: 100%;
    }
    
    .ag-homepage .hero-subtitle {
        font-size: 15px;
        padding: 0 4px;
    }

    .ag-homepage .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .ag-homepage .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ag-homepage .features-grid, .ag-homepage .pricing-grid, .ag-homepage .pricing-grid-home, .ag-homepage .advantage-grid, .ag-homepage .values-grid {
        grid-template-columns: 1fr;
    }
    
    .ag-homepage .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .ag-homepage .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ag-homepage .page-title {
        font-size: 24px;
    }
    
    .ag-homepage .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .ag-homepage .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ag-homepage .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .ag-homepage .footer-content {
        gap: 16px;
        justify-content: flex-start;
    }
    .ag-homepage .footer-col {
        flex: 1 1 30%;
        min-width: 0;
    }
    .ag-homepage .footer-col:first-child {
        flex: 1 1 100%;
        margin-bottom: 8px;
        text-align: center;
    }
    .ag-homepage .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .ag-homepage .footer-copyright {
        font-size: 12px;
        padding: 16px 0 0;
    }

    /* 首页section间距调整 */
    .ag-homepage section,
    .ag-homepage .hero,
    .ag-homepage .pricing-grid-home,
    .ag-homepage .pricing-grid,
    .ag-homepage .stats-grid,
    .ag-homepage .features-grid,
    .ag-homepage .advantage-grid,
    .ag-homepage .values-grid {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .ag-homepage .pricing-grid-home,
    .ag-homepage .pricing-grid,
    .ag-homepage .stats-grid,
    .ag-homepage .features-grid,
    .ag-homepage .advantage-grid,
    .ag-homepage .values-grid {
        max-width: 100%;
        width: 100%;
    }
    .ag-homepage section {
        padding: 32px 0;
    }
    .ag-homepage .hero {
        padding: 32px 0 40px;
    }

    /* 版本徽章 */
    .ag-homepage .version-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* 统计数据 */
    .ag-homepage .stat-number {
        font-size: 28px;
    }
    .ag-homepage .stat-label {
        font-size: 12px;
    }

    /* 定价卡片 */
    .ag-homepage .pricing-card {
        padding: 24px 16px;
    }
    .ag-homepage .pricing-name {
        font-size: 16px;
    }
    .ag-homepage .pricing-price {
        font-size: 36px;
    }
}

/* 兼容旧版 aigeo-public-page 包装器 */
.aigeo-public-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px 60px;
  box-sizing: border-box;
}
.aigeo-public-page p,
.aigeo-public-page span,
.aigeo-public-page h1, .aigeo-public-page h2, .aigeo-public-page h3,
.aigeo-public-page li, .aigeo-public-page td,
.aigeo-public-page label {
  color: var(--text-primary);
}
.aigeo-public-page .bg-gradient {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse 60% 40% at 80% 110%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.aigeo-public-page .main-content { position: relative; z-index: 1; padding: 32px 24px 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) {
  .aigeo-public-page .main-content { max-width: 100%; padding: 24px 16px 16px; }
}
.aigeo-public-page .page-header { text-align: center; margin-bottom: 40px; }
.aigeo-public-page .page-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }

/* 旧内容区居中：aigeo-public-page 内的直接块级元素居中 */
.aigeo-public-page > h2,
.aigeo-public-page > p {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.aigeo-public-page > h2 {
    margin: 48px auto 20px;
}
.aigeo-public-page > h2:first-of-type {
    margin-top: 16px;
}
.aigeo-public-page .aigeo-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}
.aigeo-public-page .aigeo-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #f7f8f8 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.aigeo-public-page .aigeo-hero .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.aigeo-public-page .aigeo-features-grid {
    max-width: 1100px;
    margin: 0 auto 48px;
}
.aigeo-public-page .aigeo-stats-banner {
    max-width: 800px;
    margin: 0 auto 48px;
}
.aigeo-public-page .aigeo-compare-table-wrap {
    max-width: 1100px;
    margin: 0 auto 36px;
}
.aigeo-public-page .aigeo-download-section {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}
.aigeo-public-page .aigeo-changelog {
    max-width: 900px;
    margin: 0 auto 48px;
}
.aigeo-public-page .aigeo-recent-sites {
    max-width: 1100px;
    margin: 0 auto 48px;
}
.aigeo-public-page .pricing-grid {
    max-width: 1100px;
    margin: 0 auto 40px;
}
.aigeo-public-page .aigeo-contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.aigeo-public-page .aigeo-partner-count {
    text-align: center;
    margin-bottom: 24px;
}
.aigeo-public-page .aigeo-card[style*="padding:40px 32px"] {
    max-width: 640px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.aigeo-public-page .aigeo-hero .version-badge {
    display: inline-flex;
    margin-bottom: 20px;
}

/* ★ Slogan横幅 — 成交导向 */
.ag-homepage .aigeo-slogan-banner {
    padding: 28px 20px;
    margin: 0 0 32px;
    background: linear-gradient(135deg, rgba(0,200,200,0.08), rgba(99,102,241,0.06));
    border: 1px solid rgba(0,200,200,0.15);
    border-radius: 12px;
    text-align: center;
}
.ag-homepage .aigeo-slogan-badge {
    font-size: 12px;
    font-weight: 700;
    color: #00c8c8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ag-homepage .aigeo-slogan-text {
    font-size: 20px;
    font-weight: 500;
    color: #f7f8f8;
    line-height: 1.7;
}
.ag-homepage .aigeo-slogan-text strong {
    color: #00c8c8;
}
.ag-homepage .aigeo-slogan-sub {
    font-size: 14px;
    color: #94a3b8;
}
@media (max-width: 768px) {
    .ag-homepage .aigeo-slogan-text { font-size: 17px; }
    .ag-homepage .mobile-only { display: block; }
    .ag-homepage .aigeo-hero h1 {
        font-size: 26px !important;
    }
    .ag-homepage .aigeo-hero .subtitle {
        font-size: 14px !important;
    }
    .ag-homepage .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .ag-homepage .pricing-card.featured {
        transform: none !important;
    }
    .ag-homepage .grid-4 {
        grid-template-columns: 1fr !important;
    }
    .ag-homepage .grid-2 {
        grid-template-columns: 1fr !important;
    }
    .ag-homepage .main-content {
        padding: 16px !important;
    }
    .ag-homepage .aigeo-hero {
        padding: 16px 0 !important;
    }
    .ag-homepage .pricing-card {
        padding: 20px;
    }
    .ag-homepage .features li {
        font-size: 13px;
    }
}