/* 个人用户解决方案页面样式 */

.personal-hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.personal-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f4fd;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #b0c4de;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0c4de;
}

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

/* 个人场景展示 */
.personal-scene {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.scene-card {
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.scene-card:hover {
    transform: translateY(-8px);
    border-color: #00eaff;
    box-shadow: 0 20px 40px rgba(0, 234, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.scene-card h3 {
    color: #e8f4fd;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.scene-card p {
    color: #b0c4de;
    font-size: 0.9rem;
}

/* 痛点分析 */
.personal-pain-points {
    background: #101522;
    padding: 80px 0;
}

.personal-pain-points h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-point-item {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 234, 255, 0.1);
    transition: all 0.3s ease;
}

.pain-point-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 234, 255, 0.3);
}

.pain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pain-icon i {
    font-size: 32px;
    color: white;
}

.pain-point-item h3 {
    color: #e8f4fd;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.pain-point-item p {
    color: #b0c4de;
    line-height: 1.6;
}

/* 解决方案 */
.personal-solutions {
    background: #0a0e1a;
    padding: 80px 0;
}

.personal-solutions h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-item {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 234, 255, 0.1);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 234, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 234, 255, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon i {
    font-size: 32px;
    color: white;
}

.solution-item h3 {
    color: #e8f4fd;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.solution-item p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    color: #b0c4de;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 234, 255, 0.1);
}

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

/* 使用场景 */
.personal-scenarios {
    background: #101522;
    padding: 80px 0;
}

.personal-scenarios h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.scenarios-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: #b0c4de;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(0, 234, 255, 0.1);
    border-color: #00eaff;
    color: #00eaff;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

.scenario-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.scenario-text h3 {
    color: #e8f4fd;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.scenario-text p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 24px;
}

.scenario-features {
    list-style: none;
    padding: 0;
}

.scenario-features li {
    color: #b0c4de;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scenario-features i {
    color: #00eaff;
    width: 20px;
}

.scenario-visual {
    display: flex;
    justify-content: center;
}

.scenario-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scenario-image i {
    font-size: 80px;
    color: white;
}

/* 成功案例 */
.personal-cases {
    background: #0a0e1a;
    padding: 80px 0;
}

.personal-cases h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-item {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 234, 255, 0.1);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 234, 255, 0.3);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.case-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-avatar i {
    font-size: 24px;
    color: white;
}

.case-info h4 {
    color: #e8f4fd;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.case-info span {
    color: #b0c4de;
    font-size: 0.9rem;
}

.case-content {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.case-stats span {
    background: rgba(0, 234, 255, 0.1);
    color: #00eaff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 价格方案 */
.personal-pricing {
    background: #101522;
    padding: 80px 0;
}

.personal-pricing h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-item {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 234, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-item.featured {
    border-color: #00eaff;
    transform: scale(1.05);
}

.pricing-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 234, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00eaff, #0099cc);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: #e8f4fd;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

.currency {
    color: #b0c4de;
    font-size: 1.2rem;
}

.amount {
    color: #00eaff;
    font-size: 3rem;
    font-weight: 700;
}

.period {
    color: #b0c4de;
    font-size: 1rem;
}

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

.pricing-features li {
    color: #b0c4de;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 234, 255, 0.1);
}

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

.pricing-features i {
    color: #00eaff;
    width: 20px;
}

.pricing-item .btn-primary,
.pricing-item .btn-secondary {
    width: 100%;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .personal-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .personal-scene {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pain-points-grid,
    .solutions-grid,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-buttons {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .scenario-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-item.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .personal-hero {
        padding: 80px 0 40px;
    }
    
    .scene-card {
        padding: 20px;
    }
    
    .pain-point-item,
    .solution-item,
    .case-item {
        padding: 20px;
    }
    
    .pricing-item {
        padding: 30px 20px;
    }
} 