/**
 * 企业人才服务页 V1.0
 * Enterprise Talent Service Theme
 */

/* ========== 全局变量 ========== */
:root {
    --deep-black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --accent-gold: #F59E0B;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-red: #EF4444;
    --glow-gold: rgba(245, 158, 11, 0.5);
}

/* ========== 页面基础 ========== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.enterprise-page {
    background: var(--deep-black);
    color: var(--text-primary);
    min-height: 100vh;
}

.enterprise-page .header-transparent {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
}

/* ========== 第一部分：痛点直击首屏 ========== */
.pain-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.98)),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></svg>');
    background-size: auto, 50px 50px;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.08), transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.hero-desc strong {
    color: var(--accent-blue);
    font-weight: 600;
}

/* 核心数据栏 */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.trust-icon {
    font-size: 48px;
}

.trust-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== 第二部分：三大核心服务矩阵 ========== */
.service-matrix {
    padding: 100px 0;
    background: var(--dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.card-talent:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.service-card.card-talent::before {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.service-card.card-consulting:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.service-card.card-consulting::before {
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    min-height: 80px;
}

/* 为三个服务类别单独设置头部高度 */
.card-talent .service-header {
    min-height: 80px;
}

.card-training .service-header {
    min-height: 80px;
}

.card-consulting .service-header {
    min-height: 80px;
}

.service-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 为三个服务类别单独设置图标位置 */
.card-talent .service-icon {
    width: 48px;
    height: 48px;
    font-size: 48px;
}

.card-training .service-icon {
    width: 48px;
    height: 48px;
    font-size: 48px;
}

.card-consulting .service-icon {
    width: 48px;
    height: 48px;
    font-size: 48px;
}

.service-label {
    font-size: 12px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-talent .service-label {
    color: var(--accent-gold);
}

.card-consulting .service-label {
    color: var(--accent-cyan);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.service-name-en {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-tagline {
    font-size: 16px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.card-talent .service-tagline {
    color: var(--accent-gold);
}

.card-consulting .service-tagline {
    color: var(--accent-cyan);
}

.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 25px;
    flex: 1;
}

.features-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

.card-talent .features-list li::before {
    color: var(--accent-gold);
}

.card-consulting .features-list li::before {
    color: var(--accent-cyan);
}

.service-target {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-blue);
    border-radius: 4px;
    margin-bottom: 25px;
    transform: none;
    font-style: normal;
    flex-shrink: 0;
    min-height: 60px;
}

.card-talent .service-target {
    border-left-color: var(--accent-gold);
}

.card-consulting .service-target {
    border-left-color: var(--accent-cyan);
}

.target-label {
    font-weight: 600;
    color: var(--text-primary);
}

.service-cta {
    text-align: center;
    transform: none;
    flex-shrink: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-blue), #2563EB);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    transform: none;
    font-style: normal;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.card-talent .btn-service {
    background: linear-gradient(135deg, var(--accent-gold), #D97706);
}

.card-talent .btn-service:hover {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.card-consulting .btn-service {
    background: linear-gradient(135deg, var(--accent-cyan), #0891B2);
}

.card-consulting .btn-service:hover {
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

/* ========== 第三部分：服务流程可视化 ========== */
.service-process {
    padding: 100px 0;
    background: var(--deep-black);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), #2563EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 13px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-detail {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.process-arrow {
    font-size: 32px;
    color: var(--accent-blue);
    opacity: 0.5;
}

/* ========== 第四部分：双元制生态背书 ========== */
.ecosystem-trust {
    padding: 100px 0;
    background: var(--dark-gray);
}

.trust-block {
    margin-bottom: 60px;
}

.trust-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-item {
    padding: 20px 40px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 48px;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-company {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== 第五部分：底部CTA表单 ========== */
.footer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.consultation-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--accent-gold), #D97706);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.form-error {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    color: var(--accent-red);
    font-size: 14px;
    margin-bottom: 20px;
}

.success-message {
    padding: 40px;
    text-align: center;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-text {
    font-size: 18px;
    color: var(--text-primary);
}

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .trust-bar {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}
