/* Digital Employee Page Specific Styles */

.hero-digital {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: var(--text-light);
    padding: 8rem 2rem 4rem;
    margin-top: 140px;
    text-align: center;
}

.philosophy {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.belief-section {
    margin-bottom: 4rem;
}

.belief-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.belief-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-5px);
}

.belief-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.belief-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.belief-card ul {
    list-style: none;
    padding: 0;
}

.belief-card li {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.belief-card li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.comparison {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-column h4 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.traditional h4 {
    background: #fee2e2;
    color: #dc2626;
}

.modern h4 {
    background: #dcfce7;
    color: #16a34a;
}

.comparison-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.comparison-item .icon {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.negative {
    background: #fef2f2;
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.positive {
    background: #f0fdf4;
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

.cases {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.case-study {
    background: var(--bg-secondary);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.case-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.case-icon {
    font-size: 3rem;
    margin-left: 2rem;
}

.case-content {
    display: grid;
    gap: 2rem;
}

.case-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-section ul {
    list-style: none;
    padding: 0;
}

.case-section li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.case-section li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.case-results {
    margin-top: 1.5rem;
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.result-before,
.result-after {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.result-before {
    background: #fee2e2;
    color: #dc2626;
}

.result-after {
    background: #dcfce7;
    color: #16a34a;
}

.arrow {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 2rem;
}

.result-description {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--success-color);
}

.result-description p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.case-effect {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success-color);
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 1rem;
    border: 2px solid var(--success-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-header h3 {
        margin-bottom: 1rem;
    }
    
    .case-icon {
        margin-left: 0;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .belief-title {
        font-size: 2rem;
    }
    
    .comparison-title {
        font-size: 1.8rem;
    }
}