/* IT-Genomlysning Specific Styles */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed navbar when scrolling to sections */
.assessment-area {
    scroll-margin-top: 100px;
}

.it-genomlysning {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.it-genomlysning .section-head h2 {
    color: #333;
}

.it-genomlysning .feat-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.it-genomlysning .feat-card:hover {
    transform: translateY(-5px);
}

.it-genomlysning .feat-card .icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.it-genomlysning .feat-card .icon i {
    font-size: 24px;
}

.it-genomlysning .service-card .icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.it-genomlysning .service-card .icon i {
    font-size: 28px;
}

.it-genomlysning .check-list {
    list-style: none;
    padding: 0;
}

.it-genomlysning .check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.it-genomlysning .check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
    font-weight: bold;
}

.circular-process {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
}

.circular-process:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #f8f9fa;
}

.phase-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.phase-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.phase-step .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 18px;
}

.phase-step .step-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.phase-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    z-index: -1;
}

.assessment-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.assessment-highlight h4 {
    color: #667eea;
    margin-bottom: 20px;
}

.assessment-metrics {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 40px 0;
}

.metric-item {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 150px;
}

.metric-number {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.metric-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .assessment-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .phase-indicator {
        flex-direction: column;
        gap: 20px;
    }
    
    .phase-step:not(:last-child):after {
        display: none;
    }
}
