/* 关于我们页面样式 - AI风格 */

/* 页面标题区 */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* 公司简介 */
.company-intro {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.intro-content {
    max-width: 600px;
}

.intro-content .section-title {
    margin-bottom: var(--space-xl);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: var(--space-lg);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid var(--light-border);
}

.intro-stat {
    text-align: center;
}

.intro-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.intro-stat .stat-label {
    font-size: 14px;
    color: #666;
}

.intro-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: var(--space-md);
}

.image-placeholder span {
    font-size: 18px;
}

/* 核心定位 */
.core-position {
    padding: var(--space-3xl) 0;
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.position-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--light-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-border);
    transition: all var(--transition-base);
}

.position-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.position-icon {
    font-size: 48px;
    margin-bottom: var(--space-lg);
}

.position-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--light-text);
}

.position-desc {
    color: #666;
    line-height: 1.6;
}

/* 核心业务 */
.core-business {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.business-section {
    margin-bottom: var(--space-3xl);
}

.business-section:last-child {
    margin-bottom: 0;
}

.business-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.business-card {
    background: var(--light-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--light-border);
    transition: all var(--transition-base);
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.business-icon {
    font-size: 40px;
    margin-bottom: var(--space-lg);
}

.business-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--light-text);
}

.business-desc {
    color: #666;
    line-height: 1.6;
}

/* 发展历程时间线 */
.timeline {
    padding: var(--space-3xl) 0;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: var(--space-2xl) auto 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    padding: var(--space-xl) 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: var(--space-3xl);
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: var(--space-3xl);
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    top: var(--space-xl);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background: var(--light-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

.timeline-period {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: var(--space-md);
}

.timeline-list {
    list-style: none;
    text-align: left;
}

.timeline-list li {
    padding: var(--space-xs) 0;
    color: #666;
    position: relative;
    padding-left: var(--space-md);
}

.timeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 核心团队 */
.team {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.team-card {
    background: var(--light-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--light-border);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    margin-bottom: var(--space-lg);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 36px;
    font-weight: 600;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: var(--space-xs);
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.team-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 核心保障 */
.guarantees {
    padding: var(--space-3xl) 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.guarantee-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--light-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-border);
    transition: all var(--transition-base);
}

.guarantee-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: var(--space-lg);
}

.guarantee-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--light-text);
}

.guarantee-desc {
    color: #666;
    line-height: 1.6;
}

/* CTA区域 */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .intro-content {
        max-width: 100%;
    }
    
    .intro-image {
        order: -1;
    }
    
    .image-placeholder {
        max-width: 400px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

/* 暗色模式适配 */
@media (prefers-color-scheme: dark) {
    .company-intro,
    .core-business,
    .team {
        background: var(--dark-bg);
    }
    
    .intro-text,
    .position-desc,
    .business-desc,
    .team-desc,
    .guarantee-desc {
        color: #aaa;
    }
    
    .intro-stat .stat-label {
        color: #888;
    }
    
    .position-card,
    .business-card,
    .timeline-content,
    .team-card,
    .guarantee-card {
        background: var(--dark-card);
        border-color: var(--dark-border);
    }
    
    .timeline-list li {
        color: #aaa;
    }
    
    .business-title {
        color: var(--dark-text);
    }
    
    .timeline-title,
    .position-title,
    .business-name,
    .team-name,
    .guarantee-title {
        color: var(--dark-text);
    }
}