/* 律所财税专区样式 */

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

/* 介绍区域 */
.intro-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-main-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: 50px 40px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.intro-main-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;
}

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

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

.intro-highlight {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 12px;
}

.intro-desc {
    font-size: 20px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 32px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(96, 165, 250, 0.15);
    border: 2px solid rgba(96, 165, 250, 0.4);
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.7);
    background: rgba(96, 165, 250, 0.25);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.4);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    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: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-4px);
    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 8px 24px rgba(96, 165, 250, 0.4);
}

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

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

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

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

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

.business-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;
}

.business-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;
}

.business-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);
}

.business-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;
}

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

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

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

.business-services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.service-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.4) 0%, rgba(59, 130, 246, 0.3) 100%);
    color: #bfdbfe;
    border: 1.5px solid rgba(96, 165, 250, 0.7);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.business-card:hover .service-tag {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.6) 0%, rgba(59, 130, 246, 0.5) 100%);
    border-color: rgba(147, 197, 253, 1);
    color: #ffffff;
    transform: translateY(-2px);
}

.business-detail {
    margin-bottom: 16px;
}

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

.business-demand {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demand-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.demand-level {
    font-size: 16px;
    font-weight: 700;
}

.demand-level.high {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.demand-level.medium {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}

/* 支持体系区域 */
.support-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

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

.support-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;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.support-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;
}

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

.support-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);
}

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

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

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

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

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

.support-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.support-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;
    transition: all 0.3s;
}

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

/* 入驻流程区域 */
.process-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    background: rgba(10, 26, 40, 0.3);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-step {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #93c5fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.5);
    position: relative;
    z-index: 2;
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.6) 0%, rgba(96, 165, 250, 0.2) 100%);
    margin-top: 10px;
}

.process-content {
    flex: 1;
    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: 16px;
    padding: 24px 28px;
    transition: all 0.3s;
}

.process-content:hover {
    transform: translateX(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 8px 24px rgba(96, 165, 250, 0.4);
}

.process-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.process-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 12px;
}

.process-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-apply {
    padding: 16px 64px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #93c5fd 100%);
    color: white;
    border: none;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(96, 165, 250, 0.5);
}

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

/* CTA区域 */
.cta-section {
    padding: 100px 20px 120px;
    position: relative;
    z-index: 10;
}

.cta-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;
}

.cta-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;
}

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

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

.cta-highlight {
    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;
}

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

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

.btn-cta-large {
    padding: 18px 72px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #93c5fd 100%);
    color: white;
    border: none;
    border-radius: 32px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(96, 165, 250, 0.5);
}

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

/* 响应式设计 */
@media (max-width: 1024px) {
    .intro-features,
    .business-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-item {
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-content {
        padding: 20px;
    }
    
    .cta-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .intro-main-card,
    .feature-box,
    .business-card,
    .support-card {
        padding: 30px 20px;
    }
    
    .support-items {
        grid-template-columns: 1fr;
    }
}
