/* 企业服务专区样式 */

.hero-enterprise {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* 企业风险区域 */
.risks-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.risk-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(96, 165, 250, 0.4);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.risk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, #f87171, #ef4444, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.risk-card:hover::before {
    opacity: 1;
}

.risk-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.6);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(96, 165, 250, 0.3) 100%);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3);
}

.risk-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.5));
}

.risk-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.risk-card > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.risk-consequence {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: left;
}

.consequence-label {
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    display: block;
    margin-bottom: 6px;
}

.consequence-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* 服务区域 */
.services-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    background: rgba(10, 26, 40, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(59, 130, 246, 0.25) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(96, 165, 250, 0.8);
    border-radius: 18px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #60a5fa, #93c5fd, #60a5fa, transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 80px rgba(96, 165, 250, 0.8), 0 16px 60px rgba(96, 165, 250, 0.4);
    border-color: rgba(147, 197, 253, 1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.35) 0%, rgba(147, 197, 253, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.9));
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 15px rgba(96, 165, 250, 0.5);
}

.service-highlight {
    font-size: 16px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.service-detail {
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.process-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.process-mini:hover {
    background: rgba(96, 165, 250, 0.25);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateX(4px);
}

.mini-num {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #93c5fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

/* 权益区域 */
.benefits-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(96, 165, 250, 0.5);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #60a5fa, #93c5fd, #60a5fa, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.8);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(96, 165, 250, 0.3) 100%);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.5);
}

.benefit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #93c5fd 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.8));
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.4);
}

.benefit-intro {
    font-size: 15px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-detail {
    margin-bottom: 20px;
}

.benefit-detail p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-align: left;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(96, 165, 250, 0.25);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateX(4px);
}

/* 立即开始区域 */
.start-section {
    padding: 100px 20px 120px;
    position: relative;
    z-index: 10;
    background: rgba(10, 26, 40, 0.3);
}

.start-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(59, 130, 246, 0.25) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(96, 165, 250, 0.8);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.start-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #60a5fa, #93c5fd, #60a5fa, transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

.start-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.start-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.start-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.start-feature:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 20px;
    color: var(--color-accent);
    font-weight: 700;
}

.start-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-start-primary,
.btn-start-secondary {
    padding: 16px 48px;
    border: none;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-start-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #93c5fd 100%);
    color: white;
    box-shadow: 0 6px 24px rgba(96, 165, 250, 0.5);
}

.btn-start-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.8);
}

.btn-start-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-start-secondary:hover {
    background: rgba(96, 165, 250, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.6);
}

/* 表单样式增强 */
.modal-form select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    cursor: pointer;
}

.modal-form select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.modal-form select option {
    background: #1a1b2f;
    color: white;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .risks-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .start-features {
        grid-template-columns: 1fr;
    }
    
    .start-buttons {
        flex-direction: column;
    }
    
    .btn-start-primary,
    .btn-start-secondary {
        width: 100%;
    }
    
    .start-content {
        padding: 40px 30px;
    }
    
    .risk-card,
    .service-card,
    .benefit-card {
        padding: 30px 20px;
    }
    
    .service-process {
        grid-template-columns: 1fr;
    }
}
