/* ======================
   Header + voortgang
   ====================== */
.stijl-dna-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.stijl-dna-header-left {
    flex: 1;
}

.stijl-dna-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #111;
}

.stijl-dna-intro {
    font-size: 1.05rem;
    color: #555;
    max-width: 640px;
    line-height: 1.5;
    margin: 0;
}

/* Voortgangskaart */
.stijl-dna-progress-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 230px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.stijl-dna-progress-circle {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.stijl-dna-progress-circle svg {
    width: 48px;
    height: 48px;
    transform: rotate(-90deg);
}

.stijl-dna-progress-bg {
    fill: none;
    stroke: #e6efe9;
    stroke-width: 3;
}

.stijl-dna-progress-fill {
    fill: none;
    stroke: #1a3c34;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.4s ease;
}

.stijl-dna-progress-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a3c34;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stijl-dna-progress-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #888;
    margin-bottom: 2px;
}

.stijl-dna-progress-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a3c34;
}

@media (max-width: 800px) {
    .stijl-dna-header {
        flex-direction: column;
        gap: 20px;
    }
    .stijl-dna-progress-card {
        width: 100%;
    }
}